Files
animethemes-server/app/Models/Wiki/Video/VideoScript.php
T
2026-04-17 10:45:33 -03:00

119 lines
3.3 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Models\Wiki\Video;
use App\Concerns\Models\SoftDeletes;
use App\Contracts\Http\Api\InteractsWithSchema;
use App\Contracts\Models\SoftDeletable;
use App\Events\Wiki\Video\Script\VideoScriptCreated;
use App\Events\Wiki\Video\Script\VideoScriptDeleted;
use App\Events\Wiki\Video\Script\VideoScriptForceDeleting;
use App\Events\Wiki\Video\Script\VideoScriptRestored;
use App\Events\Wiki\Video\Script\VideoScriptUpdated;
use App\Http\Api\Schema\Wiki\Video\ScriptSchema;
use App\Models\BaseModel;
use App\Models\Wiki\Video;
use Database\Factories\Wiki\Video\VideoScriptFactory;
use Illuminate\Database\Eloquent\Attributes\Appends;
use Illuminate\Database\Eloquent\Attributes\Table;
use Illuminate\Database\Eloquent\Casts\Attribute;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use OwenIt\Auditing\Auditable as HasAudits;
use OwenIt\Auditing\Contracts\Auditable;
/**
* @property int $script_id
* @property string $link
* @property string $path
* @property Video $video
* @property int $video_id
*
* @method static VideoScriptFactory factory(...$parameters)
*/
#[Appends([VideoScript::ATTRIBUTE_LINK])]
#[Table(VideoScript::TABLE, VideoScript::ATTRIBUTE_ID)]
class VideoScript extends BaseModel implements Auditable, InteractsWithSchema, SoftDeletable
{
use HasAudits;
use HasFactory;
use SoftDeletes;
final public const string TABLE = 'video_scripts';
final public const string ATTRIBUTE_ID = 'script_id';
final public const string ATTRIBUTE_LINK = 'link';
final public const string ATTRIBUTE_PATH = 'path';
final public const string ATTRIBUTE_VIDEO = 'video_id';
final public const string RELATION_VIDEO = 'video';
/**
* The event map for the model.
*
* Allows for object-based events for native Eloquent events.
*
* @var array<string, class-string>
*/
protected $dispatchesEvents = [
'created' => VideoScriptCreated::class,
'deleted' => VideoScriptDeleted::class,
'forceDeleting' => VideoScriptForceDeleting::class,
'restored' => VideoScriptRestored::class,
'updated' => VideoScriptUpdated::class,
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
VideoScript::ATTRIBUTE_PATH => 'string',
VideoScript::ATTRIBUTE_VIDEO => 'int',
];
}
protected function link(): Attribute
{
return Attribute::make(function (): ?string {
// Necessary for 'make' factories.
if ($this->getAttribute($this->getRouteKeyName()) !== null) {
return route('videoscript.show', $this);
}
return null;
});
}
public function getName(): string
{
return $this->path;
}
public function getSubtitle(): string
{
return $this->video->getName();
}
/**
* @return BelongsTo<Video, $this>
*/
public function video(): BelongsTo
{
return $this->belongsTo(Video::class, VideoScript::ATTRIBUTE_VIDEO);
}
/**
* Get the schema for the model.
*/
public function schema(): ScriptSchema
{
return new ScriptSchema();
}
}