Files
animethemes-server/app/Models/List/Playlist.php
T
2026-04-02 12:39:11 -03:00

214 lines
6.3 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Models\List;
use App\Concerns\Models\Aggregate\AggregatesLike;
use App\Concerns\Models\InteractsWithLikes;
use App\Contracts\Models\HasAggregateLikes;
use App\Contracts\Models\HasHashids;
use App\Contracts\Models\HasImages;
use App\Contracts\Models\Likeable;
use App\Enums\Models\List\PlaylistVisibility;
use App\Events\List\Playlist\PlaylistCreated;
use App\Events\List\Playlist\PlaylistDeleted;
use App\Events\List\Playlist\PlaylistUpdated;
use App\Models\Auth\User;
use App\Models\BaseModel;
use App\Models\List\Playlist\PlaylistTrack;
use App\Models\Wiki\Image;
use App\Pivots\Morph\Imageable;
use App\Scout\Elasticsearch\Models\List\PlaylistElasticModel;
use App\Scout\Typesense\Models\List\PlaylistTypesenseModel;
use Database\Factories\List\PlaylistFactory;
use Elastic\ScoutDriverPlus\Searchable;
use Illuminate\Database\Eloquent\Attributes\Table;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\MorphToMany;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Config;
use RuntimeException;
/**
* @property string|null $description
* @property PlaylistTrack|null $first
* @property int $first_id
* @property Collection<int, Image> $images
* @property PlaylistTrack|null $last
* @property int $last_id
* @property int $playlist_id
* @property Collection<int, PlaylistTrack> $tracks
* @property string $name
* @property User|null $user
* @property int|null $user_id
* @property PlaylistVisibility $visibility
*
* @method static PlaylistFactory factory(...$parameters)
*/
#[Table(Playlist::TABLE, Playlist::ATTRIBUTE_ID)]
class Playlist extends BaseModel implements HasAggregateLikes, HasHashids, HasImages, Likeable
{
use AggregatesLike;
use HasFactory;
use InteractsWithLikes;
use Searchable;
final public const string TABLE = 'playlists';
final public const string ATTRIBUTE_DESCRIPTION = 'description';
final public const string ATTRIBUTE_FIRST = 'first_id';
final public const string ATTRIBUTE_ID = 'playlist_id';
final public const string ATTRIBUTE_LAST = 'last_id';
final public const string ATTRIBUTE_NAME = 'name';
final public const string ATTRIBUTE_USER = 'user_id';
final public const string ATTRIBUTE_VISIBILITY = 'visibility';
final public const string RELATION_FIRST = 'first';
final public const string RELATION_IMAGES = 'images';
final public const string RELATION_LAST = 'last';
final public const string RELATION_TRACKS = 'tracks';
final public const string RELATION_USER = 'user';
/**
* The event map for the model.
*
* Allows for object-based events for native Eloquent events.
*
* @var array<string, class-string>
*/
protected $dispatchesEvents = [
'created' => PlaylistCreated::class,
'deleted' => PlaylistDeleted::class,
'updated' => PlaylistUpdated::class,
];
/**
* The attributes that are mass assignable.
*
* @var list<string>
*/
protected $fillable = [
Playlist::ATTRIBUTE_DESCRIPTION,
Playlist::ATTRIBUTE_NAME,
Playlist::ATTRIBUTE_USER,
Playlist::ATTRIBUTE_VISIBILITY,
];
/**
* Get the route key for the model.
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public function getRouteKeyName(): string
{
return HasHashids::ATTRIBUTE_HASHID;
}
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
Playlist::ATTRIBUTE_DESCRIPTION => 'string',
Playlist::ATTRIBUTE_FIRST => 'int',
Playlist::ATTRIBUTE_HASHID => 'string',
Playlist::ATTRIBUTE_LAST => 'int',
Playlist::ATTRIBUTE_NAME => 'string',
Playlist::ATTRIBUTE_USER => 'int',
Playlist::ATTRIBUTE_VISIBILITY => PlaylistVisibility::class,
];
}
/**
* Get the numbers used to encode the model's hashids.
*/
public function hashids(): array
{
return array_filter([
$this->user_id,
$this->playlist_id,
]);
}
public function getName(): string
{
return $this->name;
}
public function getSubtitle(): string
{
return $this->user === null ? $this->getName() : $this->user->getName();
}
/**
* Determine if the model should be searchable.
*/
public function shouldBeSearchable(): bool
{
return $this->visibility === PlaylistVisibility::PUBLIC;
}
/**
* Get the indexable data array for the model.
*/
public function toSearchableArray(): array
{
return match ($driver = Config::get('scout.driver')) {
'collection',
'elastic' => PlaylistElasticModel::toSearchableArray($this),
'typesense' => PlaylistTypesenseModel::toSearchableArray($this),
default => throw new RuntimeException("Unsupported {$driver} search driver configured."),
};
}
/**
* @return BelongsTo<User, $this>
*/
public function user(): BelongsTo
{
return $this->belongsTo(User::class, Playlist::ATTRIBUTE_USER);
}
/**
* @return BelongsTo<PlaylistTrack, $this>
*/
public function first(): BelongsTo
{
return $this->belongsTo(PlaylistTrack::class, Playlist::ATTRIBUTE_FIRST);
}
/**
* @return BelongsTo<PlaylistTrack, $this>
*/
public function last(): BelongsTo
{
return $this->belongsTo(PlaylistTrack::class, Playlist::ATTRIBUTE_LAST);
}
/**
* @return MorphToMany<Image, $this, Imageable, 'playlistimage'>
*/
public function images(): MorphToMany
{
return $this->morphToMany(Image::class, Imageable::RELATION_IMAGEABLE, Imageable::TABLE, Imageable::ATTRIBUTE_IMAGEABLE_ID, Imageable::ATTRIBUTE_IMAGE)
->using(Imageable::class)
->as('playlistimage')
->withPivot([Imageable::ATTRIBUTE_ID, Imageable::ATTRIBUTE_DEPTH])
->withTimestamps();
}
/**
* @return HasMany<PlaylistTrack, $this>
*/
public function tracks(): HasMany
{
return $this->hasMany(PlaylistTrack::class, PlaylistTrack::ATTRIBUTE_PLAYLIST);
}
}