-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(laravel): jsonapi query parameters (page, sort, fields and includ…
…e) (#6876)
- Loading branch information
Showing
2 changed files
with
114 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the API Platform project. | ||
* | ||
* (c) Kévin Dunglas <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace ApiPlatform\JsonApi\Filter; | ||
|
||
use ApiPlatform\Metadata\JsonSchemaFilterInterface; | ||
use ApiPlatform\Metadata\OpenApiParameterFilterInterface; | ||
use ApiPlatform\Metadata\Parameter as MetadataParameter; | ||
use ApiPlatform\Metadata\ParameterProviderFilterInterface; | ||
use ApiPlatform\Metadata\PropertiesAwareInterface; | ||
use ApiPlatform\Metadata\QueryParameter; | ||
use ApiPlatform\OpenApi\Model\Parameter; | ||
|
||
final class SparseFieldset implements OpenApiParameterFilterInterface, JsonSchemaFilterInterface, ParameterProviderFilterInterface, PropertiesAwareInterface | ||
{ | ||
public function getSchema(MetadataParameter $parameter): array | ||
{ | ||
return [ | ||
'type' => 'array', | ||
'items' => [ | ||
'type' => 'string', | ||
], | ||
]; | ||
} | ||
|
||
public function getOpenApiParameters(MetadataParameter $parameter): Parameter|array|null | ||
{ | ||
return new Parameter( | ||
name: ($k = $parameter->getKey()).'[]', | ||
in: $parameter instanceof QueryParameter ? 'query' : 'header', | ||
description: 'Allows you to reduce the response to contain only the properties you need. If your desired property is nested, you can address it using nested arrays. Example: '.\sprintf( | ||
'%1$s[]={propertyName}&%1$s[]={anotherPropertyName}', | ||
$k | ||
) | ||
); | ||
} | ||
|
||
public static function getParameterProvider(): string | ||
{ | ||
return SparseFieldsetParameterProvider::class; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the API Platform project. | ||
* | ||
* (c) Kévin Dunglas <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace ApiPlatform\JsonApi\Filter; | ||
|
||
use ApiPlatform\Metadata\Operation; | ||
use ApiPlatform\Metadata\Parameter; | ||
use ApiPlatform\State\ParameterProviderInterface; | ||
use Symfony\Component\Serializer\Normalizer\AbstractNormalizer; | ||
|
||
final readonly class SparseFieldsetParameterProvider implements ParameterProviderInterface | ||
{ | ||
public function provide(Parameter $parameter, array $parameters = [], array $context = []): ?Operation | ||
{ | ||
if (!($operation = $context['operation'] ?? null)) { | ||
return null; | ||
} | ||
|
||
$allowedProperties = $parameter->getExtraProperties()['_properties'] ?? []; | ||
$value = $parameter->getValue(); | ||
$normalizationContext = $operation->getNormalizationContext(); | ||
|
||
if (!\is_array($value)) { | ||
return null; | ||
} | ||
|
||
$properties = []; | ||
$shortName = strtolower($operation->getShortName()); | ||
foreach ($value as $resource => $fields) { | ||
if (strtolower($resource) === $shortName) { | ||
$p = &$properties; | ||
} else { | ||
$properties[$resource] = []; | ||
$p = &$properties[$resource]; | ||
} | ||
|
||
foreach (explode(',', $fields) as $f) { | ||
if (\array_key_exists($f, $allowedProperties)) { | ||
$p[] = $f; | ||
} | ||
} | ||
} | ||
|
||
if (isset($normalizationContext[AbstractNormalizer::ATTRIBUTES])) { | ||
$properties = array_merge_recursive((array) $normalizationContext[AbstractNormalizer::ATTRIBUTES], $properties); | ||
} | ||
|
||
$normalizationContext[AbstractNormalizer::ATTRIBUTES] = $properties; | ||
|
||
return $operation->withNormalizationContext($normalizationContext); | ||
} | ||
} |