Files
animethemes-server/app/GraphQL/Schema/Queries/Models/Singular/EloquentSingularQuery.php
T
2025-10-26 03:09:42 -03:00

83 lines
2.2 KiB
PHP

<?php
declare(strict_types=1);
namespace App\GraphQL\Schema\Queries\Models\Singular;
use App\Actions\GraphQL\ShowAction;
use App\GraphQL\Schema\Queries\Models\EloquentQuery;
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 Rebing\GraphQL\Support\Facades\GraphQL;
use RuntimeException;
abstract class EloquentSingularQuery extends EloquentQuery
{
public function authorize($root, array $args, $ctx, ?ResolveInfo $resolveInfo = null, ?Closure $getSelectFields = null): bool
{
$model = Arr::pull($args, 'model');
$args = collect($args)
->filter(fn ($value): bool => $value instanceof Model)
->prepend($model)
->values()
->all();
return Gate::allows('view', $args);
}
/**
* The arguments of the type.
*
* @return Argument[]
*/
public function arguments(): array
{
$arguments = [];
$baseType = $this->baseType();
if ($baseType instanceof BaseType) {
$arguments[] = $this->resolveBindArguments($baseType->fieldClasses());
}
return Arr::flatten($arguments);
}
/**
* The return type of the query.
*/
public function type(): Type
{
$baseType = $this->baseType();
throw_unless($baseType instanceof BaseType, RuntimeException::class, "baseType not defined for query {$this->getName()}");
return Type::nonNull(GraphQL::type($this->baseType()->getName()));
}
/**
* Resolve the singular record with the binded argument.
*
* @return Model
*/
public function resolve($root, array $args, $context, ResolveInfo $resolveInfo, ShowAction $action)
{
/** @var Model $model */
$model = Arr::get($args, 'model');
$builder = $this->model()::query();
$this->query($builder, $args);
$builder->whereKey($model->getKey());
return $action->show($builder, $args, $this->baseType(), $resolveInfo);
}
}