Files
animethemes-server/app/GraphQL/Schema/Fields/User/Like/LikePlaylistField.php
T

56 lines
1.4 KiB
PHP

<?php
declare(strict_types=1);
namespace App\GraphQL\Schema\Fields\User\Like;
use App\Contracts\GraphQL\Fields\BindableField;
use App\Contracts\GraphQL\Fields\CreatableField;
use App\GraphQL\Schema\Fields\Field;
use App\GraphQL\Schema\Mutations\Models\User\ToggleLikeMutation;
use App\Models\List\Playlist;
use GraphQL\Type\Definition\Type;
use Illuminate\Support\Arr;
use Illuminate\Support\Str;
class LikePlaylistField extends Field implements BindableField, CreatableField
{
public function __construct()
{
parent::__construct('playlist');
}
public function description(): string
{
return 'The hashid of the playlist to like';
}
public function baseType(): Type
{
return Type::string();
}
/**
* The resolver to cast the model.
*/
public function bindResolver(array $args): Playlist
{
return Playlist::query()
->where(Playlist::ATTRIBUTE_HASHID, Arr::get($args, ToggleLikeMutation::ATTRIBUTE_PLAYLIST))
->firstOrFail();
}
/**
* @param array<string, mixed> $args
*/
public function getCreationRules(array $args): array
{
return [
Str::of('prohibits:')->append(ToggleLikeMutation::ATTRIBUTE_ENTRY)->__toString(),
'required_without_all:'.implode(',', [
ToggleLikeMutation::ATTRIBUTE_ENTRY,
]),
];
}
}