Newer
Older
Klaranouba7
a validé
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
65
66
67
<?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\Core\Serializer;
use ApiPlatform\Core\Exception\RuntimeException;
use ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface;
use ApiPlatform\Core\Serializer\Filter\FilterInterface;
use ApiPlatform\Core\Util\RequestAttributesExtractor;
use Psr\Container\ContainerInterface;
use Symfony\Component\HttpFoundation\Request;
/**
* {@inheritdoc}
*
* @author Baptiste Meyer <baptiste.meyer@gmail.com>
*/
final class SerializerFilterContextBuilder implements SerializerContextBuilderInterface
{
private $decorated;
private $filterLocator;
private $resourceMetadataFactory;
public function __construct(ResourceMetadataFactoryInterface $resourceMetadataFactory, ContainerInterface $filterLocator, SerializerContextBuilderInterface $decorated)
{
$this->decorated = $decorated;
$this->filterLocator = $filterLocator;
$this->resourceMetadataFactory = $resourceMetadataFactory;
}
/**
* {@inheritdoc}
*/
public function createFromRequest(Request $request, bool $normalization, array $attributes = null): array
{
if (null === $attributes && !$attributes = RequestAttributesExtractor::extractAttributes($request)) {
throw new RuntimeException('Request attributes are not valid.');
}
$context = $this->decorated->createFromRequest($request, $normalization, $attributes);
$resourceMetadata = $this->resourceMetadataFactory->create($attributes['resource_class']);
$resourceFilters = $resourceMetadata->getOperationAttribute($attributes, 'filters', [], true);
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;
}
}