Files
animethemes-server/app/Http/Api/Schema/Wiki/Video/ScriptSchema.php
T
2025-07-24 01:22:29 -03:00

67 lines
1.6 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Http\Api\Schema\Wiki\Video;
use App\Http\Api\Field\Field;
use App\Http\Api\Field\Wiki\Video\Script\ScriptIdField;
use App\Http\Api\Field\Wiki\Video\Script\ScriptLinkField;
use App\Http\Api\Field\Wiki\Video\Script\ScriptPathField;
use App\Http\Api\Field\Wiki\Video\Script\ScriptVideoIdField;
use App\Http\Api\Include\AllowedInclude;
use App\Http\Api\Schema\EloquentSchema;
use App\Http\Api\Schema\Wiki\VideoSchema;
use App\Http\Resources\Wiki\Video\Resource\ScriptResource;
use App\Models\Wiki\Video\VideoScript;
use Illuminate\Database\Eloquent\Model;
class ScriptSchema extends EloquentSchema
{
/**
* Get the type of the resource.
*/
public function type(): string
{
return ScriptResource::$wrap;
}
/**
* Get the allowed includes.
*
* @return AllowedInclude[]
*/
public function allowedIncludes(): array
{
return $this->withIntermediatePaths([
new AllowedInclude(new VideoSchema(), VideoScript::RELATION_VIDEO),
]);
}
/**
* Get the direct fields of the resource.
*
* @return Field[]
*/
public function fields(): array
{
return array_merge(
parent::fields(),
[
new ScriptIdField($this),
new ScriptPathField($this),
new ScriptLinkField($this),
new ScriptVideoIdField($this),
],
);
}
/**
* Get the model of the schema.
*/
public function model(): VideoScript
{
return new VideoScript();
}
}