-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathProperty.php
More file actions
414 lines (346 loc) · 10.3 KB
/
Property.php
File metadata and controls
414 lines (346 loc) · 10.3 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
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
<?php
declare(strict_types=1);
namespace PHPModelGenerator\Model\Property;
use PHPModelGenerator\Attributes\Internal;
use PHPModelGenerator\Exception\SchemaException;
use PHPModelGenerator\Model\Attributes\PhpAttribute;
use PHPModelGenerator\Model\Schema;
use PHPModelGenerator\Model\SchemaDefinition\JsonSchema;
use PHPModelGenerator\Model\Validator;
use PHPModelGenerator\Model\Validator\PropertyValidatorInterface;
use PHPModelGenerator\PropertyProcessor\Decorator\Property\PropertyDecoratorInterface;
use PHPModelGenerator\PropertyProcessor\Decorator\TypeHint\TypeHintDecoratorInterface;
/**
* Class Property
*
* @package PHPModelGenerator\Model\Property
*/
class Property extends AbstractProperty
{
/** @var PropertyType|null */
protected $outputType;
/** @var bool */
protected $isPropertyRequired = true;
/** @var bool */
protected $isPropertyReadOnly = false;
/** @var bool */
protected $isPropertyWriteOnly = false;
/** @var bool */
protected $isPropertyInternal = false;
/** @var string|null */
protected $comment = null;
/** @var array */
protected $examples = [];
/** @var mixed */
protected $defaultValue;
/** @var Validator[] */
protected $validators = [];
/** @var Schema */
protected $nestedSchema;
/** @var PropertyDecoratorInterface[] */
public $decorators = [];
/** @var TypeHintDecoratorInterface[] */
public $typeHintDecorators = [];
private array $renderedTypeHints = [];
/** Track the amount of unresolved validators */
private int $pendingValidators = 0;
/**
* Property constructor.
*
* @throws SchemaException
*/
public function __construct(
string $name,
protected ?PropertyType $type,
JsonSchema $jsonSchema,
protected string $description = '',
) {
parent::__construct($name, $jsonSchema);
$this->resolve();
}
/**
* @inheritdoc
*/
public function getType(bool $outputType = false): ?PropertyType
{
// If the output type differs from the input type (transforming filter case), return a union
// so the setter can express that it accepts either the raw input or the already-transformed value.
if (
!$outputType
&& $this->type
&& $this->outputType
&& $this->outputType->getNames() !== $this->type->getNames()
) {
return new PropertyType(
array_merge($this->type->getNames(), $this->outputType->getNames()),
$this->type->isNullable() ?? $this->outputType->isNullable(),
);
}
return $outputType && $this->outputType !== null ? $this->outputType : $this->type;
}
/**
* @inheritdoc
*/
public function setType(
?PropertyType $type = null,
?PropertyType $outputType = null,
bool $reset = false,
): PropertyInterface {
if ($reset) {
$this->typeHintDecorators = [];
}
$this->type = $type;
$this->outputType = $outputType;
return $this;
}
/**
* @inheritdoc
*/
public function getTypeHint(bool $outputType = false, array $skipDecorators = []): string
{
if (isset($this->renderedTypeHints[$outputType])) {
return $this->renderedTypeHints[$outputType];
}
static $skipDec = [];
$additionalSkips = array_diff($skipDecorators, $skipDec);
$skipDec = array_merge($skipDec, $additionalSkips);
$input = [$outputType && $this->outputType !== null ? $this->outputType : $this->type];
// If the output type differs from an input type also accept the output type
if (!$outputType && $this->outputType !== null && $this->outputType !== $this->type) {
$input = [$this->type, $this->outputType];
}
$input = join(
'|',
array_filter(array_map(function (?PropertyType $input) use ($outputType, $skipDec): string {
$typeHint = $input ? $input->getNames()[0] : '';
$filteredDecorators = array_filter(
$this->typeHintDecorators,
static fn(TypeHintDecoratorInterface $decorator): bool => !in_array($decorator::class, $skipDec),
);
foreach ($filteredDecorators as $decorator) {
$typeHint = $decorator->decorate($typeHint, $outputType);
}
return $typeHint;
}, $input)),
);
$skipDec = array_diff($skipDec, $additionalSkips);
return $this->renderedTypeHints[$outputType] = $input ?: 'mixed';
}
/**
* @inheritdoc
*/
public function addTypeHintDecorator(TypeHintDecoratorInterface $typeHintDecorator): PropertyInterface
{
$this->typeHintDecorators[] = $typeHintDecorator;
$this->renderedTypeHints = [];
return $this;
}
/**
* @inheritdoc
*/
public function getDescription(): string
{
return $this->description;
}
public function getComment(): ?string
{
return $this->comment;
}
public function setComment(string $comment): PropertyInterface
{
$this->comment = $comment;
return $this;
}
public function getExamples(): array
{
return $this->examples;
}
public function setExamples(array $examples): PropertyInterface
{
$this->examples = $examples;
return $this;
}
/**
* @inheritdoc
*/
public function addValidator(
PropertyValidatorInterface $validator,
int $priority = 99,
?string $sourceKey = null,
): PropertyInterface {
if (!$validator->isResolved()) {
$this->isResolved = false;
$this->pendingValidators++;
$validator->onResolve(function (): void {
if (--$this->pendingValidators === 0) {
$this->resolve();
}
});
}
$wrapper = new Validator($validator, $priority);
if ($sourceKey !== null) {
$wrapper->setSourceKey($sourceKey);
}
$this->validators[] = $wrapper;
return $this;
}
/**
* @inheritdoc
*/
public function getValidators(): array
{
return $this->validators;
}
/**
* @inheritdoc
*/
public function filterValidators(callable $filter): PropertyInterface
{
$this->validators = array_filter($this->validators, $filter);
return $this;
}
/**
* @inheritdoc
*/
public function getOrderedValidators(): array
{
usort(
$this->validators,
static fn(Validator $validator, Validator $comparedValidator): int =>
$validator->getPriority() <=> $comparedValidator->getPriority(),
);
return array_map(
static fn(Validator $validator): PropertyValidatorInterface => $validator->getValidator(),
$this->validators,
);
}
/**
* @inheritdoc
*/
public function addDecorator(PropertyDecoratorInterface $decorator): PropertyInterface
{
$this->decorators[] = $decorator;
return $this;
}
/**
* @inheritdoc
*/
public function filterDecorators(callable $filter): PropertyInterface
{
$this->decorators = array_values(array_filter($this->decorators, $filter));
return $this;
}
/**
* @inheritdoc
*/
public function resolveDecorator(string $input, bool $nestedProperty): string
{
foreach ($this->decorators as $decorator) {
$input = $decorator->decorate($input, $this, $nestedProperty);
}
return $input;
}
/**
* @inheritdoc
*/
public function getDecorators(): array
{
return $this->decorators;
}
/**
* @inheritdoc
*/
public function setRequired(bool $isPropertyRequired): PropertyInterface
{
$this->isPropertyRequired = $isPropertyRequired;
return $this;
}
/**
* @inheritdoc
*/
public function setReadOnly(bool $isPropertyReadOnly): PropertyInterface
{
$this->isPropertyReadOnly = $isPropertyReadOnly;
return $this;
}
/**
* @inheritdoc
*/
public function setWriteOnly(bool $isPropertyWriteOnly): PropertyInterface
{
$this->isPropertyWriteOnly = $isPropertyWriteOnly;
return $this;
}
/**
* @inheritdoc
*/
public function setDefaultValue($defaultValue, bool $raw = false): PropertyInterface
{
$this->defaultValue = $defaultValue !== null && !$raw ? var_export($defaultValue, true) : $defaultValue;
return $this;
}
/**
* @inheritdoc
*/
public function getDefaultValue(): ?string
{
return $this->defaultValue;
}
/**
* @inheritdoc
*/
public function isRequired(): bool
{
return $this->isPropertyRequired || str_starts_with($this->name, 'item of array ');
}
/**
* @inheritdoc
*/
public function isReadOnly(): bool
{
return $this->isPropertyReadOnly;
}
/**
* @inheritdoc
*/
public function isWriteOnly(): bool
{
return $this->isPropertyWriteOnly;
}
/**
* @inheritdoc
*/
public function setNestedSchema(Schema $schema): PropertyInterface
{
$this->nestedSchema = $schema;
return $this;
}
/**
* @inheritdoc
*/
public function getNestedSchema(): ?Schema
{
return $this->nestedSchema;
}
/**
* @inheritdoc
*/
public function setInternal(bool $isPropertyInternal): PropertyInterface
{
// Internal is a one-way flag: once set to true the #[Internal] attribute has been
// added to the property's attribute list and cannot be removed. Subsequent calls
// with false (or repeated calls with true) are therefore silently ignored.
if ($isPropertyInternal && !$this->isPropertyInternal) {
$this->isPropertyInternal = true;
$this->addAttribute(new PhpAttribute(Internal::class));
}
return $this;
}
/**
* @inheritdoc
*/
public function isInternal(): bool
{
return $this->isPropertyInternal;
}
}