This repository has been archived by the owner on May 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathValidationError.php
240 lines (210 loc) · 4.94 KB
/
ValidationError.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
<?php
namespace League\JsonGuard;
final class ValidationError implements \JsonSerializable
{
const KEYWORD = 'keyword';
const PARAMETER = 'parameter';
const DATA = 'data';
const DATA_PATH = 'data_path';
const SCHEMA = 'schema';
const SCHEMA_PATH = 'schema_path';
const CAUSE = 'cause';
const MESSAGE = 'message';
/**
* @var string
*/
private $message;
/**
* @var string|null
*/
private $interpolatedMessage;
/**
* @var mixed
*/
private $cause;
/**
* @var string[]|null
*/
private $context;
/**
* @var string
*/
private $keyword;
/**
* @var mixed
*/
private $parameter;
/**
* @var mixed
*/
private $data;
/**
* @var string
*/
private $dataPath;
/**
* @var object
*/
private $schema;
/**
* @var string
*/
private $schemaPath;
public function __construct(
$message,
$keyword,
$parameter,
$data,
$dataPath,
$schema,
$schemaPath
) {
$this->message = $message;
$this->keyword = $keyword;
$this->parameter = $parameter;
$this->data = $data;
$this->dataPath = $dataPath;
$this->schema = $schema;
$this->schemaPath = $schemaPath;
}
/**
* Get the human readable error message for this error.
*
* @return string
*/
public function getMessage()
{
if ($this->interpolatedMessage === null) {
$this->interpolatedMessage = $this->interpolate($this->message, $this->getContext());
}
return $this->interpolatedMessage;
}
/**
* @return string
*/
public function getKeyword()
{
return $this->keyword;
}
/**
* @return mixed
*/
public function getParameter()
{
return $this->parameter;
}
/**
* @return mixed
*/
public function getData()
{
return $this->data;
}
/**
* @return string
*/
public function getDataPath()
{
return $this->dataPath;
}
/**
* @return object
*/
public function getSchema()
{
return $this->schema;
}
/**
* @return string
*/
public function getSchemaPath()
{
return $this->schemaPath;
}
/**
* Get the cause of the error. The cause is either the the value itself
* or the subset of the value that failed validation. For example, the
* cause of a failed minimum constraint would be the number itself, while
* the cause of a failed additionalProperties constraint would be the
* additional properties in the value that are not allowed.
*
* @return mixed
*/
public function getCause()
{
return $this->cause !== null ? $this->cause : $this->data;
}
/**
* @param $cause
*
* @return \League\JsonGuard\ValidationError
*/
public function withCause($cause)
{
$error = clone $this;
$error->cause = $cause;
return $error;
}
/**
* Get the context that applied to the failed assertion.
*
* @return string[]
*/
public function getContext()
{
if ($this->context === null) {
$this->context = array_map(
'League\JsonGuard\as_string',
[
self::KEYWORD => $this->keyword,
self::PARAMETER => $this->parameter,
self::DATA => $this->data,
self::DATA_PATH => $this->dataPath,
self::SCHEMA => $this->schema,
self::SCHEMA_PATH => $this->schemaPath,
self::CAUSE => $this->getCause(),
]
);
}
return $this->context;
}
/**
* @return array
*/
public function toArray()
{
return [
self::MESSAGE => $this->getMessage(),
self::KEYWORD => $this->keyword,
self::PARAMETER => $this->parameter,
self::DATA => $this->data,
self::DATA_PATH => $this->dataPath,
self::SCHEMA => $this->schema,
self::SCHEMA_PATH => $this->schemaPath,
self::CAUSE => $this->getCause(),
];
}
/**
* @inheritdoc
*/
public function jsonSerialize()
{
return $this->toArray();
}
/**
* Interpolate the context values into the message placeholders.
*
* @param string $message
* @param array $context
*
* @return string
*/
private function interpolate($message, array $context = [])
{
$replace = [];
foreach ($context as $key => $val) {
$replace['{' . $key . '}'] = $val;
}
return strtr($message, $replace);
}
}