Files
animethemes-server/app/GraphQL/Schema/Mutations/Models/CreateMutation.php
T

85 lines
2.6 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\Schema\Fields\Field;
use App\GraphQL\Schema\Mutations\BaseMutation;
use App\GraphQL\Schema\Types\BaseType;
use App\GraphQL\Support\Argument\Argument;
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;
abstract class CreateMutation extends BaseMutation
{
/**
* @param class-string<Model> $model
*/
public function __construct(protected string $model)
{
parent::__construct('Create'.Str::pascal(class_basename($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->getColumn() => $field->getCreationRules($args)])
->toArray();
}
return [];
}
public function type(): Type
{
return Type::nonNull($this->toType());
}
}