Completed
Push — master ( ac8ec4...1a57ac )
by Kévin
04:37 queued 11s
created

src/Serializer/ItemNormalizer.php (1 issue)

1
<?php
2
3
/*
4
 * This file is part of the API Platform project.
5
 *
6
 * (c) Kévin Dunglas <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
declare(strict_types=1);
13
14
namespace ApiPlatform\Core\Serializer;
15
16
use ApiPlatform\Core\Api\IriConverterInterface;
17
use ApiPlatform\Core\Api\ResourceClassResolverInterface;
18
use ApiPlatform\Core\DataProvider\ItemDataProviderInterface;
19
use ApiPlatform\Core\Exception\InvalidArgumentException;
20
use ApiPlatform\Core\Metadata\Property\Factory\PropertyMetadataFactoryInterface;
21
use ApiPlatform\Core\Metadata\Property\Factory\PropertyNameCollectionFactoryInterface;
22
use ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface;
23
use Psr\Log\LoggerInterface;
24
use Psr\Log\NullLogger;
25
use Symfony\Component\PropertyAccess\PropertyAccessorInterface;
26
use Symfony\Component\Serializer\Exception\NotNormalizableValueException;
27
use Symfony\Component\Serializer\Mapping\Factory\ClassMetadataFactoryInterface;
28
use Symfony\Component\Serializer\NameConverter\NameConverterInterface;
29
30
/**
31
 * Generic item normalizer.
32
 *
33
 * @author Kévin Dunglas <[email protected]>
34
 */
35
class ItemNormalizer extends AbstractItemNormalizer
36
{
37
    private $logger;
38
39
    public function __construct(PropertyNameCollectionFactoryInterface $propertyNameCollectionFactory, PropertyMetadataFactoryInterface $propertyMetadataFactory, IriConverterInterface $iriConverter, ResourceClassResolverInterface $resourceClassResolver, PropertyAccessorInterface $propertyAccessor = null, NameConverterInterface $nameConverter = null, ClassMetadataFactoryInterface $classMetadataFactory = null, ItemDataProviderInterface $itemDataProvider = null, bool $allowPlainIdentifiers = false, LoggerInterface $logger = null, iterable $dataTransformers = [], ResourceMetadataFactoryInterface $resourceMetadataFactory = null)
40
    {
41
        parent::__construct($propertyNameCollectionFactory, $propertyMetadataFactory, $iriConverter, $resourceClassResolver, $propertyAccessor, $nameConverter, $classMetadataFactory, $itemDataProvider, $allowPlainIdentifiers, [], $dataTransformers, $resourceMetadataFactory);
42
43
        $this->logger = $logger ?: new NullLogger();
44
    }
45
46
    /**
47
     * {@inheritdoc}
48
     *
49
     * @throws NotNormalizableValueException
50
     */
51
    public function denormalize($data, $class, $format = null, array $context = [])
52
    {
53
        // Avoid issues with proxies if we populated the object
54
        if (isset($data['id']) && !isset($context[self::OBJECT_TO_POPULATE])) {
55
            if (isset($context['api_allow_update']) && true !== $context['api_allow_update']) {
56
                throw new NotNormalizableValueException('Update is not allowed for this operation.');
57
            }
58
59
            if (isset($context['resource_class'])) {
60
                $this->updateObjectToPopulate($data, $context);
61
            } else {
62
                // See https://github.com/api-platform/core/pull/2326 to understand this message.
63
                $this->logger->warning('The "resource_class" key is missing from the context.', [
64
                    'context' => $context,
65
                ]);
66
            }
67
        }
68
69
        return parent::denormalize($data, $class, $format, $context);
70
    }
71
72
    private function updateObjectToPopulate(array $data, array &$context): void
73
    {
74
        try {
75
            $context[self::OBJECT_TO_POPULATE] = $this->iriConverter->getItemFromIri((string) $data['id'], $context + ['fetch_data' => true]);
76
        } catch (InvalidArgumentException $e) {
77
            $identifier = null;
78
            $options = $this->getFactoryOptions($context);
79
80
            foreach ($this->propertyNameCollectionFactory->create($context['resource_class'], $options) as $propertyName) {
81
                if (true === $this->propertyMetadataFactory->create($context['resource_class'], $propertyName)->isIdentifier()) {
82
                    $identifier = $propertyName;
83
                    break;
84
                }
85
            }
86
87
            if (null === $identifier) {
0 ignored issues
show
The condition null === $identifier is always true.
Loading history...
88
                throw $e;
89
            }
90
91
            $context[self::OBJECT_TO_POPULATE] = $this->iriConverter->getItemFromIri(sprintf('%s/%s', $this->iriConverter->getIriFromResourceClass($context['resource_class']), $data[$identifier]), $context + ['fetch_data' => true]);
92
        }
93
    }
94
}
95