mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
206 lines
5.3 KiB
PHP
206 lines
5.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models\Wiki;
|
|
|
|
use App\Events\Wiki\Artist\ArtistCreated;
|
|
use App\Events\Wiki\Artist\ArtistDeleted;
|
|
use App\Events\Wiki\Artist\ArtistRestored;
|
|
use App\Events\Wiki\Artist\ArtistUpdated;
|
|
use App\Models\BaseModel;
|
|
use App\Pivots\ArtistImage;
|
|
use App\Pivots\ArtistMember;
|
|
use App\Pivots\ArtistResource;
|
|
use App\Pivots\ArtistSong;
|
|
use App\Pivots\BasePivot;
|
|
use Database\Factories\Wiki\ArtistFactory;
|
|
use Elastic\ScoutDriverPlus\Searchable;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
use Illuminate\Support\Collection;
|
|
use Laravel\Nova\Actions\Actionable;
|
|
|
|
/**
|
|
* Class Artist.
|
|
*
|
|
* @property int $artist_id
|
|
* @property Collection<int, Artist> $groups
|
|
* @property Collection<int, Image> $images
|
|
* @property Collection<int, Artist> $members
|
|
* @property string $name
|
|
* @property BasePivot $pivot
|
|
* @property Collection<int, ExternalResource> $resources
|
|
* @property string $slug
|
|
* @property Collection<int, Song> $songs
|
|
*
|
|
* @method static ArtistFactory factory(...$parameters)
|
|
*/
|
|
class Artist extends BaseModel
|
|
{
|
|
use Actionable;
|
|
use Searchable;
|
|
|
|
final public const TABLE = 'artists';
|
|
|
|
final public const ATTRIBUTE_ID = 'artist_id';
|
|
final public const ATTRIBUTE_NAME = 'name';
|
|
final public const ATTRIBUTE_SLUG = 'slug';
|
|
|
|
final public const RELATION_ANIME = 'songs.animethemes.anime';
|
|
final public const RELATION_ANIMETHEMES = 'songs.animethemes';
|
|
final public const RELATION_GROUPS = 'groups';
|
|
final public const RELATION_IMAGES = 'images';
|
|
final public const RELATION_MEMBERS = 'members';
|
|
final public const RELATION_RESOURCES = 'resources';
|
|
final public const RELATION_SONGS = 'songs';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $fillable = [
|
|
Artist::ATTRIBUTE_NAME,
|
|
Artist::ATTRIBUTE_SLUG,
|
|
];
|
|
|
|
/**
|
|
* The event map for the model.
|
|
*
|
|
* Allows for object-based events for native Eloquent events.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $dispatchesEvents = [
|
|
'created' => ArtistCreated::class,
|
|
'deleted' => ArtistDeleted::class,
|
|
'restored' => ArtistRestored::class,
|
|
'updated' => ArtistUpdated::class,
|
|
];
|
|
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = Artist::TABLE;
|
|
|
|
/**
|
|
* The primary key associated with the table.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $primaryKey = Artist::ATTRIBUTE_ID;
|
|
|
|
/**
|
|
* Modify the query used to retrieve models when making all of the models searchable.
|
|
*
|
|
* @param Builder $query
|
|
* @return Builder
|
|
*/
|
|
protected function makeAllSearchableUsing(Builder $query): Builder
|
|
{
|
|
return $query->with(Artist::RELATION_SONGS);
|
|
}
|
|
|
|
/**
|
|
* Get the indexable data array for the model.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function toSearchableArray(): array
|
|
{
|
|
$array = $this->toArray();
|
|
$array['songs'] = $this->songs->toArray();
|
|
|
|
return $array;
|
|
}
|
|
|
|
/**
|
|
* Get the route key for the model.
|
|
*
|
|
* @return string
|
|
*
|
|
* @noinspection PhpMissingParentCallCommonInspection
|
|
*/
|
|
public function getRouteKeyName(): string
|
|
{
|
|
return Artist::ATTRIBUTE_SLUG;
|
|
}
|
|
|
|
/**
|
|
* Get name.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getName(): string
|
|
{
|
|
return $this->name;
|
|
}
|
|
|
|
/**
|
|
* Get the songs the artist has performed in.
|
|
*
|
|
* @return BelongsToMany
|
|
*/
|
|
public function songs(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Song::class, ArtistSong::TABLE, Artist::ATTRIBUTE_ID, Song::ATTRIBUTE_ID)
|
|
->using(ArtistSong::class)
|
|
->withPivot(ArtistSong::ATTRIBUTE_AS)
|
|
->withTimestamps();
|
|
}
|
|
|
|
/**
|
|
* Get the resources for the artist.
|
|
*
|
|
* @return BelongsToMany
|
|
*/
|
|
public function resources(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(ExternalResource::class, ArtistResource::TABLE, Artist::ATTRIBUTE_ID, ExternalResource::ATTRIBUTE_ID)
|
|
->using(ArtistResource::class)
|
|
->withPivot(ArtistResource::ATTRIBUTE_AS)
|
|
->withTimestamps();
|
|
}
|
|
|
|
/**
|
|
* Get the members that comprise this group.
|
|
*
|
|
* @return BelongsToMany
|
|
*/
|
|
public function members(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Artist::class, ArtistMember::TABLE, Artist::ATTRIBUTE_ID, 'member_id')
|
|
->using(ArtistMember::class)
|
|
->withPivot(ArtistMember::ATTRIBUTE_AS)
|
|
->withTimestamps();
|
|
}
|
|
|
|
/**
|
|
* Get the groups the artist has performed in.
|
|
*
|
|
* @return BelongsToMany
|
|
*/
|
|
public function groups(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Artist::class, ArtistMember::TABLE, 'member_id', Artist::ATTRIBUTE_ID)
|
|
->using(ArtistMember::class)
|
|
->withPivot(ArtistMember::ATTRIBUTE_AS)
|
|
->withTimestamps();
|
|
}
|
|
|
|
/**
|
|
* Get the images for the artist.
|
|
*
|
|
* @return BelongsToMany
|
|
*/
|
|
public function images(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Image::class, ArtistImage::TABLE, Artist::ATTRIBUTE_ID, Image::ATTRIBUTE_ID)
|
|
->using(ArtistImage::class)
|
|
->withTimestamps();
|
|
}
|
|
}
|