News

Access Bear Notes in Laravel

Published
Access Bear Notes in Laravel image

Bear-Sync is a package by Caleb Porzio that provides an Eloquent model that can access local Bear Notes data without any configuration at all.

It's here! – Bear-Sync

A tiny package to access your @BearNotesApp notes from Laravel.

It's zero-config: install it; get access to a plain Eloquent model with all your notes.

Enjoy! https://t.co/dDs2ypQxqM pic.twitter.com/RQDM42YD4q

— Caleb Porzio (@calebporzio) January 6, 2020

The BearNote model accesses Bear Notes’ SQLite database via Laravel’s database driver:

// Search all your Bear notes.
$notes = BearSync\BearNote::searchByTitle('Some Note Title');
 
// Find a specific note.
$note = BearSync\BearNote::whereTitle('Some Note Title')->first();
 
// Access the note's contents.
$note->id; // Bear's note id.
$note->title;
$note->content;
$note->checksum; // A checksum of the note's content, so you can detect updates.
 
// Fetch it's content and replace/store images.
$note->getContentAndStoreImages(function ($originalPath, $newFileName) {
$publicFileName = "/images/{$newFileName}";
 
// Copy the image and store it locally (presumably in a public directory).
\File::copy($originalPath, public_path($publicFileName));
 
// Return the file path to be referenced in the Bear note's markdown.
// ![](https://laravelnews.s3.amazonaws.com/images/$publicFileName)
return $publicFileName;
});

You can learn more about this package, get full installation instructions, and view the source code on GitHub at calebporzio/bear-sync.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Filed in

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
Laravel Auditor Audits Your App With Your Own AI Agent image

Laravel Auditor Audits Your App With Your Own AI Agent

Read article
A simple form builder that stays out of your way image

A simple form builder that stays out of your way

Read article
Laravel AI: Trace Agent Runs With Lifecycle Events image

Laravel AI: Trace Agent Runs With Lifecycle Events

Read article
Laravel AI: Get Raw HTTP Responses and Rate Limits image

Laravel AI: Get Raw HTTP Responses and Rate Limits

Read article
Agent Run Observability in Laravel AI SDK 0.11 image

Agent Run Observability in Laravel AI SDK 0.11

Read article
Debounced Queued Event Listeners in Laravel image

Debounced Queued Event Listeners in Laravel

Read article