mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-05 20:25:05 +02:00
132 lines
4.7 KiB
PHP
132 lines
4.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Concerns\Actions\GraphQL;
|
|
|
|
use App\GraphQL\ResolveInfo as CustomResolveInfo;
|
|
use App\GraphQL\Schema\Relations\Relation;
|
|
use App\GraphQL\Schema\Types\BaseType;
|
|
use App\GraphQL\Schema\Types\EloquentType;
|
|
use App\GraphQL\Schema\Unions\BaseUnion;
|
|
use GraphQL\Type\Definition\ResolveInfo;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Relations\MorphTo;
|
|
use Illuminate\Database\Eloquent\Relations\Relation as EloquentRelation;
|
|
use Illuminate\Support\Arr;
|
|
|
|
trait ConstrainsEagerLoads
|
|
{
|
|
use FiltersModels;
|
|
use SortsModels;
|
|
|
|
/**
|
|
* Apply eager loads with filters and sorting.
|
|
*/
|
|
protected function constrainEagerLoads(Builder $query, ResolveInfo $resolveInfo, BaseType $type): void
|
|
{
|
|
$resolveInfo = new CustomResolveInfo($resolveInfo);
|
|
|
|
$fields = collect(data_get($resolveInfo->getFieldSelectionWithAliases(100), '*.*.selectionSet'))->flatten()->all();
|
|
|
|
$this->processEagerLoadForType($query, $fields, $type);
|
|
}
|
|
|
|
/**
|
|
* Process recursively the relations available for the given type.
|
|
*/
|
|
private function processEagerLoadForType(Builder $builder, array $fields, BaseType|BaseUnion $type): void
|
|
{
|
|
$eagerLoadRelations = [];
|
|
|
|
/** @var array<int, Relation> $relations */
|
|
$relations = collect($type->relations())
|
|
->filter(fn (Relation $relation) => Arr::has($fields, $relation->getName()))
|
|
->all();
|
|
|
|
foreach ($relations as $relation) {
|
|
$name = $relation->getName();
|
|
$path = $relation->getRelationName();
|
|
|
|
$relationSelection = Arr::get($fields, "{$name}.{$name}");
|
|
|
|
$relationArgs = Arr::get($relationSelection, 'args');
|
|
|
|
$relationType = $relation->getBaseType();
|
|
|
|
$eagerLoadRelations[$path] = function (EloquentRelation $eloquentRelation) use ($relationSelection, $relationArgs, $relationType, $relation): void {
|
|
if ($eloquentRelation instanceof MorphTo) {
|
|
$this->processMorphToRelation($relationSelection, $relationType, $eloquentRelation);
|
|
} elseif ($relationType instanceof BaseUnion) {
|
|
$this->processUnion($relationSelection, $eloquentRelation, $relationType);
|
|
} else {
|
|
$this->processGenericRelation($eloquentRelation, $relationArgs, $relationSelection, $relationType, $relation);
|
|
}
|
|
};
|
|
}
|
|
|
|
$builder->with($eagerLoadRelations);
|
|
}
|
|
|
|
/**
|
|
* MorphTo relationships have to be handled differently since they can have multiple types.
|
|
*/
|
|
private function processMorphToRelation(array $selection, BaseUnion $union, MorphTo $relation): void
|
|
{
|
|
$unions = Arr::get($selection, 'unions');
|
|
|
|
/** @var array<int, EloquentType> $types */
|
|
$types = collect($union->baseTypes())
|
|
->filter(fn (BaseType $type): bool => $type instanceof EloquentType)
|
|
->filter(fn (EloquentType $type) => Arr::has($unions, $type->getName()))
|
|
->all();
|
|
|
|
$morphConstrains = [];
|
|
foreach ($types as $type) {
|
|
$typeSelection = Arr::get($unions, "{$type->getName()}.selectionSet");
|
|
|
|
$morphConstrains[$type->model()] = function (Builder $query) use ($typeSelection, $type): void {
|
|
$this->processEagerLoadForType($query, $typeSelection, $type);
|
|
};
|
|
}
|
|
|
|
$relation->constrain($morphConstrains);
|
|
}
|
|
|
|
/**
|
|
* Process a union relation by applying the eager loads for each type in the union.
|
|
*/
|
|
private function processUnion(array $selection, EloquentRelation $relation, BaseUnion $union): void
|
|
{
|
|
$builder = $relation->getQuery();
|
|
|
|
$unions = Arr::get($selection, 'selectionSet.data.data.unions', []);
|
|
|
|
$types = collect($union->baseTypes())
|
|
->filter(fn (BaseType $type) => Arr::has($unions, $type->getName()))
|
|
->all();
|
|
|
|
foreach ($types as $type) {
|
|
$typeSelection = Arr::get($unions, "{$type->getName()}.selectionSet", []);
|
|
|
|
$this->processEagerLoadForType($builder, $typeSelection, $type);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Process a generic relation by applying filters, sorting and eager loads.
|
|
*/
|
|
private function processGenericRelation(EloquentRelation $relation, array $args, array $selection, BaseType $type, Relation $graphqlRelation): void
|
|
{
|
|
$builder = $relation->getQuery();
|
|
|
|
$this->filter($builder, $args, $type);
|
|
|
|
$this->sort($builder, $args, $type, $relation, $graphqlRelation);
|
|
|
|
$fields = data_get($selection, 'selectionSet.*.*.selectionSet', Arr::get($selection, 'selectionSet', []));
|
|
|
|
$this->processEagerLoadForType($builder, $fields, $type);
|
|
}
|
|
}
|