-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSerializerFilterContextBuilder.php
64 lines (52 loc) · 2.2 KB
/
SerializerFilterContextBuilder.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
/*
* This file is part of the API Platform project.
*
* (c) Kévin Dunglas <dunglas@gmail.com>
*
* 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\Serializer;
use ApiPlatform\Metadata\Exception\RuntimeException;
use ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface;
use ApiPlatform\Metadata\Util\AttributesExtractor;
use ApiPlatform\Serializer\Filter\FilterInterface;
use ApiPlatform\State\SerializerContextBuilderInterface;
use Psr\Container\ContainerInterface;
use Symfony\Component\HttpFoundation\Request;
/**
* {@inheritdoc}
*
* @author Baptiste Meyer <baptiste.meyer@gmail.com>
*/
final class SerializerFilterContextBuilder implements SerializerContextBuilderInterface
{
public function __construct(private readonly ResourceMetadataCollectionFactoryInterface $resourceMetadataCollectionFactory, private readonly ContainerInterface $filterLocator, private readonly SerializerContextBuilderInterface $decorated)
{
}
/**
* {@inheritdoc}
*/
public function createFromRequest(Request $request, bool $normalization, ?array $attributes = null): array
{
if (null === $attributes && !$attributes = AttributesExtractor::extractAttributes($request->attributes->all())) {
throw new RuntimeException('Request attributes are not valid.');
}
$context = $this->decorated->createFromRequest($request, $normalization, $attributes);
if (!($operation = $context['operation'] ?? null)) {
$operation = $this->resourceMetadataCollectionFactory->create($attributes['resource_class'])->getOperation($attributes['operation_name'] ?? null);
}
$resourceFilters = $operation->getFilters();
if (!$resourceFilters) {
return $context;
}
foreach ($resourceFilters as $filterId) {
if ($this->filterLocator->has($filterId) && ($filter = $this->filterLocator->get($filterId)) instanceof FilterInterface) {
$filter->apply($request, $normalization, $attributes, $context);
}
}
return $context;
}
}