-
-
Notifications
You must be signed in to change notification settings - Fork 966
Expand file tree
/
Copy pathObjectNormalizer.php
More file actions
76 lines (63 loc) · 2.42 KB
/
Copy pathObjectNormalizer.php
File metadata and controls
76 lines (63 loc) · 2.42 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
<?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\JsonLd\Serializer;
use ApiPlatform\JsonLd\AnonymousContextBuilderInterface;
use ApiPlatform\Metadata\IriConverterInterface;
use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
/**
* Decorates the output with JSON-LD metadata when appropriate, but otherwise just
* passes through to the decorated normalizer.
*/
final class ObjectNormalizer implements NormalizerInterface
{
use JsonLdContextTrait;
public const FORMAT = 'jsonld';
public function __construct(private readonly NormalizerInterface $decorated, private readonly IriConverterInterface $iriConverter, private AnonymousContextBuilderInterface $anonymousContextBuilder)
{
}
/**
* {@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
{
/*
* Converts the normalized data array of a resource into an IRI, if the
* normalized data array is empty.
*
* This is useful when traversing from a non-resource towards an attribute
* which is a resource, as we do not have the benefit of {@see ApiProperty::isReadableLink}.
*
* It must not be propagated to resources, as {@see ApiProperty::isReadableLink}
* should take effect.
*/
$context['api_empty_resource_as_iri'] = true;
$normalizedData = $this->decorated->normalize($data, $format, $context);
if (!\is_array($normalizedData) || !$normalizedData) {
return $normalizedData;
}
$metadata = $this->createJsonLdContext($this->anonymousContextBuilder, $data, $context);
return $metadata + $normalizedData;
}
}