Files
animethemes-server/app/Models/Wiki/Audio.php
T
2024-07-29 13:07:36 -03:00

180 lines
3.9 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Models\Wiki;
use App\Contracts\Models\Streamable;
use App\Events\Wiki\Audio\AudioCreated;
use App\Events\Wiki\Audio\AudioDeleted;
use App\Events\Wiki\Audio\AudioRestored;
use App\Events\Wiki\Audio\AudioUpdated;
use App\Models\BaseModel;
use CyrildeWit\EloquentViewable\Contracts\Viewable;
use CyrildeWit\EloquentViewable\InteractsWithViews;
use Database\Factories\Wiki\AudioFactory;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Support\Collection;
/**
* Class Audio.
*
* @property int $audio_id
* @property string $basename
* @property string $filename
* @property string $mimetype
* @property string $path
* @property int $size
* @property Collection<int, Video> $videos
*
* @method static AudioFactory factory(...$parameters)
*/
class Audio extends BaseModel implements Streamable, Viewable
{
use InteractsWithViews;
final public const TABLE = 'audios';
final public const ATTRIBUTE_BASENAME = 'basename';
final public const ATTRIBUTE_FILENAME = 'filename';
final public const ATTRIBUTE_ID = 'audio_id';
final public const ATTRIBUTE_MIMETYPE = 'mimetype';
final public const ATTRIBUTE_PATH = 'path';
final public const ATTRIBUTE_SIZE = 'size';
final public const RELATION_VIDEOS = 'videos';
final public const RELATION_VIEWS = 'views';
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
Audio::ATTRIBUTE_BASENAME,
Audio::ATTRIBUTE_FILENAME,
Audio::ATTRIBUTE_MIMETYPE,
Audio::ATTRIBUTE_PATH,
Audio::ATTRIBUTE_SIZE,
];
/**
* The event map for the model.
*
* Allows for object-based events for native Eloquent events.
*
* @var array
*/
protected $dispatchesEvents = [
'created' => AudioCreated::class,
'deleted' => AudioDeleted::class,
'restored' => AudioRestored::class,
'updated' => AudioUpdated::class,
];
/**
* The table associated with the model.
*
* @var string
*/
protected $table = Audio::TABLE;
/**
* The primary key associated with the table.
*
* @var string
*/
protected $primaryKey = Audio::ATTRIBUTE_ID;
/**
* Get the route key for the model.
*
* @return string
*
* @noinspection PhpMissingParentCallCommonInspection
*/
public function getRouteKeyName(): string
{
return Audio::ATTRIBUTE_BASENAME;
}
/**
* The attributes that should be cast.
*
* @var array<string, string>
*/
protected $casts = [
Audio::ATTRIBUTE_SIZE => 'int',
];
/**
* Get name.
*
* @return string
*/
public function getName(): string
{
return $this->basename;
}
/**
* Get subtitle.
*
* @return string
*/
public function getSubtitle(): string
{
return $this->path();
}
/**
* Get the path of the streamable model in the filesystem.
*
* @return string
*/
public function path(): string
{
return $this->path;
}
/**
* Get the basename of the streamable model.
*
* @return string
*/
public function basename(): string
{
return $this->basename;
}
/**
* Get the MIME type / content type of the streamable model.
*
* @return string
*/
public function mimetype(): string
{
return $this->mimetype;
}
/**
* Get the content length of the streamable model.
*
* @return int
*/
public function size(): int
{
return $this->size;
}
/**
* Get the videos that use this audio.
*
* @return HasMany
*/
public function videos(): HasMany
{
return $this->hasMany(Video::class, Video::ATTRIBUTE_AUDIO);
}
}