Files
animethemes-server/app/Http/Api/Schema/Wiki/SongSchema.php
T

69 lines
2.1 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Http\Api\Schema\Wiki;
use App\Contracts\Http\Api\Schema\InteractsWithPivots;
use App\Contracts\Http\Api\Schema\SearchableSchema;
use App\Http\Api\Field\Base\IdField;
use App\Http\Api\Field\Field;
use App\Http\Api\Field\Wiki\Song\SongTitleField;
use App\Http\Api\Include\AllowedInclude;
use App\Http\Api\Schema\EloquentSchema;
use App\Http\Api\Schema\Pivot\Morph\ResourceableSchema;
use App\Http\Api\Schema\Wiki\Anime\ThemeSchema;
use App\Http\Api\Schema\Wiki\Song\PerformanceSchema;
use App\Http\Resources\Wiki\Resource\SongJsonResource;
use App\Models\Wiki\Song;
class SongSchema extends EloquentSchema implements InteractsWithPivots, SearchableSchema
{
/**
* @return AllowedInclude[]
*/
public function allowedPivots(): array
{
return [
new AllowedInclude(new PerformanceSchema(), 'artistsong'),
new AllowedInclude(new ResourceableSchema($this, 'songresource'), 'songresource'),
];
}
public function type(): string
{
return SongJsonResource::$wrap;
}
/**
* @return AllowedInclude[]
*/
public function allowedIncludes(): array
{
return $this->withIntermediatePaths([
new AllowedInclude(new AnimeSchema(), Song::RELATION_ANIME),
new AllowedInclude(new ArtistSchema(), Song::RELATION_ARTISTS),
new AllowedInclude(new ArtistSchema(), Song::RELATION_PERFORMANCES_ARTIST),
new AllowedInclude(new ArtistSchema(), Song::RELATION_PERFORMANCES_MEMBER),
new AllowedInclude(new ExternalResourceSchema(), Song::RELATION_RESOURCES),
new AllowedInclude(new GroupSchema(), Song::RELATION_THEME_GROUPS),
new AllowedInclude(new PerformanceSchema(), Song::RELATION_PERFORMANCES),
new AllowedInclude(new ThemeSchema(), Song::RELATION_ANIMETHEMES),
]);
}
/**
* @return Field[]
*/
public function fields(): array
{
return array_merge(
parent::fields(),
[
new IdField($this, Song::ATTRIBUTE_ID),
new SongTitleField($this),
],
);
}
}