mirror of
https://github.com/koel/koel
synced 2024-11-28 15:00:42 +00:00
77 lines
1.9 KiB
PHP
77 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Casts\SmartPlaylistRulesCast;
|
|
use App\Values\SmartPlaylistRuleGroupCollection;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
use Illuminate\Support\Collection;
|
|
use Laravel\Scout\Searchable;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string $name
|
|
* @property bool $is_smart
|
|
* @property int $user_id
|
|
* @property User $user
|
|
* @property ?string $folder_id
|
|
* @property ?PlaylistFolder $folder
|
|
* @property Collection|array<array-key, Song> $songs
|
|
* @property ?SmartPlaylistRuleGroupCollection $rule_groups
|
|
* @property ?SmartPlaylistRuleGroupCollection $rules
|
|
* @property Carbon $created_at
|
|
*/
|
|
class Playlist extends Model
|
|
{
|
|
use Searchable;
|
|
use HasFactory;
|
|
|
|
protected $hidden = ['user_id', 'created_at', 'updated_at'];
|
|
protected $guarded = ['id'];
|
|
|
|
protected $casts = [
|
|
'rules' => SmartPlaylistRulesCast::class,
|
|
];
|
|
|
|
protected $appends = ['is_smart'];
|
|
|
|
public function songs(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Song::class);
|
|
}
|
|
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function folder(): BelongsTo
|
|
{
|
|
return $this->belongsTo(PlaylistFolder::class);
|
|
}
|
|
|
|
protected function isSmart(): Attribute
|
|
{
|
|
return Attribute::get(fn (): bool => (bool) $this->rule_groups?->isNotEmpty());
|
|
}
|
|
|
|
protected function ruleGroups(): Attribute
|
|
{
|
|
// aliasing the attribute to avoid confusion
|
|
return Attribute::get(fn () => $this->rules);
|
|
}
|
|
|
|
/** @return array<mixed> */
|
|
public function toSearchableArray(): array
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'name' => $this->name,
|
|
];
|
|
}
|
|
}
|