mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
91 lines
2.7 KiB
PHP
91 lines
2.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\GraphQL\Schema\Mutations\Models;
|
|
|
|
use App\Contracts\GraphQL\Fields\BindableField;
|
|
use App\Contracts\GraphQL\Fields\CreatableField;
|
|
use App\GraphQL\Argument\Argument;
|
|
use App\GraphQL\Schema\Fields\Field;
|
|
use App\GraphQL\Schema\Mutations\BaseMutation;
|
|
use App\GraphQL\Schema\Types\BaseType;
|
|
use Closure;
|
|
use GraphQL\Type\Definition\ResolveInfo;
|
|
use GraphQL\Type\Definition\Type;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Arr;
|
|
use Illuminate\Support\Facades\Gate;
|
|
use Illuminate\Support\Str;
|
|
use Rebing\GraphQL\Support\Facades\GraphQL;
|
|
|
|
abstract class CreateMutation extends BaseMutation
|
|
{
|
|
/**
|
|
* @param class-string<Model> $model
|
|
*/
|
|
public function __construct(protected string $model)
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
public function name(): string
|
|
{
|
|
return 'Create'.Str::pascal(class_basename($this->model));
|
|
}
|
|
|
|
public function authorize($root, array $args, $ctx, ?ResolveInfo $resolveInfo = null, ?Closure $getSelectFields = null): bool
|
|
{
|
|
$args = collect($args)
|
|
->filter(fn ($value): bool => $value instanceof Model)
|
|
->values()
|
|
->all();
|
|
|
|
return ($this->response = Gate::inspect('create', [$this->model, ...$args]))->allowed();
|
|
}
|
|
|
|
/**
|
|
* Get the arguments for the create mutation.
|
|
*
|
|
* @return Argument[]
|
|
*/
|
|
public function arguments(): array
|
|
{
|
|
$arguments = [];
|
|
|
|
$baseType = $this->baseType();
|
|
|
|
if ($baseType instanceof BaseType) {
|
|
$bindableFields = Arr::where($baseType->fieldClasses(), fn (Field $field): bool => $field instanceof BindableField && $field instanceof CreatableField);
|
|
$notBindableFields = Arr::where($baseType->fieldClasses(), fn (Field $field): bool => ! $field instanceof BindableField);
|
|
$arguments[] = $this->resolveBindArguments($bindableFields);
|
|
$arguments[] = $this->resolveCreateMutationArguments($notBindableFields);
|
|
}
|
|
|
|
return Arr::flatten($arguments);
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $args
|
|
* @return array<string, array>
|
|
*/
|
|
public function rulesForValidation(array $args = []): array
|
|
{
|
|
$baseType = $this->baseType();
|
|
|
|
if ($baseType instanceof BaseType) {
|
|
return collect($baseType->fieldClasses())
|
|
->filter(fn (Field $field): bool => $field instanceof CreatableField)
|
|
->mapWithKeys(fn (Field&CreatableField $field): array => [$field->name() => $field->getCreationRules($args)])
|
|
->all();
|
|
}
|
|
|
|
return [];
|
|
}
|
|
|
|
public function type(): Type
|
|
{
|
|
return Type::nonNull(GraphQL::type($this->baseType()->name()));
|
|
}
|
|
}
|