mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
84 lines
2.1 KiB
PHP
84 lines
2.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\GraphQL\Schema\Mutations\Models\User;
|
|
|
|
use App\Contracts\GraphQL\Fields\DeletableField;
|
|
use App\GraphQL\Argument\Argument;
|
|
use App\GraphQL\Controllers\User\LikeController;
|
|
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;
|
|
|
|
class UnlikeMutation extends BaseMutation
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct('unlike');
|
|
}
|
|
|
|
public function description(): string
|
|
{
|
|
return 'Unlike a model';
|
|
}
|
|
|
|
public function authorize($root, array $args, $ctx, ?ResolveInfo $resolveInfo = null, $selectFields = null): bool
|
|
{
|
|
return ($this->response = Gate::inspect('delete', [Like::class, ...[]]))->allowed();
|
|
}
|
|
|
|
/**
|
|
* Get the arguments for the unlike 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 DeletableField)
|
|
->mapWithKeys(fn (Field&DeletableField $field): array => [$field->getColumn() => $field->getDeleteRules($args)])
|
|
->all();
|
|
}
|
|
|
|
/**
|
|
* The base return type of the mutation.
|
|
*/
|
|
public function baseType(): LikeType
|
|
{
|
|
return new LikeType();
|
|
}
|
|
|
|
public function type(): Type
|
|
{
|
|
return Type::nonNull($this->toType());
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $args
|
|
*/
|
|
public function resolve($root, array $args, $context, ResolveInfo $resolveInfo): mixed
|
|
{
|
|
return App::make(LikeController::class)
|
|
->destroy($root, $args);
|
|
}
|
|
}
|