mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
175 lines
4.1 KiB
PHP
175 lines
4.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models\Wiki;
|
|
|
|
use App\Concerns\Models\Aggregate\AggregatesView;
|
|
use App\Concerns\Models\Reportable;
|
|
use App\Concerns\Models\SoftDeletes;
|
|
use App\Contracts\Models\HasAggregateViews;
|
|
use App\Contracts\Models\SoftDeletable;
|
|
use App\Contracts\Models\Streamable;
|
|
use App\Events\Wiki\Audio\AudioCreated;
|
|
use App\Events\Wiki\Audio\AudioDeleted;
|
|
use App\Events\Wiki\Audio\AudioForceDeleting;
|
|
use App\Events\Wiki\Audio\AudioRestored;
|
|
use App\Events\Wiki\Audio\AudioUpdated;
|
|
use App\Models\BaseModel;
|
|
use Database\Factories\Wiki\AudioFactory;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Support\Collection;
|
|
|
|
/**
|
|
* @property int $audio_id
|
|
* @property string $basename
|
|
* @property string $filename
|
|
* @property string $link
|
|
* @property string $mimetype
|
|
* @property string $path
|
|
* @property int $size
|
|
* @property Collection<int, Video> $videos
|
|
*
|
|
* @method static AudioFactory factory(...$parameters)
|
|
*/
|
|
class Audio extends BaseModel implements HasAggregateViews, SoftDeletable, Streamable
|
|
{
|
|
use AggregatesView;
|
|
use HasFactory;
|
|
use Reportable;
|
|
use SoftDeletes;
|
|
|
|
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_LINK = 'link';
|
|
final public const ATTRIBUTE_MIMETYPE = 'mimetype';
|
|
final public const ATTRIBUTE_PATH = 'path';
|
|
final public const ATTRIBUTE_SIZE = 'size';
|
|
|
|
final public const RELATION_VIDEOS = 'videos';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var list<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 class-string[]
|
|
*/
|
|
protected $dispatchesEvents = [
|
|
'created' => AudioCreated::class,
|
|
'deleted' => AudioDeleted::class,
|
|
'forceDeleting' => AudioForceDeleting::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;
|
|
|
|
/**
|
|
* The accessors to append to the model's array form.
|
|
*
|
|
* @var list<string>
|
|
*/
|
|
protected $appends = [
|
|
Audio::ATTRIBUTE_LINK,
|
|
];
|
|
|
|
public function getLinkAttribute(): ?string
|
|
{
|
|
if ($this->hasAttribute($this->getRouteKeyName()) && $this->exists) {
|
|
return route('audio.show', $this);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Get the route key for the model.
|
|
*
|
|
* @noinspection PhpMissingParentCallCommonInspection
|
|
*/
|
|
public function getRouteKeyName(): string
|
|
{
|
|
return Audio::ATTRIBUTE_BASENAME;
|
|
}
|
|
|
|
/**
|
|
* Get the attributes that should be cast.
|
|
*
|
|
* @return array<string, string>
|
|
*/
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
Audio::ATTRIBUTE_SIZE => 'int',
|
|
];
|
|
}
|
|
|
|
public function getName(): string
|
|
{
|
|
return $this->basename;
|
|
}
|
|
|
|
public function getSubtitle(): string
|
|
{
|
|
return $this->path();
|
|
}
|
|
|
|
public function path(): string
|
|
{
|
|
return $this->path;
|
|
}
|
|
|
|
public function basename(): string
|
|
{
|
|
return $this->basename;
|
|
}
|
|
|
|
public function mimetype(): string
|
|
{
|
|
return $this->mimetype;
|
|
}
|
|
|
|
public function size(): int
|
|
{
|
|
return $this->size;
|
|
}
|
|
|
|
/**
|
|
* @return HasMany<Video, $this>
|
|
*/
|
|
public function videos(): HasMany
|
|
{
|
|
return $this->hasMany(Video::class, Video::ATTRIBUTE_AUDIO);
|
|
}
|
|
}
|