-
Notifications
You must be signed in to change notification settings - Fork 30
/
JsonValidator.php
185 lines (161 loc) · 5.52 KB
/
JsonValidator.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
<?php
/*
* This file is part of the Webmozart JSON package.
*
* (c) Bernhard Schussek <bschussek@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Webmozart\Json;
use JsonSchema\Exception\InvalidArgumentException;
use JsonSchema\Exception\ResourceNotFoundException;
use JsonSchema\RefResolver;
use JsonSchema\Uri\UriResolver;
use JsonSchema\Uri\UriRetriever;
use JsonSchema\UriResolverInterface;
use JsonSchema\Validator;
use Webmozart\PathUtil\Path;
/**
* Validates decoded JSON values against a JSON schema.
*
* This class is a wrapper for {@link Validator} that adds exceptions and
* validation of schema files. A few edge cases that are not handled by
* {@link Validator} are handled by this class.
*
* @since 1.0
*
* @author Bernhard Schussek <bschussek@gmail.com>
*/
class JsonValidator
{
/**
* The schema used for validating schemas.
*
* @var object|null
*/
private $metaSchema;
/**
* Validator instance used for validation.
*
* @var Validator
*/
private $validator;
/**
* Reference resolver.
*
* @var RefResolver
*/
private $resolver;
/**
* JsonValidator constructor.
*
* @param Validator|null $validator JsonSchema\Validator
* instance to use
* @param UriRetriever|null $uriRetriever The retriever for fetching
* JSON schemas
* @param UriResolverInterface|null $uriResolver The resolver for URIs
*/
public function __construct(Validator $validator = null, UriRetriever $uriRetriever = null, UriResolverInterface $uriResolver = null)
{
$this->validator = $validator ?: new Validator();
$this->resolver = new RefResolver($uriRetriever ?: new UriRetriever(), $uriResolver ?: new UriResolver());
}
/**
* Validates JSON data against a schema.
*
* The schema may be passed as file path or as object returned from
* `json_decode($schemaFile)`.
*
* @param mixed $data The decoded JSON data
* @param string|object|null $schema The schema file or object. If `null`,
* the validator will look for a `$schema`
* property
*
* @return string[] The errors found during validation. Returns an empty
* array if no errors were found
*
* @throws InvalidSchemaException If the schema is invalid
*/
public function validate($data, $schema = null)
{
if (null === $schema && isset($data->{'$schema'})) {
$schema = $data->{'$schema'};
}
if (is_string($schema)) {
$schema = $this->loadSchema($schema);
} elseif (is_object($schema)) {
$this->assertSchemaValid($schema);
} else {
throw new InvalidSchemaException(sprintf(
'The schema must be given as string, object or in the "$schema" '.
'property of the JSON data. Got: %s',
is_object($schema) ? get_class($schema) : gettype($schema)
));
}
$this->validator->reset();
try {
$this->validator->check($data, $schema);
} catch (InvalidArgumentException $e) {
throw new InvalidSchemaException(sprintf(
'The schema is invalid: %s',
$e->getMessage()
), 0, $e);
}
$errors = array();
if (!$this->validator->isValid()) {
$errors = (array) $this->validator->getErrors();
foreach ($errors as $key => $error) {
$prefix = $error['property'] ? $error['property'].': ' : '';
$errors[$key] = $prefix.$error['message'];
}
}
return $errors;
}
private function assertSchemaValid($schema)
{
if (null === $this->metaSchema) {
// The meta schema is obviously not validated. If we
// validate it against itself, we have an endless recursion
$this->metaSchema = json_decode(file_get_contents(__DIR__.'/../res/meta-schema.json'));
}
if ($schema === $this->metaSchema) {
return;
}
$errors = $this->validate($schema, $this->metaSchema);
if (count($errors) > 0) {
throw new InvalidSchemaException(sprintf(
"The schema is invalid:\n%s",
implode("\n", $errors)
));
}
}
private function loadSchema($file)
{
// Retrieve schema and cache in UriRetriever
$file = Path::canonicalize($file);
// Add file:// scheme if necessary
if (false === strpos($file, '://')) {
$file = 'file://'.$file;
}
// Resolve references to other schemas
try {
$schema = $this->resolver->resolve($file);
} catch (ResourceNotFoundException $e) {
throw new InvalidSchemaException(sprintf(
'The schema %s does not exist.',
$file
), 0, $e);
}
try {
$this->assertSchemaValid($schema);
} catch (InvalidSchemaException $e) {
throw new InvalidSchemaException(sprintf(
'An error occurred while loading the schema %s: %s',
$file,
$e->getMessage()
), 0, $e);
}
return $schema;
}
}