-
-
Notifications
You must be signed in to change notification settings - Fork 963
Expand file tree
/
Copy pathObjectMapperProcessor.php
More file actions
87 lines (73 loc) · 2.79 KB
/
ObjectMapperProcessor.php
File metadata and controls
87 lines (73 loc) · 2.79 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
87
<?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\State\Processor;
use ApiPlatform\Metadata\Operation;
use ApiPlatform\State\ProcessorInterface;
use ApiPlatform\State\Util\StateOptionsTrait;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\ObjectMapper\ObjectMapperInterface;
/**
* @deprecated since API Platform 4.3, use {@see ObjectMapperInputProcessor} and {@see ObjectMapperOutputProcessor} instead
*
* @implements ProcessorInterface<mixed,mixed>
*/
final class ObjectMapperProcessor implements ProcessorInterface
{
use StateOptionsTrait;
/**
* @param ProcessorInterface<mixed,mixed> $decorated
*/
public function __construct(
private readonly ?ObjectMapperInterface $objectMapper,
private readonly ProcessorInterface $decorated,
) {
trigger_deprecation('api-platform/core', '4.3', 'The "%s" class is deprecated, use "%s" and "%s" instead.', self::class, ObjectMapperInputProcessor::class, ObjectMapperOutputProcessor::class);
}
public function process(mixed $data, Operation $operation, array $uriVariables = [], array $context = []): object|array|null
{
$class = $operation->getInputClass();
if (
$data instanceof Response
|| !$this->objectMapper
|| !$operation->canWrite()
|| null === $data
|| !is_a($data, $class, true)
|| !$operation->canMap()
) {
return $this->decorated->process($data, $operation, $uriVariables, $context);
}
$request = $context['request'] ?? null;
// maps the Resource to an Entity
if ($request?->attributes->get('mapped_data')) {
$mappedData = $this->objectMapper->map($data, $request->attributes->get('mapped_data'));
} else {
$mappedData = $this->objectMapper->map($data, $this->getStateOptionsClass($operation, $operation->getClass()));
}
$request?->attributes->set('mapped_data', $mappedData);
$persisted = $this->decorated->process(
$mappedData,
$operation,
$uriVariables,
$context,
);
// in some cases (delete operation), the decoration may return a null object
if (null === $persisted) {
return $persisted;
}
$request?->attributes->set('persisted_data', $persisted);
// return the Resource representation of the persisted entity
return $this->objectMapper->map(
// persist the entity
$persisted,
$operation->getClass()
);
}
}