|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* |
|
4
|
|
|
* (c) Kévin Dunglas <[email protected]> |
|
5
|
|
|
* |
|
6
|
|
|
* This source file is subject to the MIT license that is bundled |
|
7
|
|
|
* with this source code in the file LICENSE. |
|
8
|
|
|
*/ |
|
9
|
|
|
|
|
10
|
|
|
namespace Dunglas\DoctrineJsonOdm\Normalizer; |
|
11
|
|
|
|
|
12
|
|
|
use Symfony\Component\Serializer\Normalizer\DenormalizerInterface; |
|
13
|
|
|
use Symfony\Component\Serializer\Normalizer\NormalizerInterface; |
|
14
|
|
|
use Symfony\Component\Serializer\SerializerAwareInterface; |
|
15
|
|
|
use Symfony\Component\Serializer\SerializerInterface; |
|
16
|
|
|
|
|
17
|
|
|
/** |
|
18
|
|
|
* Transforms an object to an array with the following keys: |
|
19
|
|
|
* * _type: the class name |
|
20
|
|
|
* * _value: a representation of the values of the object. |
|
21
|
|
|
* |
|
22
|
|
|
* @author Kévin Dunglas <[email protected]> |
|
23
|
|
|
*/ |
|
24
|
|
|
final class ObjectNormalizer implements NormalizerInterface, DenormalizerInterface, SerializerAwareInterface |
|
25
|
|
|
{ |
|
26
|
|
|
/** |
|
27
|
|
|
* @var SerializerInterface |
|
28
|
|
|
*/ |
|
29
|
|
|
private $serializer; |
|
30
|
|
|
private $objectNormalizer; |
|
31
|
|
|
|
|
32
|
|
|
public function __construct(NormalizerInterface $objectNormalizer) |
|
33
|
|
|
{ |
|
34
|
|
|
if (!$objectNormalizer instanceof DenormalizerInterface) { |
|
35
|
|
|
throw new \InvalidArgumentException(sprintf('The normalizer used must implement the "%s" interface.', DenormalizerInterface::class)); |
|
36
|
|
|
} |
|
37
|
|
|
|
|
38
|
|
|
$this->objectNormalizer = $objectNormalizer; |
|
39
|
|
|
} |
|
40
|
|
|
|
|
41
|
|
|
/** |
|
42
|
|
|
* {@inheritdoc} |
|
43
|
|
|
*/ |
|
44
|
|
|
public function normalize($object, $format = null, array $context = []) |
|
45
|
|
|
{ |
|
46
|
|
|
return [ |
|
47
|
|
|
'_type' => get_class($object), |
|
48
|
|
|
'_value' => $this->objectNormalizer->normalize($object, $format, $context), |
|
49
|
|
|
]; |
|
50
|
|
|
} |
|
51
|
|
|
|
|
52
|
|
|
/** |
|
53
|
|
|
* {@inheritdoc} |
|
54
|
|
|
*/ |
|
55
|
|
|
public function supportsNormalization($data, $format = null) |
|
56
|
|
|
{ |
|
57
|
|
|
return is_object($data); |
|
58
|
|
|
} |
|
59
|
|
|
|
|
60
|
|
|
/** |
|
61
|
|
|
* {@inheritdoc} |
|
62
|
|
|
*/ |
|
63
|
|
|
public function denormalize($data, $class, $format = null, array $context = []) |
|
64
|
|
|
{ |
|
65
|
|
|
if (isset($data['_value']) && isset($data['_type']) && is_array($data['_value'])) { |
|
66
|
|
|
$data['_value'] = $this->denormalize($data['_value'], $data['_type'], $format, $context); |
|
67
|
|
|
$data = $this->objectNormalizer->denormalize($data['_value'], $data['_type'], $format, $context); |
|
68
|
|
|
|
|
69
|
|
|
return $data; |
|
70
|
|
|
} |
|
71
|
|
|
|
|
72
|
|
|
if (is_array($data) || $data instanceof \Traversable) { |
|
73
|
|
|
foreach ($data as $key => $value) { |
|
74
|
|
|
$data[$key] = $this->serializer->denormalize($value, $class, $format, $context); |
|
|
|
|
|
|
75
|
|
|
} |
|
76
|
|
|
} |
|
77
|
|
|
|
|
78
|
|
|
return $data; |
|
|
|
|
|
|
79
|
|
|
} |
|
80
|
|
|
|
|
81
|
|
|
/** |
|
82
|
|
|
* {@inheritdoc} |
|
83
|
|
|
*/ |
|
84
|
|
|
public function supportsDenormalization($data, $type, $format = null) |
|
85
|
|
|
{ |
|
86
|
|
|
return true; |
|
87
|
|
|
} |
|
88
|
|
|
|
|
89
|
|
|
/** |
|
90
|
|
|
* {@inheritdoc} |
|
91
|
|
|
*/ |
|
92
|
|
|
public function setSerializer(SerializerInterface $serializer) |
|
93
|
|
|
{ |
|
94
|
|
|
$this->serializer = $serializer; |
|
95
|
|
|
|
|
96
|
|
|
if ($this->objectNormalizer instanceof SerializerAwareInterface) { |
|
97
|
|
|
$this->objectNormalizer->setSerializer($serializer); |
|
98
|
|
|
} |
|
99
|
|
|
} |
|
100
|
|
|
} |
|
101
|
|
|
|
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the interface: