mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
48 lines
1.1 KiB
PHP
48 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
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\Str;
|
|
|
|
/**
|
|
* @property string $id
|
|
* @property string $name
|
|
* @property User $user
|
|
* @property Collection<array-key, Playlist> $playlists
|
|
* @property int $user_id
|
|
* @property Carbon $created_at
|
|
*/
|
|
class PlaylistFolder extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
public $incrementing = false;
|
|
protected $keyType = 'string';
|
|
protected $guarded = ['id'];
|
|
|
|
protected static function booted(): void
|
|
{
|
|
static::creating(static fn (self $folder) => $folder->id = Str::uuid()->toString());
|
|
}
|
|
|
|
public function playlists(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Playlist::class, null, 'folder_id');
|
|
}
|
|
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function ownedBy(User $user): bool
|
|
{
|
|
return $this->user_id === $user->id;
|
|
}
|
|
}
|