mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-05 20:25:05 +02:00
80 lines
2.1 KiB
PHP
80 lines
2.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\GraphQL\Schema\Mutations\Models\User;
|
|
|
|
use App\Contracts\GraphQL\Fields\CreatableField;
|
|
use App\GraphQL\Argument\Argument;
|
|
use App\GraphQL\Resolvers\User\ToggleLikeResolver;
|
|
use App\GraphQL\Schema\Fields\Field;
|
|
use App\GraphQL\Schema\Mutations\BaseMutation;
|
|
use App\GraphQL\Schema\Types\User\LikeType;
|
|
use App\Models\User\Like;
|
|
use GraphQL\Type\Definition\ResolveInfo;
|
|
use GraphQL\Type\Definition\Type;
|
|
use Illuminate\Support\Facades\App;
|
|
use Illuminate\Support\Facades\Gate;
|
|
use Rebing\GraphQL\Support\Facades\GraphQL;
|
|
|
|
class ToggleLikeMutation extends BaseMutation
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct('ToggleLike');
|
|
}
|
|
|
|
public function authorize($root, array $args, $ctx, ?ResolveInfo $resolveInfo = null, $selectFields = null): bool
|
|
{
|
|
return ($this->response = Gate::inspect('create', [Like::class]))->allowed();
|
|
}
|
|
|
|
/**
|
|
* Get the arguments for the like mutation.
|
|
*
|
|
* @return Argument[]
|
|
*/
|
|
public function arguments(): array
|
|
{
|
|
$type = new LikeType();
|
|
|
|
return $this->resolveBindArguments($type->fieldClasses(), false);
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $args
|
|
* @return array<string, array>
|
|
*/
|
|
public function rulesForValidation(array $args = []): array
|
|
{
|
|
$type = new LikeType();
|
|
|
|
return collect($type->fieldClasses())
|
|
->filter(fn (Field $field): bool => $field instanceof CreatableField)
|
|
->mapWithKeys(fn (Field&CreatableField $field): array => [$field->getName() => $field->getCreationRules($args)])
|
|
->all();
|
|
}
|
|
|
|
/**
|
|
* The base return type of the mutation.
|
|
*/
|
|
public function baseType(): LikeType
|
|
{
|
|
return new LikeType();
|
|
}
|
|
|
|
public function type(): Type
|
|
{
|
|
return GraphQL::type($this->baseType()->getName());
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $args
|
|
*/
|
|
public function resolve($root, array $args, $context, ResolveInfo $resolveInfo): mixed
|
|
{
|
|
return App::make(ToggleLikeResolver::class)
|
|
->store($root, $args);
|
|
}
|
|
}
|