mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-03 03:05:01 +02:00
183 lines
6.1 KiB
PHP
183 lines
6.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models\Wiki;
|
|
|
|
use App\Concerns\Models\SoftDeletes;
|
|
use App\Contracts\Models\HasResources;
|
|
use App\Contracts\Models\SoftDeletable;
|
|
use App\Events\Wiki\Song\SongCreated;
|
|
use App\Events\Wiki\Song\SongDeleted;
|
|
use App\Events\Wiki\Song\SongForceDeleting;
|
|
use App\Events\Wiki\Song\SongRestored;
|
|
use App\Events\Wiki\Song\SongUpdated;
|
|
use App\Models\BaseModel;
|
|
use App\Models\Wiki\Anime\AnimeTheme;
|
|
use App\Models\Wiki\Song\Performance;
|
|
use App\Pivots\Morph\Resourceable;
|
|
use App\Scout\Elasticsearch\Models\Wiki\SongElasticModel;
|
|
use App\Scout\Typesense\Models\Wiki\SongTypesenseModel;
|
|
use Database\Factories\Wiki\SongFactory;
|
|
use Deprecated;
|
|
use Elastic\ScoutDriverPlus\Searchable;
|
|
use Illuminate\Database\Eloquent\Attributes\Table;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\Relations\MorphToMany;
|
|
use Illuminate\Support\Collection;
|
|
use Illuminate\Support\Facades\Config;
|
|
use OwenIt\Auditing\Auditable as HasAudits;
|
|
use OwenIt\Auditing\Contracts\Auditable;
|
|
use RuntimeException;
|
|
|
|
/**
|
|
* @property Collection<int, AnimeTheme> $animethemes
|
|
* @property Collection<int, Artist> $artists
|
|
* @property Collection<int, Performance> $performances
|
|
* @property Collection<int, ExternalResource> $resources
|
|
* @property int $song_id
|
|
* @property string|null $title
|
|
* @property string|null $title_native
|
|
*
|
|
* @method static SongFactory factory(...$parameters)
|
|
*/
|
|
#[Table(Song::TABLE, Song::ATTRIBUTE_ID)]
|
|
class Song extends BaseModel implements Auditable, HasResources, SoftDeletable
|
|
{
|
|
use HasAudits;
|
|
use HasFactory;
|
|
use Searchable;
|
|
use SoftDeletes;
|
|
|
|
final public const string TABLE = 'songs';
|
|
|
|
final public const string ATTRIBUTE_ID = 'song_id';
|
|
final public const string ATTRIBUTE_TITLE = 'title';
|
|
final public const string ATTRIBUTE_TITLE_NATIVE = 'title_native';
|
|
|
|
final public const string RELATION_ANIME = 'animethemes.anime';
|
|
final public const string RELATION_ANIMETHEMES = 'animethemes';
|
|
final public const string RELATION_ARTISTS = 'artists';
|
|
final public const string RELATION_PERFORMANCES = 'performances';
|
|
final public const string RELATION_PERFORMANCES_ARTIST = 'performances.artist';
|
|
final public const string RELATION_PERFORMANCES_MEMBER = 'performances.member';
|
|
final public const string RELATION_RESOURCES = 'resources';
|
|
final public const string RELATION_THEME_GROUPS = 'animethemes.group';
|
|
final public const string RELATION_VIDEOS = 'animethemes.animethemeentries.videos';
|
|
|
|
/**
|
|
* The event map for the model.
|
|
*
|
|
* Allows for object-based events for native Eloquent events.
|
|
*
|
|
* @var array<string, class-string>
|
|
*/
|
|
protected $dispatchesEvents = [
|
|
'created' => SongCreated::class,
|
|
'deleted' => SongDeleted::class,
|
|
'forceDeleting' => SongForceDeleting::class,
|
|
'restored' => SongRestored::class,
|
|
'updated' => SongUpdated::class,
|
|
];
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var list<string>
|
|
*/
|
|
protected $fillable = [
|
|
Song::ATTRIBUTE_TITLE,
|
|
Song::ATTRIBUTE_TITLE_NATIVE,
|
|
];
|
|
|
|
/**
|
|
* Get the attributes that should be cast.
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
Song::ATTRIBUTE_TITLE => 'string',
|
|
Song::ATTRIBUTE_TITLE_NATIVE => 'string',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get the indexable data array for the model.
|
|
*/
|
|
public function toSearchableArray(): array
|
|
{
|
|
return match ($driver = Config::get('scout.driver')) {
|
|
'collection',
|
|
'elastic' => SongElasticModel::toSearchableArray($this),
|
|
'typesense' => SongTypesenseModel::toSearchableArray($this),
|
|
default => throw new RuntimeException("Unsupported {$driver} search driver configured."),
|
|
};
|
|
}
|
|
|
|
public function getName(): string
|
|
{
|
|
if (blank($this->title)) {
|
|
return strval($this->getKey());
|
|
}
|
|
|
|
return $this->title;
|
|
}
|
|
|
|
public function getSubtitle(): string
|
|
{
|
|
if ($this->animethemes()->count() !== 0 && $this->animethemes->first()->anime !== null) {
|
|
return "{$this->animethemes->first()->anime->getName()} {$this->animethemes->first()->slug}";
|
|
}
|
|
|
|
return $this->title_native ?? strval($this->getKey());
|
|
}
|
|
|
|
/**
|
|
* @return HasMany<AnimeTheme, $this>
|
|
*/
|
|
public function animethemes(): HasMany
|
|
{
|
|
return $this->hasMany(AnimeTheme::class, AnimeTheme::ATTRIBUTE_SONG);
|
|
}
|
|
|
|
#[Deprecated]
|
|
public function artists(): BelongsToMany
|
|
{
|
|
$sub = Performance::query()
|
|
->selectRaw('MIN(performance_id) as performance_id')
|
|
->groupBy(Performance::ATTRIBUTE_SONG, Performance::ATTRIBUTE_ARTIST);
|
|
|
|
return $this->belongsToMany(Artist::class, Performance::TABLE, Performance::ATTRIBUTE_SONG, Performance::ATTRIBUTE_ARTIST)
|
|
->joinSub($sub, 'unique_performances', function ($join): void {
|
|
$join->on('performances.performance_id', '=', 'unique_performances.performance_id');
|
|
})
|
|
->as('artistsong')
|
|
->withPivot([Performance::ATTRIBUTE_ID, Performance::ATTRIBUTE_ALIAS, Performance::ATTRIBUTE_AS])
|
|
->withTimestamps();
|
|
}
|
|
|
|
/**
|
|
* @return HasMany<Performance, $this>
|
|
*/
|
|
public function performances(): HasMany
|
|
{
|
|
return $this->hasMany(Performance::class, Performance::ATTRIBUTE_SONG);
|
|
}
|
|
|
|
/**
|
|
* @return MorphToMany<ExternalResource, $this, Resourceable, 'songresource'>
|
|
*/
|
|
public function resources(): MorphToMany
|
|
{
|
|
return $this->morphToMany(ExternalResource::class, Resourceable::RELATION_RESOURCEABLE, Resourceable::TABLE, Resourceable::ATTRIBUTE_RESOURCEABLE_ID, Resourceable::ATTRIBUTE_RESOURCE)
|
|
->using(Resourceable::class)
|
|
->as('songresource')
|
|
->withPivot([Resourceable::ATTRIBUTE_ID, Resourceable::ATTRIBUTE_AS])
|
|
->withTimestamps();
|
|
}
|
|
}
|