-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObjectNormalizer.php
More file actions
86 lines (72 loc) · 2.9 KB
/
Copy pathObjectNormalizer.php
File metadata and controls
86 lines (72 loc) · 2.9 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?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\JsonApi\Serializer;
use ApiPlatform\Metadata\IriConverterInterface;
use ApiPlatform\Metadata\Resource\Factory\ResourceMetadataCollectionFactoryInterface;
use ApiPlatform\Metadata\ResourceClassResolverInterface;
use ApiPlatform\Metadata\Util\ClassInfoTrait;
use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
/**
* Decorates the output with JSON API metadata when appropriate, but otherwise
* just passes through to the decorated normalizer.
*/
final class ObjectNormalizer implements NormalizerInterface
{
use ClassInfoTrait;
public const FORMAT = 'jsonapi';
public function __construct(private readonly NormalizerInterface $decorated, private readonly IriConverterInterface $iriConverter, private readonly ResourceClassResolverInterface $resourceClassResolver, private readonly ResourceMetadataCollectionFactoryInterface $resourceMetadataFactory)
{
}
/**
* {@inheritdoc}
*/
public function supportsNormalization(mixed $data, ?string $format = null, array $context = []): bool
{
return self::FORMAT === $format && $this->decorated->supportsNormalization($data, $format, $context);
}
/**
* {@inheritdoc}
*/
public function getSupportedTypes(?string $format): array
{
return self::FORMAT === $format ? $this->decorated->getSupportedTypes($format) : [];
}
/**
* {@inheritdoc}
*/
public function normalize(mixed $data, ?string $format = null, array $context = []): array|string|int|float|bool|\ArrayObject|null
{
if (isset($context['api_resource'])) {
$originalResource = $context['api_resource'];
unset($context['api_resource']);
}
$normalizedData = $this->decorated->normalize($data, $format, $context);
if (!\is_array($normalizedData) || isset($context['api_attribute'])) {
return $normalizedData;
}
if (isset($originalResource)) {
$resourceClass = $this->resourceClassResolver->getResourceClass($originalResource);
$resourceData = [
'id' => $this->iriConverter->getIriFromResource($originalResource),
'type' => $this->resourceMetadataFactory->create($resourceClass)->getOperation()->getShortName(),
];
} else {
$resourceData = [
'id' => $this->iriConverter->getIriFromResource($data),
'type' => (new \ReflectionClass($this->getObjectClass($data)))->getShortName(),
];
}
if ($normalizedData) {
$resourceData['attributes'] = $normalizedData;
}
return ['data' => $resourceData];
}
}