Squashed commit of the following:
commit 50f1993f45a9745ff77f2956a01543b747c85b41
Author: Jonny Barnes <jonny@jonnybarnes.uk>
Date: Sun Dec 24 16:00:39 2017 +0000
Add feature to changelog
commit 64deec40f7bc7941bd77f95c383f3b400952cec5
Author: Jonny Barnes <jonny@jonnybarnes.uk>
Date: Sun Dec 24 14:19:06 2017 +0000
Only show name of location in note metadata when not a simple checkin
commit 4c9fe397f76981f2eca5749a85ece136f78bb2af
Author: Jonny Barnes <jonny@jonnybarnes.uk>
Date: Sun Dec 24 14:17:49 2017 +0000
Add a simple checkin for testing purposes
commit 11564ead4aaf442113d380109d0b65972484dbcf
Author: Jonny Barnes <jonny@jonnybarnes.uk>
Date: Sun Dec 24 14:17:05 2017 +0000
Don’t set a default value for checkins during creation
commit 832c77c205626dd0119fc602727f6808c9d7758f
Author: Jonny Barnes <jonny@jonnybarnes.uk>
Date: Sun Dec 24 14:16:05 2017 +0000
If note has no content, but an associated place, it is a simple checkin, set a note value appropriately
commit 8c11f9d4b058b3bd248ed02476904301def0e6fc
Author: Jonny Barnes <jonny@jonnybarnes.uk>
Date: Sun Dec 24 14:13:31 2017 +0000
Allow a note to not have content, in whihc case default the value to null
71 lines
1.5 KiB
PHP
71 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Models\{Note, Tag};
|
|
|
|
class NoteObserver
|
|
{
|
|
/**
|
|
* Listen to the Note created event.
|
|
*
|
|
* @param \App\Note $note
|
|
* @return void
|
|
*/
|
|
public function created(Note $note)
|
|
{
|
|
$tags = $this->getTagsFromNote($note->getAttributes()['note'] ?? null);
|
|
|
|
if (count($tags) === 0) {
|
|
return;
|
|
}
|
|
|
|
$tags->transform(function ($tag) {
|
|
return Tag::firstOrCreate(['tag' => $tag])->id;
|
|
})->toArray();
|
|
|
|
$note->tags()->attach($tags);
|
|
}
|
|
|
|
/**
|
|
* Listen to the Note updated event.
|
|
*
|
|
* @param \App\Note $Note
|
|
* @return void
|
|
*/
|
|
public function updated(Note $note)
|
|
{
|
|
$tags = $this->getTagsFromNote($note->getAttributes()['note']);
|
|
if (count($tags) === 0) {
|
|
return;
|
|
}
|
|
|
|
$tags->transform(function ($tag) {
|
|
return Tag::firstOrCreate(['tag' => $tag]);
|
|
});
|
|
|
|
$note->tags()->sync($tags->map(function ($tag) {
|
|
return $tag->id;
|
|
}));
|
|
}
|
|
|
|
/**
|
|
* Listen to the Note deleting event.
|
|
*
|
|
* @param \App\Note $note
|
|
* @return void
|
|
*/
|
|
public function deleting(Note $note)
|
|
{
|
|
$note->tags()->detach();
|
|
}
|
|
|
|
public function getTagsFromNote($note)
|
|
{
|
|
preg_match_all('/#([^\s<>]+)\b/', $note, $tags);
|
|
|
|
return collect($tags[1])->map(function ($tag) {
|
|
return Tag::normalize($tag);
|
|
})->unique();
|
|
}
|
|
}
|