1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* @author Todd Burry <[email protected]> |
4
|
|
|
* @copyright 2009-2018 Vanilla Forums Inc. |
5
|
|
|
* @license MIT |
6
|
|
|
*/ |
7
|
|
|
|
8
|
|
|
namespace Garden\Schema; |
9
|
|
|
|
10
|
|
|
/** |
11
|
|
|
* A class for defining and validating data schemas. |
12
|
|
|
*/ |
13
|
|
|
class Schema implements \JsonSerializable, \ArrayAccess { |
14
|
|
|
/** |
15
|
|
|
* Trigger a notice when extraneous properties are encountered during validation. |
16
|
|
|
*/ |
17
|
|
|
const VALIDATE_EXTRA_PROPERTY_NOTICE = 0x1; |
18
|
|
|
|
19
|
|
|
/** |
20
|
|
|
* Throw a ValidationException when extraneous properties are encountered during validation. |
21
|
|
|
*/ |
22
|
|
|
const VALIDATE_EXTRA_PROPERTY_EXCEPTION = 0x2; |
23
|
|
|
|
24
|
|
|
/** |
25
|
|
|
* @var array All the known types. |
26
|
|
|
* |
27
|
|
|
* If this is ever given some sort of public access then remove the static. |
28
|
|
|
*/ |
29
|
|
|
private static $types = [ |
30
|
|
|
'array' => ['a'], |
31
|
|
|
'object' => ['o'], |
32
|
|
|
'integer' => ['i', 'int'], |
33
|
|
|
'string' => ['s', 'str'], |
34
|
|
|
'number' => ['f', 'float'], |
35
|
|
|
'boolean' => ['b', 'bool'], |
36
|
|
|
'timestamp' => ['ts'], |
37
|
|
|
'datetime' => ['dt'], |
38
|
|
|
'null' => ['n'] |
39
|
|
|
]; |
40
|
|
|
|
41
|
|
|
/** |
42
|
|
|
* @var string The regular expression to strictly determine if a string is a date. |
43
|
|
|
*/ |
44
|
|
|
private static $DATE_REGEX = '`^\d{4}-\d{2}-\d{2}([ T]\d{2}:\d{2}(:\d{2})?)?`i'; |
45
|
|
|
|
46
|
|
|
private $schema = []; |
47
|
|
|
|
48
|
|
|
/** |
49
|
|
|
* @var int A bitwise combination of the various **Schema::FLAG_*** constants. |
50
|
|
|
*/ |
51
|
|
|
private $flags = 0; |
52
|
|
|
|
53
|
|
|
/** |
54
|
|
|
* @var array An array of callbacks that will filter data in the schema. |
55
|
|
|
*/ |
56
|
|
|
private $filters = []; |
57
|
|
|
|
58
|
|
|
/** |
59
|
|
|
* @var array An array of callbacks that will custom validate the schema. |
60
|
|
|
*/ |
61
|
|
|
private $validators = []; |
62
|
|
|
|
63
|
|
|
/** |
64
|
|
|
* @var string|Validation The name of the class or an instance that will be cloned. |
65
|
|
|
*/ |
66
|
|
|
private $validationClass = Validation::class; |
67
|
|
|
|
68
|
|
|
|
69
|
|
|
/// Methods /// |
70
|
|
|
|
71
|
|
|
/** |
72
|
|
|
* Initialize an instance of a new {@link Schema} class. |
73
|
|
|
* |
74
|
|
|
* @param array $schema The array schema to validate against. |
75
|
|
|
*/ |
76
|
213 |
|
public function __construct(array $schema = []) { |
77
|
213 |
|
$this->schema = $schema; |
78
|
213 |
|
} |
79
|
|
|
|
80
|
|
|
/** |
81
|
|
|
* Grab the schema's current description. |
82
|
|
|
* |
83
|
|
|
* @return string |
84
|
|
|
*/ |
85
|
1 |
|
public function getDescription(): string { |
86
|
1 |
|
return isset($this->schema['description']) ? $this->schema['description'] : ''; |
87
|
|
|
} |
88
|
|
|
|
89
|
|
|
/** |
90
|
|
|
* Set the description for the schema. |
91
|
|
|
* |
92
|
|
|
* @param string $description The new description. |
93
|
|
|
* @return $this |
94
|
|
|
*/ |
95
|
1 |
|
public function setDescription(string $description) { |
96
|
1 |
|
$this->schema['description'] = $description; |
97
|
1 |
|
return $this; |
98
|
|
|
} |
99
|
|
|
|
100
|
|
|
/** |
101
|
|
|
* Get a schema field. |
102
|
|
|
* |
103
|
|
|
* @param string|array $path The JSON schema path of the field with parts separated by dots. |
104
|
|
|
* @param mixed $default The value to return if the field isn't found. |
105
|
|
|
* @return mixed Returns the field value or `$default`. |
106
|
|
|
*/ |
107
|
5 |
|
public function getField($path, $default = null) { |
108
|
5 |
|
if (is_string($path)) { |
109
|
5 |
|
$path = explode('.', $path); |
110
|
|
|
} |
111
|
|
|
|
112
|
5 |
|
$value = $this->schema; |
113
|
5 |
|
foreach ($path as $i => $subKey) { |
114
|
5 |
|
if (is_array($value) && isset($value[$subKey])) { |
115
|
5 |
|
$value = $value[$subKey]; |
116
|
1 |
|
} elseif ($value instanceof Schema) { |
117
|
1 |
|
return $value->getField(array_slice($path, $i), $default); |
118
|
|
|
} else { |
119
|
5 |
|
return $default; |
120
|
|
|
} |
121
|
|
|
} |
122
|
5 |
|
return $value; |
123
|
|
|
} |
124
|
|
|
|
125
|
|
|
/** |
126
|
|
|
* Set a schema field. |
127
|
|
|
* |
128
|
|
|
* @param string|array $path The JSON schema path of the field with parts separated by dots. |
129
|
|
|
* @param mixed $value The new value. |
130
|
|
|
* @return $this |
131
|
|
|
*/ |
132
|
3 |
|
public function setField($path, $value) { |
133
|
3 |
|
if (is_string($path)) { |
134
|
3 |
|
$path = explode('.', $path); |
135
|
|
|
} |
136
|
|
|
|
137
|
3 |
|
$selection = &$this->schema; |
138
|
3 |
|
foreach ($path as $i => $subSelector) { |
139
|
3 |
|
if (is_array($selection)) { |
140
|
3 |
|
if (!isset($selection[$subSelector])) { |
141
|
3 |
|
$selection[$subSelector] = []; |
142
|
|
|
} |
143
|
1 |
|
} elseif ($selection instanceof Schema) { |
144
|
1 |
|
$selection->setField(array_slice($path, $i), $value); |
145
|
1 |
|
return $this; |
146
|
|
|
} else { |
147
|
|
|
$selection = [$subSelector => []]; |
148
|
|
|
} |
149
|
3 |
|
$selection = &$selection[$subSelector]; |
150
|
|
|
} |
151
|
|
|
|
152
|
3 |
|
$selection = $value; |
153
|
3 |
|
return $this; |
154
|
|
|
} |
155
|
|
|
|
156
|
|
|
/** |
157
|
|
|
* Get the ID for the schema. |
158
|
|
|
* |
159
|
|
|
* @return string |
160
|
|
|
*/ |
161
|
3 |
|
public function getID(): string { |
162
|
3 |
|
return isset($this->schema['id']) ? $this->schema['id'] : ''; |
163
|
|
|
} |
164
|
|
|
|
165
|
|
|
/** |
166
|
|
|
* Set the ID for the schema. |
167
|
|
|
* |
168
|
|
|
* @param string $id The new ID. |
169
|
|
|
* @throws \InvalidArgumentException Throws an exception when the provided ID is not a string. |
170
|
|
|
* @return Schema |
171
|
|
|
*/ |
172
|
1 |
|
public function setID(string $id) { |
173
|
1 |
|
if (is_string($id)) { |
|
|
|
|
174
|
1 |
|
$this->schema['id'] = $id; |
175
|
|
|
} else { |
176
|
|
|
throw new \InvalidArgumentException("The ID is not a valid string.", 500); |
177
|
|
|
} |
178
|
|
|
|
179
|
1 |
|
return $this; |
180
|
|
|
} |
181
|
|
|
|
182
|
|
|
/** |
183
|
|
|
* Return the validation flags. |
184
|
|
|
* |
185
|
|
|
* @return int Returns a bitwise combination of flags. |
186
|
|
|
*/ |
187
|
1 |
|
public function getFlags(): int { |
188
|
1 |
|
return $this->flags; |
189
|
|
|
} |
190
|
|
|
|
191
|
|
|
/** |
192
|
|
|
* Set the validation flags. |
193
|
|
|
* |
194
|
|
|
* @param int $flags One or more of the **Schema::FLAG_*** constants. |
195
|
|
|
* @return Schema Returns the current instance for fluent calls. |
196
|
|
|
*/ |
197
|
7 |
|
public function setFlags(int $flags) { |
198
|
7 |
|
if (!is_int($flags)) { |
|
|
|
|
199
|
|
|
throw new \InvalidArgumentException('Invalid flags.', 500); |
200
|
|
|
} |
201
|
7 |
|
$this->flags = $flags; |
202
|
|
|
|
203
|
7 |
|
return $this; |
204
|
|
|
} |
205
|
|
|
|
206
|
|
|
/** |
207
|
|
|
* Whether or not the schema has a flag (or combination of flags). |
208
|
|
|
* |
209
|
|
|
* @param int $flag One or more of the **Schema::VALIDATE_*** constants. |
210
|
|
|
* @return bool Returns **true** if all of the flags are set or **false** otherwise. |
211
|
|
|
*/ |
212
|
12 |
|
public function hasFlag(int $flag): bool { |
213
|
12 |
|
return ($this->flags & $flag) === $flag; |
214
|
|
|
} |
215
|
|
|
|
216
|
|
|
/** |
217
|
|
|
* Set a flag. |
218
|
|
|
* |
219
|
|
|
* @param int $flag One or more of the **Schema::VALIDATE_*** constants. |
220
|
|
|
* @param bool $value Either true or false. |
221
|
|
|
* @return $this |
222
|
|
|
*/ |
223
|
1 |
|
public function setFlag(int $flag, bool $value) { |
224
|
1 |
|
if ($value) { |
225
|
1 |
|
$this->flags = $this->flags | $flag; |
226
|
|
|
} else { |
227
|
1 |
|
$this->flags = $this->flags & ~$flag; |
228
|
|
|
} |
229
|
1 |
|
return $this; |
230
|
|
|
} |
231
|
|
|
|
232
|
|
|
/** |
233
|
|
|
* Merge a schema with this one. |
234
|
|
|
* |
235
|
|
|
* @param Schema $schema A scheme instance. Its parameters will be merged into the current instance. |
236
|
|
|
* @return $this |
237
|
|
|
*/ |
238
|
4 |
|
public function merge(Schema $schema) { |
239
|
4 |
|
$this->mergeInternal($this->schema, $schema->getSchemaArray(), true, true); |
240
|
4 |
|
return $this; |
241
|
|
|
} |
242
|
|
|
|
243
|
|
|
/** |
244
|
|
|
* Add another schema to this one. |
245
|
|
|
* |
246
|
|
|
* Adding schemas together is analogous to array addition. When you add a schema it will only add missing information. |
247
|
|
|
* |
248
|
|
|
* @param Schema $schema The schema to add. |
249
|
|
|
* @param bool $addProperties Whether to add properties that don't exist in this schema. |
250
|
|
|
* @return $this |
251
|
|
|
*/ |
252
|
4 |
|
public function add(Schema $schema, $addProperties = false) { |
253
|
4 |
|
$this->mergeInternal($this->schema, $schema->getSchemaArray(), false, $addProperties); |
254
|
4 |
|
return $this; |
255
|
|
|
} |
256
|
|
|
|
257
|
|
|
/** |
258
|
|
|
* The internal implementation of schema merging. |
259
|
|
|
* |
260
|
|
|
* @param array &$target The target of the merge. |
261
|
|
|
* @param array $source The source of the merge. |
262
|
|
|
* @param bool $overwrite Whether or not to replace values. |
263
|
|
|
* @param bool $addProperties Whether or not to add object properties to the target. |
264
|
|
|
* @return array |
265
|
|
|
*/ |
266
|
7 |
|
private function mergeInternal(array &$target, array $source, $overwrite = true, $addProperties = true) { |
267
|
|
|
// We need to do a fix for required properties here. |
268
|
7 |
|
if (isset($target['properties']) && !empty($source['required'])) { |
269
|
5 |
|
$required = isset($target['required']) ? $target['required'] : []; |
270
|
|
|
|
271
|
5 |
|
if (isset($source['required']) && $addProperties) { |
272
|
4 |
|
$newProperties = array_diff(array_keys($source['properties']), array_keys($target['properties'])); |
273
|
4 |
|
$newRequired = array_intersect($source['required'], $newProperties); |
274
|
|
|
|
275
|
4 |
|
$required = array_merge($required, $newRequired); |
276
|
|
|
} |
277
|
|
|
} |
278
|
|
|
|
279
|
|
|
|
280
|
7 |
|
foreach ($source as $key => $val) { |
281
|
7 |
|
if (is_array($val) && array_key_exists($key, $target) && is_array($target[$key])) { |
282
|
7 |
|
if ($key === 'properties' && !$addProperties) { |
283
|
|
|
// We just want to merge the properties that exist in the destination. |
284
|
2 |
|
foreach ($val as $name => $prop) { |
285
|
2 |
|
if (isset($target[$key][$name])) { |
286
|
2 |
|
$targetProp = &$target[$key][$name]; |
287
|
|
|
|
288
|
2 |
|
if (is_array($targetProp) && is_array($prop)) { |
289
|
2 |
|
$this->mergeInternal($targetProp, $prop, $overwrite, $addProperties); |
290
|
1 |
|
} elseif (is_array($targetProp) && $prop instanceof Schema) { |
291
|
|
|
$this->mergeInternal($targetProp, $prop->getSchemaArray(), $overwrite, $addProperties); |
292
|
1 |
|
} elseif ($overwrite) { |
293
|
2 |
|
$targetProp = $prop; |
294
|
|
|
} |
295
|
|
|
} |
296
|
|
|
} |
297
|
7 |
|
} elseif (isset($val[0]) || isset($target[$key][0])) { |
298
|
5 |
|
if ($overwrite) { |
299
|
|
|
// This is a numeric array, so just do a merge. |
300
|
3 |
|
$merged = array_merge($target[$key], $val); |
301
|
3 |
|
if (is_string($merged[0])) { |
302
|
3 |
|
$merged = array_keys(array_flip($merged)); |
303
|
|
|
} |
304
|
5 |
|
$target[$key] = $merged; |
305
|
|
|
} |
306
|
|
|
} else { |
307
|
7 |
|
$target[$key] = $this->mergeInternal($target[$key], $val, $overwrite, $addProperties); |
308
|
|
|
} |
309
|
7 |
|
} elseif (!$overwrite && array_key_exists($key, $target) && !is_array($val)) { |
310
|
|
|
// Do nothing, we aren't replacing. |
311
|
|
|
} else { |
312
|
7 |
|
$target[$key] = $val; |
313
|
|
|
} |
314
|
|
|
} |
315
|
|
|
|
316
|
7 |
|
if (isset($required)) { |
317
|
5 |
|
if (empty($required)) { |
318
|
1 |
|
unset($target['required']); |
319
|
|
|
} else { |
320
|
5 |
|
$target['required'] = $required; |
321
|
|
|
} |
322
|
|
|
} |
323
|
|
|
|
324
|
7 |
|
return $target; |
325
|
|
|
} |
326
|
|
|
|
327
|
|
|
// public function overlay(Schema $schema ) |
328
|
|
|
|
329
|
|
|
/** |
330
|
|
|
* Returns the internal schema array. |
331
|
|
|
* |
332
|
|
|
* @return array |
333
|
|
|
* @see Schema::jsonSerialize() |
334
|
|
|
*/ |
335
|
17 |
|
public function getSchemaArray(): array { |
336
|
17 |
|
return $this->schema; |
337
|
|
|
} |
338
|
|
|
|
339
|
|
|
/** |
340
|
|
|
* Parse a short schema and return the associated schema. |
341
|
|
|
* |
342
|
|
|
* @param array $arr The schema array. |
343
|
|
|
* @param mixed[] $args Constructor arguments for the schema instance. |
344
|
|
|
* @return static Returns a new schema. |
345
|
|
|
*/ |
346
|
173 |
|
public static function parse(array $arr, ...$args) { |
347
|
173 |
|
$schema = new static([], ...$args); |
|
|
|
|
348
|
173 |
|
$schema->schema = $schema->parseInternal($arr); |
349
|
172 |
|
return $schema; |
350
|
|
|
} |
351
|
|
|
|
352
|
|
|
/** |
353
|
|
|
* Parse a schema in short form into a full schema array. |
354
|
|
|
* |
355
|
|
|
* @param array $arr The array to parse into a schema. |
356
|
|
|
* @return array The full schema array. |
357
|
|
|
* @throws \InvalidArgumentException Throws an exception when an item in the schema is invalid. |
358
|
|
|
*/ |
359
|
173 |
|
protected function parseInternal(array $arr): array { |
360
|
173 |
|
if (empty($arr)) { |
361
|
|
|
// An empty schema validates to anything. |
362
|
6 |
|
return []; |
363
|
168 |
|
} elseif (isset($arr['type'])) { |
364
|
|
|
// This is a long form schema and can be parsed as the root. |
365
|
|
|
return $this->parseNode($arr); |
|
|
|
|
366
|
|
|
} else { |
367
|
|
|
// Check for a root schema. |
368
|
168 |
|
$value = reset($arr); |
369
|
168 |
|
$key = key($arr); |
370
|
168 |
|
if (is_int($key)) { |
371
|
105 |
|
$key = $value; |
372
|
105 |
|
$value = null; |
373
|
|
|
} |
374
|
168 |
|
list ($name, $param) = $this->parseShortParam($key, $value); |
375
|
167 |
|
if (empty($name)) { |
376
|
62 |
|
return $this->parseNode($param, $value); |
|
|
|
|
377
|
|
|
} |
378
|
|
|
} |
379
|
|
|
|
380
|
|
|
// If we are here then this is n object schema. |
381
|
108 |
|
list($properties, $required) = $this->parseProperties($arr); |
382
|
|
|
|
383
|
|
|
$result = [ |
384
|
108 |
|
'type' => 'object', |
385
|
108 |
|
'properties' => $properties, |
386
|
108 |
|
'required' => $required |
387
|
|
|
]; |
388
|
|
|
|
389
|
108 |
|
return array_filter($result); |
390
|
|
|
} |
391
|
|
|
|
392
|
|
|
/** |
393
|
|
|
* Parse a schema node. |
394
|
|
|
* |
395
|
|
|
* @param array $node The node to parse. |
396
|
|
|
* @param mixed $value Additional information from the node. |
397
|
|
|
* @return array|\ArrayAccess Returns a JSON schema compatible node. |
398
|
|
|
*/ |
399
|
167 |
|
private function parseNode($node, $value = null) { |
400
|
167 |
|
if (is_array($value)) { |
401
|
59 |
|
if (is_array($node['type'])) { |
402
|
|
|
trigger_error('Schemas with multiple types is deprecated.', E_USER_DEPRECATED); |
403
|
|
|
} |
404
|
|
|
|
405
|
|
|
// The value describes a bit more about the schema. |
406
|
59 |
|
switch ($node['type']) { |
407
|
59 |
|
case 'array': |
408
|
11 |
|
if (isset($value['items'])) { |
409
|
|
|
// The value includes array schema information. |
410
|
4 |
|
$node = array_replace($node, $value); |
411
|
|
|
} else { |
412
|
7 |
|
$node['items'] = $this->parseInternal($value); |
413
|
|
|
} |
414
|
11 |
|
break; |
415
|
49 |
|
case 'object': |
416
|
|
|
// The value is a schema of the object. |
417
|
12 |
|
if (isset($value['properties'])) { |
418
|
|
|
list($node['properties']) = $this->parseProperties($value['properties']); |
419
|
|
|
} else { |
420
|
12 |
|
list($node['properties'], $required) = $this->parseProperties($value); |
421
|
12 |
|
if (!empty($required)) { |
422
|
12 |
|
$node['required'] = $required; |
423
|
|
|
} |
424
|
|
|
} |
425
|
12 |
|
break; |
426
|
|
|
default: |
427
|
37 |
|
$node = array_replace($node, $value); |
428
|
59 |
|
break; |
429
|
|
|
} |
430
|
128 |
|
} elseif (is_string($value)) { |
431
|
101 |
|
if ($node['type'] === 'array' && $arrType = $this->getType($value)) { |
432
|
6 |
|
$node['items'] = ['type' => $arrType]; |
433
|
97 |
|
} elseif (!empty($value)) { |
434
|
101 |
|
$node['description'] = $value; |
435
|
|
|
} |
436
|
32 |
|
} elseif ($value === null) { |
437
|
|
|
// Parse child elements. |
438
|
28 |
|
if ($node['type'] === 'array' && isset($node['items'])) { |
439
|
|
|
// The value includes array schema information. |
440
|
|
|
$node['items'] = $this->parseInternal($node['items']); |
441
|
28 |
|
} elseif ($node['type'] === 'object' && isset($node['properties'])) { |
442
|
|
|
list($node['properties']) = $this->parseProperties($node['properties']); |
443
|
|
|
|
444
|
|
|
} |
445
|
|
|
} |
446
|
|
|
|
447
|
167 |
|
if (is_array($node)) { |
448
|
166 |
|
if (!empty($node['allowNull'])) { |
449
|
1 |
|
$node['nullable'] = true; |
450
|
|
|
} |
451
|
166 |
|
unset($node['allowNull']); |
452
|
|
|
|
453
|
166 |
|
if ($node['type'] === null || $node['type'] === []) { |
454
|
4 |
|
unset($node['type']); |
455
|
|
|
} |
456
|
|
|
} |
457
|
|
|
|
458
|
167 |
|
return $node; |
459
|
|
|
} |
460
|
|
|
|
461
|
|
|
/** |
462
|
|
|
* Parse the schema for an object's properties. |
463
|
|
|
* |
464
|
|
|
* @param array $arr An object property schema. |
465
|
|
|
* @return array Returns a schema array suitable to be placed in the **properties** key of a schema. |
466
|
|
|
*/ |
467
|
108 |
|
private function parseProperties(array $arr): array { |
468
|
108 |
|
$properties = []; |
469
|
108 |
|
$requiredProperties = []; |
470
|
108 |
|
foreach ($arr as $key => $value) { |
471
|
|
|
// Fix a schema specified as just a value. |
472
|
108 |
|
if (is_int($key)) { |
473
|
81 |
|
if (is_string($value)) { |
474
|
81 |
|
$key = $value; |
475
|
81 |
|
$value = ''; |
476
|
|
|
} else { |
477
|
|
|
throw new \InvalidArgumentException("Schema at position $key is not a valid parameter.", 500); |
478
|
|
|
} |
479
|
|
|
} |
480
|
|
|
|
481
|
|
|
// The parameter is defined in the key. |
482
|
108 |
|
list($name, $param, $required) = $this->parseShortParam($key, $value); |
|
|
|
|
483
|
|
|
|
484
|
108 |
|
$node = $this->parseNode($param, $value); |
485
|
|
|
|
486
|
108 |
|
$properties[$name] = $node; |
487
|
108 |
|
if ($required) { |
488
|
108 |
|
$requiredProperties[] = $name; |
489
|
|
|
} |
490
|
|
|
} |
491
|
108 |
|
return [$properties, $requiredProperties]; |
492
|
|
|
} |
493
|
|
|
|
494
|
|
|
/** |
495
|
|
|
* Parse a short parameter string into a full array parameter. |
496
|
|
|
* |
497
|
|
|
* @param string $key The short parameter string to parse. |
498
|
|
|
* @param array $value An array of other information that might help resolve ambiguity. |
499
|
|
|
* @return array Returns an array in the form `[string name, array param, bool required]`. |
500
|
|
|
* @throws \InvalidArgumentException Throws an exception if the short param is not in the correct format. |
501
|
|
|
*/ |
502
|
168 |
|
public function parseShortParam(string $key, $value = []): array { |
503
|
|
|
// Is the parameter optional? |
504
|
168 |
|
if (substr($key, -1) === '?') { |
505
|
70 |
|
$required = false; |
506
|
70 |
|
$key = substr($key, 0, -1); |
507
|
|
|
} else { |
508
|
120 |
|
$required = true; |
509
|
|
|
} |
510
|
|
|
|
511
|
|
|
// Check for a type. |
512
|
168 |
|
$parts = explode(':', $key); |
513
|
168 |
|
$name = $parts[0]; |
514
|
168 |
|
$types = []; |
515
|
|
|
|
516
|
168 |
|
if (!empty($parts[1])) { |
517
|
163 |
|
$shortTypes = explode('|', $parts[1]); |
518
|
163 |
|
foreach ($shortTypes as $alias) { |
519
|
163 |
|
$found = $this->getType($alias); |
520
|
163 |
|
if ($found === null) { |
521
|
|
|
throw new \InvalidArgumentException("Unknown type '$alias'", 500); |
522
|
163 |
|
} elseif ($found === 'null') { |
523
|
11 |
|
$nullable = true; |
524
|
|
|
} else { |
525
|
163 |
|
$types[] = $found; |
526
|
|
|
} |
527
|
|
|
} |
528
|
|
|
} |
529
|
|
|
|
530
|
168 |
|
if ($value instanceof Schema) { |
|
|
|
|
531
|
5 |
|
if (count($types) === 1 && $types[0] === 'array') { |
532
|
1 |
|
$param = ['type' => $types[0], 'items' => $value]; |
533
|
|
|
} else { |
534
|
5 |
|
$param = $value; |
535
|
|
|
} |
536
|
167 |
|
} elseif (isset($value['type'])) { |
537
|
3 |
|
$param = $value; |
538
|
|
|
|
539
|
3 |
|
if (!empty($types) && $types !== (array)$param['type']) { |
540
|
|
|
$typesStr = implode('|', $types); |
541
|
|
|
$paramTypesStr = implode('|', (array)$param['type']); |
542
|
|
|
|
543
|
3 |
|
throw new \InvalidArgumentException("Type mismatch between $typesStr and {$paramTypesStr} for field $name.", 500); |
544
|
|
|
} |
545
|
|
|
} else { |
546
|
164 |
|
if (empty($types) && !empty($parts[1])) { |
547
|
|
|
throw new \InvalidArgumentException("Invalid type {$parts[1]} for field $name.", 500); |
548
|
|
|
} |
549
|
164 |
|
if (empty($types)) { |
550
|
4 |
|
$param = ['type' => null]; |
551
|
|
|
} else { |
552
|
163 |
|
$param = ['type' => count($types) === 1 ? $types[0] : $types]; |
553
|
|
|
} |
554
|
|
|
|
555
|
|
|
// Parsed required strings have a minimum length of 1. |
556
|
164 |
|
if (in_array('string', $types) && !empty($name) && $required && (!isset($value['default']) || $value['default'] !== '')) { |
557
|
40 |
|
$param['minLength'] = 1; |
558
|
|
|
} |
559
|
|
|
} |
560
|
|
|
|
561
|
168 |
|
if (!empty($nullable)) { |
562
|
11 |
|
$param['nullable'] = true; |
563
|
|
|
} |
564
|
|
|
|
565
|
168 |
|
if (is_array($param['type'])) { |
566
|
1 |
|
trigger_error('Schemas with multiple types is deprecated.', E_USER_DEPRECATED); |
567
|
|
|
} |
568
|
|
|
|
569
|
167 |
|
return [$name, $param, $required]; |
570
|
|
|
} |
571
|
|
|
|
572
|
|
|
/** |
573
|
|
|
* Add a custom filter to change data before validation. |
574
|
|
|
* |
575
|
|
|
* @param string $fieldname The name of the field to filter, if any. |
576
|
|
|
* |
577
|
|
|
* If you are adding a filter to a deeply nested field then separate the path with dots. |
578
|
|
|
* @param callable $callback The callback to filter the field. |
579
|
|
|
* @return $this |
580
|
|
|
*/ |
581
|
1 |
|
public function addFilter(string $fieldname, callable $callback) { |
582
|
1 |
|
$this->filters[$fieldname][] = $callback; |
583
|
1 |
|
return $this; |
584
|
|
|
} |
585
|
|
|
|
586
|
|
|
/** |
587
|
|
|
* Add a custom validator to to validate the schema. |
588
|
|
|
* |
589
|
|
|
* @param string $fieldname The name of the field to validate, if any. |
590
|
|
|
* |
591
|
|
|
* If you are adding a validator to a deeply nested field then separate the path with dots. |
592
|
|
|
* @param callable $callback The callback to validate with. |
593
|
|
|
* @return Schema Returns `$this` for fluent calls. |
594
|
|
|
*/ |
595
|
4 |
|
public function addValidator(string $fieldname, callable $callback) { |
596
|
4 |
|
$this->validators[$fieldname][] = $callback; |
597
|
4 |
|
return $this; |
598
|
|
|
} |
599
|
|
|
|
600
|
|
|
/** |
601
|
|
|
* Require one of a given set of fields in the schema. |
602
|
|
|
* |
603
|
|
|
* @param array $required The field names to require. |
604
|
|
|
* @param string $fieldname The name of the field to attach to. |
605
|
|
|
* @param int $count The count of required items. |
606
|
|
|
* @return Schema Returns `$this` for fluent calls. |
607
|
|
|
*/ |
608
|
3 |
|
public function requireOneOf(array $required, string $fieldname = '', int $count = 1) { |
609
|
3 |
|
$result = $this->addValidator( |
610
|
3 |
|
$fieldname, |
611
|
3 |
|
function ($data, ValidationField $field) use ($required, $count) { |
612
|
|
|
// This validator does not apply to sparse validation. |
613
|
3 |
|
if ($field->isSparse()) { |
614
|
1 |
|
return true; |
615
|
|
|
} |
616
|
|
|
|
617
|
2 |
|
$hasCount = 0; |
618
|
2 |
|
$flattened = []; |
619
|
|
|
|
620
|
2 |
|
foreach ($required as $name) { |
621
|
2 |
|
$flattened = array_merge($flattened, (array)$name); |
622
|
|
|
|
623
|
2 |
|
if (is_array($name)) { |
624
|
|
|
// This is an array of required names. They all must match. |
625
|
1 |
|
$hasCountInner = 0; |
626
|
1 |
|
foreach ($name as $nameInner) { |
627
|
1 |
|
if (array_key_exists($nameInner, $data)) { |
628
|
1 |
|
$hasCountInner++; |
629
|
|
|
} else { |
630
|
1 |
|
break; |
631
|
|
|
} |
632
|
|
|
} |
633
|
1 |
|
if ($hasCountInner >= count($name)) { |
634
|
1 |
|
$hasCount++; |
635
|
|
|
} |
636
|
2 |
|
} elseif (array_key_exists($name, $data)) { |
637
|
1 |
|
$hasCount++; |
638
|
|
|
} |
639
|
|
|
|
640
|
2 |
|
if ($hasCount >= $count) { |
641
|
2 |
|
return true; |
642
|
|
|
} |
643
|
|
|
} |
644
|
|
|
|
645
|
2 |
|
if ($count === 1) { |
646
|
1 |
|
$message = 'One of {required} are required.'; |
647
|
|
|
} else { |
648
|
1 |
|
$message = '{count} of {required} are required.'; |
649
|
|
|
} |
650
|
|
|
|
651
|
2 |
|
$field->addError('missingField', [ |
652
|
2 |
|
'messageCode' => $message, |
653
|
2 |
|
'required' => $required, |
654
|
2 |
|
'count' => $count |
655
|
|
|
]); |
656
|
2 |
|
return false; |
657
|
3 |
|
} |
658
|
|
|
); |
659
|
|
|
|
660
|
3 |
|
return $result; |
661
|
|
|
} |
662
|
|
|
|
663
|
|
|
/** |
664
|
|
|
* Validate data against the schema. |
665
|
|
|
* |
666
|
|
|
* @param mixed $data The data to validate. |
667
|
|
|
* @param bool $sparse Whether or not this is a sparse validation. |
668
|
|
|
* @return mixed Returns a cleaned version of the data. |
669
|
|
|
* @throws ValidationException Throws an exception when the data does not validate against the schema. |
670
|
|
|
*/ |
671
|
173 |
|
public function validate($data, $sparse = false) { |
672
|
173 |
|
$field = new ValidationField($this->createValidation(), $this->schema, '', $sparse); |
673
|
|
|
|
674
|
173 |
|
$clean = $this->validateField($data, $field, $sparse); |
675
|
|
|
|
676
|
171 |
|
if (Invalid::isInvalid($clean) && $field->isValid()) { |
677
|
|
|
// This really shouldn't happen, but we want to protect against seeing the invalid object. |
678
|
|
|
$field->addError('invalid', ['messageCode' => '{field} is invalid.', 'status' => 422]); |
679
|
|
|
} |
680
|
|
|
|
681
|
171 |
|
if (!$field->getValidation()->isValid()) { |
682
|
60 |
|
throw new ValidationException($field->getValidation()); |
683
|
|
|
} |
684
|
|
|
|
685
|
124 |
|
return $clean; |
686
|
|
|
} |
687
|
|
|
|
688
|
|
|
/** |
689
|
|
|
* Validate data against the schema and return the result. |
690
|
|
|
* |
691
|
|
|
* @param mixed $data The data to validate. |
692
|
|
|
* @param bool $sparse Whether or not to do a sparse validation. |
693
|
|
|
* @return bool Returns true if the data is valid. False otherwise. |
694
|
|
|
*/ |
695
|
35 |
|
public function isValid($data, $sparse = false) { |
696
|
|
|
try { |
697
|
35 |
|
$this->validate($data, $sparse); |
698
|
25 |
|
return true; |
699
|
18 |
|
} catch (ValidationException $ex) { |
700
|
18 |
|
return false; |
701
|
|
|
} |
702
|
|
|
} |
703
|
|
|
|
704
|
|
|
/** |
705
|
|
|
* Validate a field. |
706
|
|
|
* |
707
|
|
|
* @param mixed $value The value to validate. |
708
|
|
|
* @param ValidationField $field A validation object to add errors to. |
709
|
|
|
* @param bool $sparse Whether or not this is a sparse validation. |
710
|
|
|
* @return mixed|Invalid Returns a clean version of the value with all extra fields stripped out or invalid if the value |
711
|
|
|
* is completely invalid. |
712
|
|
|
*/ |
713
|
173 |
|
protected function validateField($value, ValidationField $field, $sparse = false) { |
714
|
173 |
|
$result = $value = $this->filterField($value, $field); |
|
|
|
|
715
|
|
|
|
716
|
173 |
|
if ($field->getField() instanceof Schema) { |
717
|
|
|
try { |
718
|
5 |
|
$result = $field->getField()->validate($value, $sparse); |
719
|
2 |
|
} catch (ValidationException $ex) { |
720
|
|
|
// The validation failed, so merge the validations together. |
721
|
5 |
|
$field->getValidation()->merge($ex->getValidation(), $field->getName()); |
722
|
|
|
} |
723
|
173 |
|
} elseif (($value === null || ($value === '' && !$field->hasType('string'))) && ($field->val('nullable') || $field->hasType('null'))) { |
|
|
|
|
724
|
13 |
|
$result = null; |
725
|
|
|
} else { |
726
|
|
|
// Validate the field's type. |
727
|
173 |
|
$type = $field->getType(); |
728
|
173 |
|
if (is_array($type)) { |
729
|
30 |
|
$result = $this->validateMultipleTypes($value, $type, $field, $sparse); |
730
|
|
|
} else { |
731
|
151 |
|
$result = $this->validateSingleType($value, $type, $field, $sparse); |
732
|
|
|
} |
733
|
173 |
|
if (Invalid::isValid($result)) { |
734
|
171 |
|
$result = $this->validateEnum($result, $field); |
735
|
|
|
} |
736
|
|
|
} |
737
|
|
|
|
738
|
|
|
// Validate a custom field validator. |
739
|
173 |
|
if (Invalid::isValid($result)) { |
740
|
171 |
|
$this->callValidators($result, $field); |
741
|
|
|
} |
742
|
|
|
|
743
|
173 |
|
return $result; |
744
|
|
|
} |
745
|
|
|
|
746
|
|
|
/** |
747
|
|
|
* Validate an array. |
748
|
|
|
* |
749
|
|
|
* @param mixed $value The value to validate. |
750
|
|
|
* @param ValidationField $field The validation results to add. |
751
|
|
|
* @param bool $sparse Whether or not this is a sparse validation. |
752
|
|
|
* @return array|Invalid Returns an array or invalid if validation fails. |
753
|
|
|
*/ |
754
|
29 |
|
protected function validateArray($value, ValidationField $field, $sparse = false) { |
755
|
29 |
|
if ((!is_array($value) || (count($value) > 0 && !array_key_exists(0, $value))) && !$value instanceof \Traversable) { |
|
|
|
|
756
|
6 |
|
$field->addTypeError('array'); |
757
|
6 |
|
return Invalid::value(); |
758
|
|
|
} else { |
759
|
24 |
|
if ((null !== $minItems = $field->val('minItems')) && count($value) < $minItems) { |
|
|
|
|
760
|
1 |
|
$field->addError( |
761
|
1 |
|
'minItems', |
762
|
|
|
[ |
763
|
1 |
|
'messageCode' => '{field} must contain at least {minItems} {minItems,plural,item}.', |
764
|
1 |
|
'minItems' => $minItems, |
765
|
1 |
|
'status' => 422 |
766
|
|
|
] |
767
|
|
|
); |
768
|
|
|
} |
769
|
24 |
|
if ((null !== $maxItems = $field->val('maxItems')) && count($value) > $maxItems) { |
770
|
1 |
|
$field->addError( |
771
|
1 |
|
'maxItems', |
772
|
|
|
[ |
773
|
1 |
|
'messageCode' => '{field} must contain no more than {maxItems} {maxItems,plural,item}.', |
774
|
1 |
|
'maxItems' => $maxItems, |
775
|
1 |
|
'status' => 422 |
776
|
|
|
] |
777
|
|
|
); |
778
|
|
|
} |
779
|
|
|
|
780
|
24 |
|
if ($field->val('items') !== null) { |
781
|
19 |
|
$result = []; |
782
|
|
|
|
783
|
|
|
// Validate each of the types. |
784
|
19 |
|
$itemValidation = new ValidationField( |
785
|
19 |
|
$field->getValidation(), |
786
|
19 |
|
$field->val('items'), |
787
|
19 |
|
'', |
788
|
19 |
|
$sparse |
789
|
|
|
); |
790
|
|
|
|
791
|
19 |
|
$count = 0; |
792
|
19 |
|
foreach ($value as $i => $item) { |
793
|
19 |
|
$itemValidation->setName($field->getName()."[{$i}]"); |
794
|
19 |
|
$validItem = $this->validateField($item, $itemValidation, $sparse); |
795
|
19 |
|
if (Invalid::isValid($validItem)) { |
796
|
19 |
|
$result[] = $validItem; |
797
|
|
|
} |
798
|
19 |
|
$count++; |
799
|
|
|
} |
800
|
|
|
|
801
|
19 |
|
return empty($result) && $count > 0 ? Invalid::value() : $result; |
802
|
|
|
} else { |
803
|
|
|
// Cast the items into a proper numeric array. |
804
|
5 |
|
$result = is_array($value) ? array_values($value) : iterator_to_array($value); |
805
|
5 |
|
return $result; |
806
|
|
|
} |
807
|
|
|
} |
808
|
|
|
} |
809
|
|
|
|
810
|
|
|
/** |
811
|
|
|
* Validate a boolean value. |
812
|
|
|
* |
813
|
|
|
* @param mixed $value The value to validate. |
814
|
|
|
* @param ValidationField $field The validation results to add. |
815
|
|
|
* @return bool|Invalid Returns the cleaned value or invalid if validation fails. |
816
|
|
|
*/ |
817
|
30 |
|
protected function validateBoolean($value, ValidationField $field) { |
818
|
30 |
|
$value = $value === null ? $value : filter_var($value, FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE); |
819
|
30 |
|
if ($value === null) { |
820
|
4 |
|
$field->addTypeError('boolean'); |
821
|
4 |
|
return Invalid::value(); |
822
|
|
|
} |
823
|
|
|
|
824
|
27 |
|
return $value; |
825
|
|
|
} |
826
|
|
|
|
827
|
|
|
/** |
828
|
|
|
* Validate a date time. |
829
|
|
|
* |
830
|
|
|
* @param mixed $value The value to validate. |
831
|
|
|
* @param ValidationField $field The validation results to add. |
832
|
|
|
* @return \DateTimeInterface|Invalid Returns the cleaned value or **null** if it isn't valid. |
833
|
|
|
*/ |
834
|
14 |
|
protected function validateDatetime($value, ValidationField $field) { |
835
|
14 |
|
if ($value instanceof \DateTimeInterface) { |
836
|
|
|
// do nothing, we're good |
837
|
11 |
|
} elseif (is_string($value) && $value !== '' && !is_numeric($value)) { |
838
|
|
|
try { |
839
|
7 |
|
$dt = new \DateTimeImmutable($value); |
840
|
6 |
|
if ($dt) { |
|
|
|
|
841
|
6 |
|
$value = $dt; |
842
|
|
|
} else { |
843
|
6 |
|
$value = null; |
844
|
|
|
} |
845
|
1 |
|
} catch (\Throwable $ex) { |
846
|
7 |
|
$value = Invalid::value(); |
847
|
|
|
} |
848
|
4 |
|
} elseif (is_int($value) && $value > 0) { |
849
|
|
|
try { |
850
|
1 |
|
$value = new \DateTimeImmutable('@'.(string)round($value)); |
851
|
|
|
} catch (\Throwable $ex) { |
852
|
1 |
|
$value = Invalid::value(); |
853
|
|
|
} |
854
|
|
|
} else { |
855
|
3 |
|
$value = Invalid::value(); |
856
|
|
|
} |
857
|
|
|
|
858
|
14 |
|
if (Invalid::isInvalid($value)) { |
859
|
4 |
|
$field->addTypeError('datetime'); |
860
|
|
|
} |
861
|
14 |
|
return $value; |
862
|
|
|
} |
863
|
|
|
|
864
|
|
|
/** |
865
|
|
|
* Validate a float. |
866
|
|
|
* |
867
|
|
|
* @param mixed $value The value to validate. |
868
|
|
|
* @param ValidationField $field The validation results to add. |
869
|
|
|
* @return float|Invalid Returns a number or **null** if validation fails. |
870
|
|
|
*/ |
871
|
13 |
|
protected function validateNumber($value, ValidationField $field) { |
872
|
13 |
|
$result = filter_var($value, FILTER_VALIDATE_FLOAT); |
873
|
13 |
|
if ($result === false) { |
874
|
4 |
|
$field->addTypeError('number'); |
875
|
4 |
|
return Invalid::value(); |
876
|
|
|
} |
877
|
9 |
|
return $result; |
878
|
|
|
} |
879
|
|
|
/** |
880
|
|
|
* Validate and integer. |
881
|
|
|
* |
882
|
|
|
* @param mixed $value The value to validate. |
883
|
|
|
* @param ValidationField $field The validation results to add. |
884
|
|
|
* @return int|Invalid Returns the cleaned value or **null** if validation fails. |
885
|
|
|
*/ |
886
|
38 |
|
protected function validateInteger($value, ValidationField $field) { |
887
|
38 |
|
$result = filter_var($value, FILTER_VALIDATE_INT); |
888
|
|
|
|
889
|
38 |
|
if ($result === false) { |
890
|
9 |
|
$field->addTypeError('integer'); |
891
|
9 |
|
return Invalid::value(); |
892
|
|
|
} |
893
|
33 |
|
return $result; |
894
|
|
|
} |
895
|
|
|
|
896
|
|
|
/** |
897
|
|
|
* Validate an object. |
898
|
|
|
* |
899
|
|
|
* @param mixed $value The value to validate. |
900
|
|
|
* @param ValidationField $field The validation results to add. |
901
|
|
|
* @param bool $sparse Whether or not this is a sparse validation. |
902
|
|
|
* @return object|Invalid Returns a clean object or **null** if validation fails. |
903
|
|
|
*/ |
904
|
99 |
|
protected function validateObject($value, ValidationField $field, $sparse = false) { |
905
|
99 |
|
if (!$this->isArray($value) || isset($value[0])) { |
906
|
6 |
|
$field->addTypeError('object'); |
907
|
6 |
|
return Invalid::value(); |
908
|
99 |
|
} elseif (is_array($field->val('properties'))) { |
909
|
|
|
// Validate the data against the internal schema. |
910
|
94 |
|
$value = $this->validateProperties($value, $field, $sparse); |
911
|
5 |
|
} elseif (!is_array($value)) { |
912
|
3 |
|
$value = $this->toObjectArray($value); |
913
|
|
|
} |
914
|
97 |
|
return $value; |
|
|
|
|
915
|
|
|
} |
916
|
|
|
|
917
|
|
|
/** |
918
|
|
|
* Validate data against the schema and return the result. |
919
|
|
|
* |
920
|
|
|
* @param array|\Traversable&\ArrayAccess $data The data to validate. |
921
|
|
|
* @param ValidationField $field This argument will be filled with the validation result. |
922
|
|
|
* @param bool $sparse Whether or not this is a sparse validation. |
923
|
|
|
* @return array|Invalid Returns a clean array with only the appropriate properties and the data coerced to proper types. |
924
|
|
|
* or invalid if there are no valid properties. |
925
|
|
|
*/ |
926
|
94 |
|
protected function validateProperties($data, ValidationField $field, $sparse = false) { |
927
|
94 |
|
$properties = $field->val('properties', []); |
928
|
94 |
|
$required = array_flip($field->val('required', [])); |
929
|
|
|
|
930
|
94 |
|
if (is_array($data)) { |
|
|
|
|
931
|
90 |
|
$keys = array_keys($data); |
932
|
90 |
|
$clean = []; |
933
|
|
|
} else { |
934
|
4 |
|
$keys = array_keys(iterator_to_array($data)); |
|
|
|
|
935
|
4 |
|
$class = get_class($data); |
936
|
4 |
|
$clean = new $class; |
937
|
|
|
|
938
|
4 |
|
if ($clean instanceof \ArrayObject && $data instanceof \ArrayObject) { |
939
|
3 |
|
$clean->setFlags($data->getFlags()); |
940
|
3 |
|
$clean->setIteratorClass($data->getIteratorClass()); |
941
|
|
|
} |
942
|
|
|
} |
943
|
94 |
|
$keys = array_combine(array_map('strtolower', $keys), $keys); |
944
|
|
|
|
945
|
94 |
|
$propertyField = new ValidationField($field->getValidation(), [], null, $sparse); |
946
|
|
|
|
947
|
|
|
// Loop through the schema fields and validate each one. |
948
|
94 |
|
foreach ($properties as $propertyName => $property) { |
949
|
|
|
$propertyField |
950
|
94 |
|
->setField($property) |
951
|
94 |
|
->setName(ltrim($field->getName().".$propertyName", '.')); |
952
|
|
|
|
953
|
94 |
|
$lName = strtolower($propertyName); |
954
|
94 |
|
$isRequired = isset($required[$propertyName]); |
955
|
|
|
|
956
|
|
|
// First check for required fields. |
957
|
94 |
|
if (!array_key_exists($lName, $keys)) { |
958
|
26 |
|
if ($sparse) { |
959
|
|
|
// Sparse validation can leave required fields out. |
960
|
25 |
|
} elseif ($propertyField->hasVal('default')) { |
961
|
2 |
|
$clean[$propertyName] = $propertyField->val('default'); |
962
|
23 |
|
} elseif ($isRequired) { |
963
|
26 |
|
$propertyField->addError('missingField', ['messageCode' => '{field} is required.']); |
964
|
|
|
} |
965
|
|
|
} else { |
966
|
83 |
|
$value = $data[$keys[$lName]]; |
967
|
|
|
|
968
|
83 |
|
if (in_array($value, [null, ''], true) && !$isRequired && !($propertyField->val('nullable') || $propertyField->hasType('null'))) { |
969
|
5 |
|
if ($propertyField->getType() !== 'string' || $value === null) { |
970
|
2 |
|
continue; |
971
|
|
|
} |
972
|
|
|
} |
973
|
|
|
|
974
|
81 |
|
$clean[$propertyName] = $this->validateField($value, $propertyField, $sparse); |
975
|
|
|
} |
976
|
|
|
|
977
|
92 |
|
unset($keys[$lName]); |
978
|
|
|
} |
979
|
|
|
|
980
|
|
|
// Look for extraneous properties. |
981
|
94 |
|
if (!empty($keys)) { |
982
|
11 |
|
if ($this->hasFlag(Schema::VALIDATE_EXTRA_PROPERTY_NOTICE)) { |
983
|
2 |
|
$msg = sprintf("%s has unexpected field(s): %s.", $field->getName() ?: 'value', implode(', ', $keys)); |
984
|
2 |
|
trigger_error($msg, E_USER_NOTICE); |
985
|
|
|
} |
986
|
|
|
|
987
|
9 |
|
if ($this->hasFlag(Schema::VALIDATE_EXTRA_PROPERTY_EXCEPTION)) { |
988
|
2 |
|
$field->addError('invalid', [ |
989
|
2 |
|
'messageCode' => '{field} has {extra,plural,an unexpected field,unexpected fields}: {extra}.', |
990
|
2 |
|
'extra' => array_values($keys), |
991
|
2 |
|
'status' => 422 |
992
|
|
|
]); |
993
|
|
|
} |
994
|
|
|
} |
995
|
|
|
|
996
|
92 |
|
return $clean; |
|
|
|
|
997
|
|
|
} |
998
|
|
|
|
999
|
|
|
/** |
1000
|
|
|
* Validate a string. |
1001
|
|
|
* |
1002
|
|
|
* @param mixed $value The value to validate. |
1003
|
|
|
* @param ValidationField $field The validation results to add. |
1004
|
|
|
* @return string|Invalid Returns the valid string or **null** if validation fails. |
1005
|
|
|
*/ |
1006
|
66 |
|
protected function validateString($value, ValidationField $field) { |
1007
|
66 |
|
if (is_string($value) || is_numeric($value)) { |
1008
|
64 |
|
$value = $result = (string)$value; |
1009
|
|
|
} else { |
1010
|
5 |
|
$field->addTypeError('string'); |
1011
|
5 |
|
return Invalid::value(); |
1012
|
|
|
} |
1013
|
|
|
|
1014
|
64 |
|
if (($minLength = $field->val('minLength', 0)) > 0 && mb_strlen($value) < $minLength) { |
1015
|
4 |
|
if (!empty($field->getName()) && $minLength === 1) { |
1016
|
2 |
|
$field->addError('missingField', ['messageCode' => '{field} is required.', 'status' => 422]); |
1017
|
|
|
} else { |
1018
|
2 |
|
$field->addError( |
1019
|
2 |
|
'minLength', |
1020
|
|
|
[ |
1021
|
2 |
|
'messageCode' => '{field} should be at least {minLength} {minLength,plural,character} long.', |
1022
|
2 |
|
'minLength' => $minLength, |
1023
|
2 |
|
'status' => 422 |
1024
|
|
|
] |
1025
|
|
|
); |
1026
|
|
|
} |
1027
|
|
|
} |
1028
|
64 |
|
if (($maxLength = $field->val('maxLength', 0)) > 0 && mb_strlen($value) > $maxLength) { |
1029
|
1 |
|
$field->addError( |
1030
|
1 |
|
'maxLength', |
1031
|
|
|
[ |
1032
|
1 |
|
'messageCode' => '{field} is {overflow} {overflow,plural,characters} too long.', |
1033
|
1 |
|
'maxLength' => $maxLength, |
1034
|
1 |
|
'overflow' => mb_strlen($value) - $maxLength, |
1035
|
1 |
|
'status' => 422 |
1036
|
|
|
] |
1037
|
|
|
); |
1038
|
|
|
} |
1039
|
64 |
|
if ($pattern = $field->val('pattern')) { |
1040
|
4 |
|
$regex = '`'.str_replace('`', preg_quote('`', '`'), $pattern).'`'; |
1041
|
|
|
|
1042
|
4 |
|
if (!preg_match($regex, $value)) { |
1043
|
2 |
|
$field->addError( |
1044
|
2 |
|
'invalid', |
1045
|
|
|
[ |
1046
|
2 |
|
'messageCode' => '{field} is in the incorrect format.', |
1047
|
|
|
'status' => 422 |
1048
|
|
|
] |
1049
|
|
|
); |
1050
|
|
|
} |
1051
|
|
|
} |
1052
|
64 |
|
if ($format = $field->val('format')) { |
1053
|
15 |
|
$type = $format; |
1054
|
|
|
switch ($format) { |
1055
|
15 |
|
case 'date-time': |
1056
|
4 |
|
$result = $this->validateDatetime($result, $field); |
1057
|
4 |
|
if ($result instanceof \DateTimeInterface) { |
1058
|
4 |
|
$result = $result->format(\DateTime::RFC3339); |
1059
|
|
|
} |
1060
|
4 |
|
break; |
1061
|
11 |
|
case 'email': |
1062
|
1 |
|
$result = filter_var($result, FILTER_VALIDATE_EMAIL); |
1063
|
1 |
|
break; |
1064
|
10 |
|
case 'ipv4': |
1065
|
1 |
|
$type = 'IPv4 address'; |
1066
|
1 |
|
$result = filter_var($result, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4); |
1067
|
1 |
|
break; |
1068
|
9 |
|
case 'ipv6': |
1069
|
1 |
|
$type = 'IPv6 address'; |
1070
|
1 |
|
$result = filter_var($result, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6); |
1071
|
1 |
|
break; |
1072
|
8 |
|
case 'ip': |
1073
|
1 |
|
$type = 'IP address'; |
1074
|
1 |
|
$result = filter_var($result, FILTER_VALIDATE_IP); |
1075
|
1 |
|
break; |
1076
|
7 |
|
case 'uri': |
1077
|
7 |
|
$type = 'URI'; |
1078
|
7 |
|
$result = filter_var($result, FILTER_VALIDATE_URL, FILTER_FLAG_HOST_REQUIRED | FILTER_FLAG_SCHEME_REQUIRED); |
1079
|
7 |
|
break; |
1080
|
|
|
default: |
1081
|
|
|
trigger_error("Unrecognized format '$format'.", E_USER_NOTICE); |
1082
|
|
|
} |
1083
|
15 |
|
if ($result === false) { |
1084
|
5 |
|
$field->addTypeError($type); |
1085
|
|
|
} |
1086
|
|
|
} |
1087
|
|
|
|
1088
|
64 |
|
if ($field->isValid()) { |
1089
|
56 |
|
return $result; |
1090
|
|
|
} else { |
1091
|
12 |
|
return Invalid::value(); |
1092
|
|
|
} |
1093
|
|
|
} |
1094
|
|
|
|
1095
|
|
|
/** |
1096
|
|
|
* Validate a unix timestamp. |
1097
|
|
|
* |
1098
|
|
|
* @param mixed $value The value to validate. |
1099
|
|
|
* @param ValidationField $field The field being validated. |
1100
|
|
|
* @return int|Invalid Returns a valid timestamp or invalid if the value doesn't validate. |
1101
|
|
|
*/ |
1102
|
8 |
|
protected function validateTimestamp($value, ValidationField $field) { |
1103
|
8 |
|
if (is_numeric($value) && $value > 0) { |
1104
|
3 |
|
$result = (int)$value; |
1105
|
5 |
|
} elseif (is_string($value) && $ts = strtotime($value)) { |
1106
|
1 |
|
$result = $ts; |
1107
|
|
|
} else { |
1108
|
4 |
|
$field->addTypeError('timestamp'); |
1109
|
4 |
|
$result = Invalid::value(); |
1110
|
|
|
} |
1111
|
8 |
|
return $result; |
1112
|
|
|
} |
1113
|
|
|
|
1114
|
|
|
/** |
1115
|
|
|
* Validate a null value. |
1116
|
|
|
* |
1117
|
|
|
* @param mixed $value The value to validate. |
1118
|
|
|
* @param ValidationField $field The error collector for the field. |
1119
|
|
|
* @return null|Invalid Returns **null** or invalid. |
1120
|
|
|
*/ |
1121
|
|
|
protected function validateNull($value, ValidationField $field) { |
1122
|
|
|
if ($value === null) { |
1123
|
|
|
return null; |
1124
|
|
|
} |
1125
|
|
|
$field->addError('invalid', ['messageCode' => '{field} should be null.', 'status' => 422]); |
1126
|
|
|
return Invalid::value(); |
1127
|
|
|
} |
1128
|
|
|
|
1129
|
|
|
/** |
1130
|
|
|
* Validate a value against an enum. |
1131
|
|
|
* |
1132
|
|
|
* @param mixed $value The value to test. |
1133
|
|
|
* @param ValidationField $field The validation object for adding errors. |
1134
|
|
|
* @return mixed|Invalid Returns the value if it is one of the enumerated values or invalid otherwise. |
1135
|
|
|
*/ |
1136
|
171 |
|
protected function validateEnum($value, ValidationField $field) { |
1137
|
171 |
|
$enum = $field->val('enum'); |
1138
|
171 |
|
if (empty($enum)) { |
1139
|
170 |
|
return $value; |
1140
|
|
|
} |
1141
|
|
|
|
1142
|
1 |
|
if (!in_array($value, $enum, true)) { |
1143
|
1 |
|
$field->addError( |
1144
|
1 |
|
'invalid', |
1145
|
|
|
[ |
1146
|
1 |
|
'messageCode' => '{field} must be one of: {enum}.', |
1147
|
1 |
|
'enum' => $enum, |
1148
|
1 |
|
'status' => 422 |
1149
|
|
|
] |
1150
|
|
|
); |
1151
|
1 |
|
return Invalid::value(); |
1152
|
|
|
} |
1153
|
1 |
|
return $value; |
1154
|
|
|
} |
1155
|
|
|
|
1156
|
|
|
/** |
1157
|
|
|
* Call all of the filters attached to a field. |
1158
|
|
|
* |
1159
|
|
|
* @param mixed $value The field value being filtered. |
1160
|
|
|
* @param ValidationField $field The validation object. |
1161
|
|
|
* @return mixed Returns the filtered value. If there are no filters for the field then the original value is returned. |
1162
|
|
|
*/ |
1163
|
173 |
|
protected function callFilters($value, ValidationField $field) { |
1164
|
|
|
// Strip array references in the name except for the last one. |
1165
|
173 |
|
$key = preg_replace(['`\[\d+\]$`', '`\[\d+\]`'], ['[]', ''], $field->getName()); |
1166
|
173 |
|
if (!empty($this->filters[$key])) { |
1167
|
1 |
|
foreach ($this->filters[$key] as $filter) { |
1168
|
1 |
|
$value = call_user_func($filter, $value, $field); |
1169
|
|
|
} |
1170
|
|
|
} |
1171
|
173 |
|
return $value; |
1172
|
|
|
} |
1173
|
|
|
|
1174
|
|
|
/** |
1175
|
|
|
* Call all of the validators attached to a field. |
1176
|
|
|
* |
1177
|
|
|
* @param mixed $value The field value being validated. |
1178
|
|
|
* @param ValidationField $field The validation object to add errors. |
1179
|
|
|
*/ |
1180
|
171 |
|
protected function callValidators($value, ValidationField $field) { |
1181
|
171 |
|
$valid = true; |
1182
|
|
|
|
1183
|
|
|
// Strip array references in the name except for the last one. |
1184
|
171 |
|
$key = preg_replace(['`\[\d+\]$`', '`\[\d+\]`'], ['[]', ''], $field->getName()); |
1185
|
171 |
|
if (!empty($this->validators[$key])) { |
1186
|
4 |
|
foreach ($this->validators[$key] as $validator) { |
1187
|
4 |
|
$r = call_user_func($validator, $value, $field); |
1188
|
|
|
|
1189
|
4 |
|
if ($r === false || Invalid::isInvalid($r)) { |
1190
|
4 |
|
$valid = false; |
1191
|
|
|
} |
1192
|
|
|
} |
1193
|
|
|
} |
1194
|
|
|
|
1195
|
|
|
// Add an error on the field if the validator hasn't done so. |
1196
|
171 |
|
if (!$valid && $field->isValid()) { |
1197
|
|
|
$field->addError('invalid', ['messageCode' => '{field} is invalid.', 'status' => 422]); |
1198
|
|
|
} |
1199
|
171 |
|
} |
1200
|
|
|
|
1201
|
|
|
/** |
1202
|
|
|
* Specify data which should be serialized to JSON. |
1203
|
|
|
* |
1204
|
|
|
* This method specifically returns data compatible with the JSON schema format. |
1205
|
|
|
* |
1206
|
|
|
* @return mixed Returns data which can be serialized by **json_encode()**, which is a value of any type other than a resource. |
1207
|
|
|
* @link http://php.net/manual/en/jsonserializable.jsonserialize.php |
1208
|
|
|
* @link http://json-schema.org/ |
1209
|
|
|
*/ |
1210
|
|
|
public function jsonSerialize() { |
1211
|
16 |
|
$fix = function ($schema) use (&$fix) { |
1212
|
16 |
|
if ($schema instanceof Schema) { |
1213
|
1 |
|
return $schema->jsonSerialize(); |
1214
|
|
|
} |
1215
|
|
|
|
1216
|
16 |
|
if (!empty($schema['type'])) { |
1217
|
15 |
|
$types = (array)$schema['type']; |
1218
|
|
|
|
1219
|
15 |
|
foreach ($types as $i => &$type) { |
1220
|
|
|
// Swap datetime and timestamp to other types with formats. |
1221
|
15 |
|
if ($type === 'datetime') { |
1222
|
5 |
|
$type = 'string'; |
1223
|
5 |
|
$schema['format'] = 'date-time'; |
1224
|
14 |
|
} elseif ($schema['type'] === 'timestamp') { |
1225
|
3 |
|
$type = 'integer'; |
1226
|
15 |
|
$schema['format'] = 'timestamp'; |
1227
|
|
|
} |
1228
|
|
|
} |
1229
|
15 |
|
$types = array_unique($types); |
1230
|
15 |
|
$schema['type'] = count($types) === 1 ? reset($types) : $types; |
1231
|
|
|
} |
1232
|
|
|
|
1233
|
16 |
|
if (!empty($schema['items'])) { |
1234
|
4 |
|
$schema['items'] = $fix($schema['items']); |
1235
|
|
|
} |
1236
|
16 |
|
if (!empty($schema['properties'])) { |
1237
|
11 |
|
$properties = []; |
1238
|
11 |
|
foreach ($schema['properties'] as $key => $property) { |
1239
|
11 |
|
$properties[$key] = $fix($property); |
1240
|
|
|
} |
1241
|
11 |
|
$schema['properties'] = $properties; |
1242
|
|
|
} |
1243
|
|
|
|
1244
|
16 |
|
return $schema; |
1245
|
16 |
|
}; |
1246
|
|
|
|
1247
|
16 |
|
$result = $fix($this->schema); |
1248
|
|
|
|
1249
|
16 |
|
return $result; |
1250
|
|
|
} |
1251
|
|
|
|
1252
|
|
|
/** |
1253
|
|
|
* Look up a type based on its alias. |
1254
|
|
|
* |
1255
|
|
|
* @param string $alias The type alias or type name to lookup. |
1256
|
|
|
* @return mixed |
1257
|
|
|
*/ |
1258
|
163 |
|
protected function getType($alias) { |
1259
|
163 |
|
if (isset(self::$types[$alias])) { |
1260
|
|
|
return $alias; |
1261
|
|
|
} |
1262
|
163 |
|
foreach (self::$types as $type => $aliases) { |
1263
|
163 |
|
if (in_array($alias, $aliases, true)) { |
1264
|
163 |
|
return $type; |
1265
|
|
|
} |
1266
|
|
|
} |
1267
|
9 |
|
return null; |
1268
|
|
|
} |
1269
|
|
|
|
1270
|
|
|
/** |
1271
|
|
|
* Get the class that's used to contain validation information. |
1272
|
|
|
* |
1273
|
|
|
* @return Validation|string Returns the validation class. |
1274
|
|
|
*/ |
1275
|
173 |
|
public function getValidationClass() { |
1276
|
173 |
|
return $this->validationClass; |
1277
|
|
|
} |
1278
|
|
|
|
1279
|
|
|
/** |
1280
|
|
|
* Set the class that's used to contain validation information. |
1281
|
|
|
* |
1282
|
|
|
* @param Validation|string $class Either the name of a class or a class that will be cloned. |
1283
|
|
|
* @return $this |
1284
|
|
|
*/ |
1285
|
1 |
|
public function setValidationClass($class) { |
1286
|
1 |
|
if (!is_a($class, Validation::class, true)) { |
1287
|
|
|
throw new \InvalidArgumentException("$class must be a subclass of ".Validation::class, 500); |
1288
|
|
|
} |
1289
|
|
|
|
1290
|
1 |
|
$this->validationClass = $class; |
1291
|
1 |
|
return $this; |
1292
|
|
|
} |
1293
|
|
|
|
1294
|
|
|
/** |
1295
|
|
|
* Create a new validation instance. |
1296
|
|
|
* |
1297
|
|
|
* @return Validation Returns a validation object. |
1298
|
|
|
*/ |
1299
|
173 |
|
protected function createValidation() { |
1300
|
173 |
|
$class = $this->getValidationClass(); |
1301
|
|
|
|
1302
|
173 |
|
if ($class instanceof Validation) { |
1303
|
1 |
|
$result = clone $class; |
1304
|
|
|
} else { |
1305
|
173 |
|
$result = new $class; |
1306
|
|
|
} |
1307
|
173 |
|
return $result; |
1308
|
|
|
} |
1309
|
|
|
|
1310
|
|
|
/** |
1311
|
|
|
* Check whether or not a value is an array or accessible like an array. |
1312
|
|
|
* |
1313
|
|
|
* @param mixed $value The value to check. |
1314
|
|
|
* @return bool Returns **true** if the value can be used like an array or **false** otherwise. |
1315
|
|
|
*/ |
1316
|
99 |
|
private function isArray($value) { |
1317
|
99 |
|
return is_array($value) || ($value instanceof \ArrayAccess && $value instanceof \Traversable); |
1318
|
|
|
} |
1319
|
|
|
|
1320
|
|
|
/** |
1321
|
|
|
* Cast a value to an array. |
1322
|
|
|
* |
1323
|
|
|
* @param \Traversable $value The value to convert. |
1324
|
|
|
* @return array Returns an array. |
1325
|
|
|
*/ |
1326
|
3 |
|
private function toObjectArray(\Traversable $value) { |
1327
|
3 |
|
$class = get_class($value); |
1328
|
3 |
|
if ($value instanceof \ArrayObject) { |
1329
|
2 |
|
return new $class($value->getArrayCopy(), $value->getFlags(), $value->getIteratorClass()); |
|
|
|
|
1330
|
1 |
|
} elseif ($value instanceof \ArrayAccess) { |
1331
|
1 |
|
$r = new $class; |
1332
|
1 |
|
foreach ($value as $k => $v) { |
1333
|
1 |
|
$r[$k] = $v; |
1334
|
|
|
} |
1335
|
1 |
|
return $r; |
|
|
|
|
1336
|
|
|
} |
1337
|
|
|
return iterator_to_array($value); |
1338
|
|
|
} |
1339
|
|
|
|
1340
|
|
|
/** |
1341
|
|
|
* Return a sparse version of this schema. |
1342
|
|
|
* |
1343
|
|
|
* A sparse schema has no required properties. |
1344
|
|
|
* |
1345
|
|
|
* @return Schema Returns a new sparse schema. |
1346
|
|
|
*/ |
1347
|
2 |
|
public function withSparse() { |
1348
|
2 |
|
$sparseSchema = $this->withSparseInternal($this, new \SplObjectStorage()); |
1349
|
2 |
|
return $sparseSchema; |
1350
|
|
|
} |
1351
|
|
|
|
1352
|
|
|
/** |
1353
|
|
|
* The internal implementation of `Schema::withSparse()`. |
1354
|
|
|
* |
1355
|
|
|
* @param array|Schema $schema The schema to make sparse. |
1356
|
|
|
* @param \SplObjectStorage $schemas Collected sparse schemas that have already been made. |
1357
|
|
|
* @return mixed |
1358
|
|
|
*/ |
1359
|
2 |
|
private function withSparseInternal($schema, \SplObjectStorage $schemas) { |
1360
|
2 |
|
if ($schema instanceof Schema) { |
1361
|
2 |
|
if ($schemas->contains($schema)) { |
1362
|
1 |
|
return $schemas[$schema]; |
1363
|
|
|
} else { |
1364
|
2 |
|
$schemas[$schema] = $sparseSchema = new Schema(); |
1365
|
2 |
|
$sparseSchema->schema = $schema->withSparseInternal($schema->schema, $schemas); |
1366
|
2 |
|
if ($id = $sparseSchema->getID()) { |
1367
|
|
|
$sparseSchema->setID($id.'Sparse'); |
1368
|
|
|
} |
1369
|
|
|
|
1370
|
2 |
|
return $sparseSchema; |
1371
|
|
|
} |
1372
|
|
|
} |
1373
|
|
|
|
1374
|
2 |
|
unset($schema['required']); |
1375
|
|
|
|
1376
|
2 |
|
if (isset($schema['items'])) { |
1377
|
1 |
|
$schema['items'] = $this->withSparseInternal($schema['items'], $schemas); |
1378
|
|
|
} |
1379
|
2 |
|
if (isset($schema['properties'])) { |
1380
|
2 |
|
foreach ($schema['properties'] as $name => &$property) { |
1381
|
2 |
|
$property = $this->withSparseInternal($property, $schemas); |
1382
|
|
|
} |
1383
|
|
|
} |
1384
|
|
|
|
1385
|
2 |
|
return $schema; |
1386
|
|
|
} |
1387
|
|
|
|
1388
|
|
|
/** |
1389
|
|
|
* Filter a field's value using built in and custom filters. |
1390
|
|
|
* |
1391
|
|
|
* @param mixed $value The original value of the field. |
1392
|
|
|
* @param ValidationField $field The field information for the field. |
1393
|
|
|
* @return mixed Returns the filtered field or the original field value if there are no filters. |
1394
|
|
|
*/ |
1395
|
173 |
|
private function filterField($value, ValidationField $field) { |
1396
|
|
|
// Check for limited support for Open API style. |
1397
|
173 |
|
if (!empty($field->val('style')) && is_string($value)) { |
1398
|
8 |
|
$doFilter = true; |
1399
|
8 |
|
if ($field->hasType('boolean') && in_array($value, ['true', 'false', '0', '1'], true)) { |
1400
|
4 |
|
$doFilter = false; |
1401
|
4 |
|
} elseif ($field->hasType('integer') || $field->hasType('number') && is_numeric($value)) { |
1402
|
|
|
$doFilter = false; |
1403
|
|
|
} |
1404
|
|
|
|
1405
|
8 |
|
if ($doFilter) { |
1406
|
4 |
|
switch ($field->val('style')) { |
1407
|
4 |
|
case 'form': |
1408
|
2 |
|
$value = explode(',', $value); |
1409
|
2 |
|
break; |
1410
|
2 |
|
case 'spaceDelimited': |
1411
|
1 |
|
$value = explode(' ', $value); |
1412
|
1 |
|
break; |
1413
|
1 |
|
case 'pipeDelimited': |
1414
|
1 |
|
$value = explode('|', $value); |
1415
|
1 |
|
break; |
1416
|
|
|
} |
1417
|
|
|
} |
1418
|
|
|
} |
1419
|
|
|
|
1420
|
173 |
|
$value = $this->callFilters($value, $field); |
1421
|
|
|
|
1422
|
173 |
|
return $value; |
1423
|
|
|
} |
1424
|
|
|
|
1425
|
|
|
/** |
1426
|
|
|
* Whether a offset exists. |
1427
|
|
|
* |
1428
|
|
|
* @param mixed $offset An offset to check for. |
1429
|
|
|
* @return boolean true on success or false on failure. |
1430
|
|
|
* @link http://php.net/manual/en/arrayaccess.offsetexists.php |
1431
|
|
|
*/ |
1432
|
6 |
|
public function offsetExists($offset) { |
1433
|
6 |
|
return isset($this->schema[$offset]); |
1434
|
|
|
} |
1435
|
|
|
|
1436
|
|
|
/** |
1437
|
|
|
* Offset to retrieve. |
1438
|
|
|
* |
1439
|
|
|
* @param mixed $offset The offset to retrieve. |
1440
|
|
|
* @return mixed Can return all value types. |
1441
|
|
|
* @link http://php.net/manual/en/arrayaccess.offsetget.php |
1442
|
|
|
*/ |
1443
|
6 |
|
public function offsetGet($offset) { |
1444
|
6 |
|
return isset($this->schema[$offset]) ? $this->schema[$offset] : null; |
1445
|
|
|
} |
1446
|
|
|
|
1447
|
|
|
/** |
1448
|
|
|
* Offset to set. |
1449
|
|
|
* |
1450
|
|
|
* @param mixed $offset The offset to assign the value to. |
1451
|
|
|
* @param mixed $value The value to set. |
1452
|
|
|
* @link http://php.net/manual/en/arrayaccess.offsetset.php |
1453
|
|
|
*/ |
1454
|
1 |
|
public function offsetSet($offset, $value) { |
1455
|
1 |
|
$this->schema[$offset] = $value; |
1456
|
1 |
|
} |
1457
|
|
|
|
1458
|
|
|
/** |
1459
|
|
|
* Offset to unset. |
1460
|
|
|
* |
1461
|
|
|
* @param mixed $offset The offset to unset. |
1462
|
|
|
* @link http://php.net/manual/en/arrayaccess.offsetunset.php |
1463
|
|
|
*/ |
1464
|
1 |
|
public function offsetUnset($offset) { |
1465
|
1 |
|
unset($this->schema[$offset]); |
1466
|
1 |
|
} |
1467
|
|
|
|
1468
|
|
|
/** |
1469
|
|
|
* Validate a field against a single type. |
1470
|
|
|
* |
1471
|
|
|
* @param mixed $value The value to validate. |
1472
|
|
|
* @param string $type The type to validate against. |
1473
|
|
|
* @param ValidationField $field Contains field and validation information. |
1474
|
|
|
* @param bool $sparse Whether or not this should be a sparse validation. |
1475
|
|
|
* @return mixed Returns the valid value or `Invalid`. |
1476
|
|
|
*/ |
1477
|
173 |
|
protected function validateSingleType($value, $type, ValidationField $field, $sparse) { |
1478
|
|
|
switch ($type) { |
1479
|
173 |
|
case 'boolean': |
1480
|
30 |
|
$result = $this->validateBoolean($value, $field); |
1481
|
30 |
|
break; |
1482
|
153 |
|
case 'integer': |
1483
|
38 |
|
$result = $this->validateInteger($value, $field); |
1484
|
38 |
|
break; |
1485
|
147 |
|
case 'number': |
1486
|
13 |
|
$result = $this->validateNumber($value, $field); |
1487
|
13 |
|
break; |
1488
|
142 |
|
case 'string': |
1489
|
66 |
|
$result = $this->validateString($value, $field); |
1490
|
66 |
|
break; |
1491
|
121 |
|
case 'timestamp': |
1492
|
8 |
|
$result = $this->validateTimestamp($value, $field); |
1493
|
8 |
|
break; |
1494
|
120 |
|
case 'datetime': |
1495
|
10 |
|
$result = $this->validateDatetime($value, $field); |
1496
|
10 |
|
break; |
1497
|
116 |
|
case 'array': |
1498
|
29 |
|
$result = $this->validateArray($value, $field, $sparse); |
1499
|
29 |
|
break; |
1500
|
100 |
|
case 'object': |
1501
|
99 |
|
$result = $this->validateObject($value, $field, $sparse); |
1502
|
97 |
|
break; |
1503
|
2 |
|
case 'null': |
1504
|
|
|
$result = $this->validateNull($value, $field); |
1505
|
|
|
break; |
1506
|
2 |
|
case null: |
1507
|
|
|
// No type was specified so we are valid. |
1508
|
2 |
|
$result = $value; |
1509
|
2 |
|
break; |
1510
|
|
|
default: |
1511
|
|
|
throw new \InvalidArgumentException("Unrecognized type $type.", 500); |
1512
|
|
|
} |
1513
|
173 |
|
return $result; |
1514
|
|
|
} |
1515
|
|
|
|
1516
|
|
|
/** |
1517
|
|
|
* Validate a field against multiple basic types. |
1518
|
|
|
* |
1519
|
|
|
* The first validation that passes will be returned. If no type can be validated against then validation will fail. |
1520
|
|
|
* |
1521
|
|
|
* @param mixed $value The value to validate. |
1522
|
|
|
* @param string[] $types The types to validate against. |
1523
|
|
|
* @param ValidationField $field Contains field and validation information. |
1524
|
|
|
* @param bool $sparse Whether or not this should be a sparse validation. |
1525
|
|
|
* @return mixed Returns the valid value or `Invalid`. |
1526
|
|
|
*/ |
1527
|
30 |
|
private function validateMultipleTypes($value, array $types, ValidationField $field, $sparse) { |
1528
|
|
|
// First check for an exact type match. |
1529
|
30 |
|
switch (gettype($value)) { |
1530
|
30 |
|
case 'boolean': |
1531
|
4 |
|
if (in_array('boolean', $types)) { |
1532
|
4 |
|
$singleType = 'boolean'; |
1533
|
|
|
} |
1534
|
4 |
|
break; |
1535
|
27 |
|
case 'integer': |
1536
|
7 |
|
if (in_array('integer', $types)) { |
1537
|
5 |
|
$singleType = 'integer'; |
1538
|
2 |
|
} elseif (in_array('number', $types)) { |
1539
|
1 |
|
$singleType = 'number'; |
1540
|
|
|
} |
1541
|
7 |
|
break; |
1542
|
22 |
|
case 'double': |
1543
|
4 |
|
if (in_array('number', $types)) { |
1544
|
4 |
|
$singleType = 'number'; |
1545
|
|
|
} elseif (in_array('integer', $types)) { |
1546
|
|
|
$singleType = 'integer'; |
1547
|
|
|
} |
1548
|
4 |
|
break; |
1549
|
19 |
|
case 'string': |
1550
|
10 |
|
if (in_array('datetime', $types) && preg_match(self::$DATE_REGEX, $value)) { |
1551
|
1 |
|
$singleType = 'datetime'; |
1552
|
9 |
|
} elseif (in_array('string', $types)) { |
1553
|
5 |
|
$singleType = 'string'; |
1554
|
|
|
} |
1555
|
10 |
|
break; |
1556
|
10 |
|
case 'array': |
1557
|
10 |
|
if (in_array('array', $types) && in_array('object', $types)) { |
1558
|
1 |
|
$singleType = isset($value[0]) || empty($value) ? 'array' : 'object'; |
1559
|
9 |
|
} elseif (in_array('object', $types)) { |
1560
|
|
|
$singleType = 'object'; |
1561
|
9 |
|
} elseif (in_array('array', $types)) { |
1562
|
9 |
|
$singleType = 'array'; |
1563
|
|
|
} |
1564
|
10 |
|
break; |
1565
|
1 |
|
case 'NULL': |
1566
|
|
|
if (in_array('null', $types)) { |
1567
|
|
|
$singleType = $this->validateSingleType($value, 'null', $field, $sparse); |
1568
|
|
|
} |
1569
|
|
|
break; |
1570
|
|
|
} |
1571
|
30 |
|
if (!empty($singleType)) { |
1572
|
26 |
|
return $this->validateSingleType($value, $singleType, $field, $sparse); |
1573
|
|
|
} |
1574
|
|
|
|
1575
|
|
|
// Clone the validation field to collect errors. |
1576
|
6 |
|
$typeValidation = new ValidationField(new Validation(), $field->getField(), '', $sparse); |
1577
|
|
|
|
1578
|
|
|
// Try and validate against each type. |
1579
|
6 |
|
foreach ($types as $type) { |
1580
|
6 |
|
$result = $this->validateSingleType($value, $type, $typeValidation, $sparse); |
1581
|
6 |
|
if (Invalid::isValid($result)) { |
1582
|
6 |
|
return $result; |
1583
|
|
|
} |
1584
|
|
|
} |
1585
|
|
|
|
1586
|
|
|
// Since we got here the value is invalid. |
1587
|
|
|
$field->merge($typeValidation->getValidation()); |
1588
|
|
|
return Invalid::value(); |
1589
|
|
|
} |
1590
|
|
|
} |
1591
|
|
|
|