jonnybarnes.uk/app/Observers/NoteObserver.php
Jonny Barnes b2b6693aec Ooof, got the dependencies all up to date as well
Lots of tests needed fixing, but it seemed to be a whitespace parsing
error in the view files 🤔
2019-10-27 16:15:14 +00:00

86 lines
1.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
declare(strict_types=1);
namespace App\Observers;
use App\Models\{Note, Tag};
use Illuminate\Support\{Arr, Collection};
class NoteObserver
{
/**
* Listen to the Note created event.
*
* @param Note $note
*/
public function created(Note $note)
{
$text = Arr::get($note->getAttributes(), 'note');
if ($text === null) {
return;
}
$tags = $this->getTagsFromNote($text);
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 Note $note
*/
public function updated(Note $note)
{
$text = Arr::get($note->getAttributes(), 'note');
if ($text === null) {
return;
}
$tags = $this->getTagsFromNote($text);
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 Note $note
*/
public function deleting(Note $note)
{
$note->tags()->detach();
}
/**
* Retrieve the tags from a notes text, tag for form #tag.
*
* @param string $note
* @return Collection
*/
private function getTagsFromNote(string $note): Collection
{
preg_match_all('/#([^\s<>]+)\b/', $note, $tags);
return collect($tags[1])->map(function ($tag) {
return Tag::normalize($tag);
})->unique();
}
}