forked from janephp/automapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MapperContext.php
218 lines (175 loc) · 7.03 KB
/
MapperContext.php
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<?php
namespace Jane\AutoMapper;
use Jane\AutoMapper\Exception\CircularReferenceException;
/**
* Context for mapping.
*
* Allows to customize how is done the mapping
*
* @author Joel Wurtz <[email protected]>
*/
class MapperContext
{
public const GROUPS = 'groups';
public const ALLOWED_ATTRIBUTES = 'allowed_attributes';
public const IGNORED_ATTRIBUTES = 'ignored_attributes';
public const CIRCULAR_REFERENCE_LIMIT = 'circular_reference_limit';
public const CIRCULAR_REFERENCE_HANDLER = 'circular_reference_handler';
public const CIRCULAR_REFERENCE_REGISTRY = 'circular_reference_registry';
public const CIRCULAR_COUNT_REFERENCE_REGISTRY = 'circular_count_reference_registry';
public const DEPTH = 'depth';
public const TARGET_TO_POPULATE = 'target_to_populate';
public const CONSTRUCTOR_ARGUMENTS = 'constructor_arguments';
private $context = [
self::DEPTH => 0,
self::CIRCULAR_REFERENCE_REGISTRY => [],
self::CIRCULAR_COUNT_REFERENCE_REGISTRY => [],
self::CONSTRUCTOR_ARGUMENTS => [],
];
public function toArray(): array
{
return $this->context;
}
public function setGroups(?array $groups): self
{
$this->context[self::GROUPS] = $groups;
return $this;
}
public function setAllowedAttributes(?array $allowedAttributes): self
{
$this->context[self::ALLOWED_ATTRIBUTES] = $allowedAttributes;
return $this;
}
public function setIgnoredAttributes(?array $ignoredAttributes): self
{
$this->context[self::IGNORED_ATTRIBUTES] = $ignoredAttributes;
return $this;
}
public function setCircularReferenceLimit(?int $circularReferenceLimit): self
{
$this->context[self::CIRCULAR_REFERENCE_LIMIT] = $circularReferenceLimit;
return $this;
}
public function setCircularReferenceHandler(?callable $circularReferenceHandler): self
{
$this->context[self::CIRCULAR_REFERENCE_HANDLER] = $circularReferenceHandler;
return $this;
}
public function setTargetToPopulate($target): self
{
$this->context[self::TARGET_TO_POPULATE] = $target;
return $this;
}
public function setConstructorArgument(string $class, string $key, $value): self
{
$this->context[self::CONSTRUCTOR_ARGUMENTS][$class][$key] = $value;
return $this;
}
/**
* Whether a reference has reached it's limit.
*/
public static function shouldHandleCircularReference(array $context, string $reference, ?int $circularReferenceLimit = null): bool
{
if (!\array_key_exists($reference, $context[self::CIRCULAR_REFERENCE_REGISTRY] ?? [])) {
return false;
}
if (null === $circularReferenceLimit) {
$circularReferenceLimit = $context[self::CIRCULAR_REFERENCE_LIMIT] ?? null;
}
if (null !== $circularReferenceLimit) {
return $circularReferenceLimit <= ($context[self::CIRCULAR_COUNT_REFERENCE_REGISTRY][$reference] ?? 0);
}
return true;
}
/**
* Handle circular reference for a specific reference.
*
* By default will try to keep it and return the previous value
*
* @return mixed
*/
public static function &handleCircularReference(array &$context, string $reference, $object, ?int $circularReferenceLimit = null, callable $callback = null)
{
if (null === $callback) {
$callback = $context[self::CIRCULAR_REFERENCE_HANDLER] ?? null;
}
if (null !== $callback) {
// Cannot directly return here, as we need to return by reference, and callback may not be declared as reference return
$value = $callback($object, $context);
return $value;
}
if (null === $circularReferenceLimit) {
$circularReferenceLimit = $context[self::CIRCULAR_REFERENCE_LIMIT] ?? null;
}
if (null !== $circularReferenceLimit) {
if ($circularReferenceLimit <= ($context[self::CIRCULAR_COUNT_REFERENCE_REGISTRY][$reference] ?? 0)) {
throw new CircularReferenceException(sprintf('A circular reference has been detected when mapping the object of type "%s" (configured limit: %d)', \is_object($object) ? \get_class($object) : 'array', $circularReferenceLimit));
}
++$context[self::CIRCULAR_COUNT_REFERENCE_REGISTRY][$reference];
}
// When no limit defined return the object referenced
return $context[self::CIRCULAR_REFERENCE_REGISTRY][$reference];
}
/**
* Create a new context with a new reference.
*/
public static function withReference(array $context, string $reference, &$object): array
{
$context[self::CIRCULAR_REFERENCE_REGISTRY][$reference] = &$object;
$context[self::CIRCULAR_COUNT_REFERENCE_REGISTRY][$reference] = $context[self::CIRCULAR_COUNT_REFERENCE_REGISTRY][$reference] ?? 0;
++$context[self::CIRCULAR_COUNT_REFERENCE_REGISTRY][$reference];
return $context;
}
/**
* Check whether an attribute is allowed to be mapped.
*/
public static function isAllowedAttribute(array $context, string $attribute): bool
{
if (($context[self::IGNORED_ATTRIBUTES] ?? false) && \in_array($attribute, $context[self::IGNORED_ATTRIBUTES], true)) {
return false;
}
if (!($context[self::ALLOWED_ATTRIBUTES] ?? false)) {
return true;
}
return \in_array($attribute, $context[self::ALLOWED_ATTRIBUTES], true);
}
/**
* Clone context with a incremented depth.
*/
public static function withIncrementedDepth(array $context): array
{
$context[self::DEPTH] = $context[self::DEPTH] ?? 0;
++$context[self::DEPTH];
return $context;
}
/**
* Check wether an argument exist for the constructor for a specific class.
*/
public static function hasConstructorArgument(array $context, string $class, string $key): bool
{
return \array_key_exists($key, $context[self::CONSTRUCTOR_ARGUMENTS][$class] ?? []);
}
/**
* Get constructor argument for a specific class.
*/
public static function getConstructorArgument(array $context, string $class, string $key)
{
return $context[self::CONSTRUCTOR_ARGUMENTS][$class][$key] ?? null;
}
/**
* Create a new context, and reload attribute mapping for it.
*/
public static function withNewContext(array $context, string $attribute): array
{
if (!($context[self::ALLOWED_ATTRIBUTES] ?? false) && !($context[self::IGNORED_ATTRIBUTES] ?? false)) {
return $context;
}
if (\is_array($context[self::IGNORED_ATTRIBUTES][$attribute] ?? false)) {
$context[self::IGNORED_ATTRIBUTES] = $context[self::IGNORED_ATTRIBUTES][$attribute];
}
if (\is_array($context[self::ALLOWED_ATTRIBUTES][$attribute] ?? false)) {
$context[self::ALLOWED_ATTRIBUTES] = $context[self::ALLOWED_ATTRIBUTES][$attribute];
}
return $context;
}
}