mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
32 lines
894 B
PHP
32 lines
894 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Events\Wiki\Song;
|
|
|
|
use App\Contracts\Events\UpdateRelatedIndicesEvent;
|
|
use App\Events\Base\Wiki\WikiCreatedEvent;
|
|
use App\Models\Wiki\Anime\AnimeTheme;
|
|
use App\Models\Wiki\Anime\Theme\AnimeThemeEntry;
|
|
use App\Models\Wiki\Song;
|
|
use App\Models\Wiki\Video;
|
|
|
|
/**
|
|
* @extends WikiCreatedEvent<Song>
|
|
*/
|
|
class SongCreated extends WikiCreatedEvent implements UpdateRelatedIndicesEvent
|
|
{
|
|
public function updateRelatedIndices(): void
|
|
{
|
|
$song = $this->getModel()->load([Song::RELATION_VIDEOS]);
|
|
|
|
$song->animethemes->each(function (AnimeTheme $theme): void {
|
|
$theme->searchable();
|
|
$theme->animethemeentries->each(function (AnimeThemeEntry $entry): void {
|
|
$entry->searchable();
|
|
$entry->videos->each(fn (Video $video) => $video->searchable());
|
|
});
|
|
});
|
|
}
|
|
}
|