1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace PhalconExt\Validation; |
4
|
|
|
|
5
|
|
|
use Phalcon\Validation as BaseValidation; |
|
|
|
|
6
|
|
|
use Phalcon\Validation\Validator; |
|
|
|
|
7
|
|
|
use Phalcon\Validation\ValidatorInterface; |
|
|
|
|
8
|
|
|
use PhalconExt\Validators; |
|
|
|
|
9
|
|
|
|
10
|
|
|
/** |
11
|
|
|
* Phalcon Validation with batteries. |
12
|
|
|
* |
13
|
|
|
* @author Jitendra Adhikari <[email protected]> |
14
|
|
|
* @license MIT |
15
|
|
|
* |
16
|
|
|
* @link https://github.com/adhocore/phalcon-ext |
17
|
|
|
*/ |
18
|
|
|
class Validation extends BaseValidation |
19
|
|
|
{ |
20
|
|
|
/** @var array The alias of available validators */ |
21
|
|
|
protected $validators = [ |
22
|
|
|
'alnum' => Validator\Alnum::class, |
|
|
|
|
23
|
|
|
'alpha' => Validator\Alpha::class, |
|
|
|
|
24
|
|
|
'between' => Validator\Between::class, |
|
|
|
|
25
|
|
|
'confirmation' => Validator\Confirmation::class, |
|
|
|
|
26
|
|
|
'creditcard' => Validator\CreditCard::class, |
|
|
|
|
27
|
|
|
'date' => Validator\Date::class, |
|
|
|
|
28
|
|
|
'digit' => Validator\Digit::class, |
|
|
|
|
29
|
|
|
'email' => Validator\Email::class, |
|
|
|
|
30
|
|
|
'not_in' => Validator\ExclusionIn::class, |
|
|
|
|
31
|
|
|
'file' => Validator\File::class, |
|
|
|
|
32
|
|
|
'identical' => Validator\Identical::class, |
|
|
|
|
33
|
|
|
'in' => Validator\InclusionIn::class, |
|
|
|
|
34
|
|
|
'numeric' => Validator\Numericality::class, |
|
|
|
|
35
|
|
|
'required' => Validator\PresenceOf::class, |
|
|
|
|
36
|
|
|
'regex' => Validator\Regex::class, |
|
|
|
|
37
|
|
|
'length' => Validator\StringLength::class, |
|
|
|
|
38
|
|
|
'unique' => Validator\Uniqueness::class, |
|
|
|
|
39
|
|
|
'url' => Validator\Url::class, |
|
|
|
|
40
|
|
|
'exist' => Existence::class, |
41
|
|
|
]; |
42
|
|
|
|
43
|
|
|
/** @var array The custom validation callbacks */ |
44
|
|
|
protected $callbacks = []; |
45
|
|
|
|
46
|
|
|
/** @var ValidatorInterface The currently validating Validator. */ |
47
|
|
|
protected $validator; |
48
|
|
|
|
49
|
|
|
/** |
50
|
|
|
* Register a custom validation rule. |
51
|
|
|
* |
52
|
|
|
* @param string $ruleName |
53
|
|
|
* @param callable|Validator $handler |
54
|
|
|
* @param string $message Message to use when validation fails |
55
|
|
|
* |
56
|
|
|
* @return Validation $this |
57
|
|
|
*/ |
58
|
|
|
public function register(string $ruleName, $handler, string $message = ''): self |
59
|
|
|
{ |
60
|
|
|
if (isset($this->validators[$ruleName])) { |
61
|
|
|
return $this; |
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
if ($message) { |
65
|
|
|
$this->_defaultMessages += [$ruleName => $message]; |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
$this->validators[$ruleName] = $this->getHandler($ruleName, $handler); |
69
|
|
|
|
70
|
|
|
return $this; |
71
|
|
|
} |
72
|
|
|
|
73
|
|
|
/** |
74
|
|
|
* Get validation handler description]. |
75
|
|
|
* |
76
|
|
|
* @param string $ruleName |
77
|
|
|
* @param mixed $handler |
78
|
|
|
* |
79
|
|
|
* @return string |
80
|
|
|
*/ |
81
|
|
|
protected function getHandler(string $ruleName, $handler) |
82
|
|
|
{ |
83
|
|
|
if ($handler instanceof \Closure) { |
84
|
|
|
$handler = \Closure::bind($handler, $this); |
85
|
|
|
} |
86
|
|
|
|
87
|
|
|
if (\is_callable($handler)) { |
88
|
|
|
$this->callbacks[$ruleName] = $handler; |
89
|
|
|
$handler = Validator\Callback::class; |
|
|
|
|
90
|
|
|
} |
91
|
|
|
|
92
|
|
|
if (!\is_subclass_of($handler, Validator::class)) { |
93
|
|
|
throw new \InvalidArgumentException('Unsupported validation rule: ' . $ruleName); |
94
|
|
|
} |
95
|
|
|
|
96
|
|
|
return $handler; |
|
|
|
|
97
|
|
|
} |
98
|
|
|
|
99
|
|
|
/** |
100
|
|
|
* Registers multiple custom validation rules at once! |
101
|
|
|
* |
102
|
|
|
* @param array $ruleHandlers ['rule1' => <handler>, ...] |
103
|
|
|
* @param array $messages ['rule1' => 'message', ...] |
104
|
|
|
* |
105
|
|
|
* @return Validation $this |
106
|
|
|
*/ |
107
|
|
|
public function registerRules(array $ruleHandlers, array $messages = []): self |
108
|
|
|
{ |
109
|
|
|
foreach ($ruleHandlers as $ruleName => $handler) { |
110
|
|
|
$this->register($ruleName, $handler, $messages[$ruleName] ?? ''); |
111
|
|
|
} |
112
|
|
|
|
113
|
|
|
return $this; |
114
|
|
|
} |
115
|
|
|
|
116
|
|
|
/** |
117
|
|
|
* Check if the validation passes. |
118
|
|
|
* |
119
|
|
|
* @return bool |
120
|
|
|
*/ |
121
|
|
|
public function pass(): bool |
122
|
|
|
{ |
123
|
|
|
return \count($this->_messages) === 0; |
124
|
|
|
} |
125
|
|
|
|
126
|
|
|
/** |
127
|
|
|
* Check if the validation fails. |
128
|
|
|
* |
129
|
|
|
* @return bool |
130
|
|
|
*/ |
131
|
|
|
public function fail(): bool |
132
|
|
|
{ |
133
|
|
|
return !$this->pass(); |
134
|
|
|
} |
135
|
|
|
|
136
|
|
|
/** |
137
|
|
|
* Get the error messages. |
138
|
|
|
* |
139
|
|
|
* @return array |
140
|
|
|
*/ |
141
|
|
|
public function getErrorMessages(): array |
142
|
|
|
{ |
143
|
|
|
$messages = []; |
144
|
|
|
|
145
|
|
|
foreach ($this->_messages as $message) { |
146
|
|
|
$messages[] = [ |
147
|
|
|
'code' => $message->getCode(), |
148
|
|
|
'message' => $message->getMessage(), |
149
|
|
|
'field' => $message->getField(), |
150
|
|
|
]; |
151
|
|
|
} |
152
|
|
|
|
153
|
|
|
return $messages; |
154
|
|
|
} |
155
|
|
|
|
156
|
|
|
/** |
157
|
|
|
* Runs a validation with given ruleSet against given arbitrary dataSet. |
158
|
|
|
* |
159
|
|
|
* @param array $ruleSet |
160
|
|
|
* @param array $dataSet |
161
|
|
|
* |
162
|
|
|
* @return Validation $this |
163
|
|
|
*/ |
164
|
|
|
public function run(array $ruleSet, array $dataSet): Validation |
165
|
|
|
{ |
166
|
|
|
$this->addRules($ruleSet, $dataSet, true)->validate($dataSet); |
167
|
|
|
|
168
|
|
|
return $this; |
169
|
|
|
} |
170
|
|
|
|
171
|
|
|
/** |
172
|
|
|
* Run the validation rules on data set. |
173
|
|
|
* |
174
|
|
|
* @param array $ruleSet |
175
|
|
|
* @param array $dataSet |
176
|
|
|
* @param bool $reset Whether to reset currently registered validators. |
177
|
|
|
* |
178
|
|
|
* @return Validation |
179
|
|
|
*/ |
180
|
|
|
public function addRules(array $ruleSet, array $dataSet = [], bool $reset = false): Validation |
181
|
|
|
{ |
182
|
|
|
if ($reset) { |
183
|
|
|
$this->_messages = $this->_validators = []; |
|
|
|
|
184
|
|
|
} |
185
|
|
|
|
186
|
|
|
foreach ($ruleSet as $attribute => $rules) { |
187
|
|
|
if (\is_string($rules)) { |
188
|
|
|
$rules = $this->parseRules($rules); |
189
|
|
|
} |
190
|
|
|
|
191
|
|
|
if (!\is_array($rules)) { |
192
|
|
|
throw new \UnexpectedValueException('The rules should be an array or string'); |
193
|
|
|
} |
194
|
|
|
|
195
|
|
|
// Only validate if attribute exists in dataSet when so configured. |
196
|
|
|
if (isset($rules['if_exist']) && !\array_key_exists($attribute, $dataSet)) { |
197
|
|
|
continue; |
198
|
|
|
} |
199
|
|
|
|
200
|
|
|
unset($rules['if_exist']); |
201
|
|
|
$this->attributeRules($attribute, $rules); |
202
|
|
|
} |
203
|
|
|
|
204
|
|
|
return $this; |
205
|
|
|
} |
206
|
|
|
|
207
|
|
|
/** |
208
|
|
|
* Parse string representation of the rules and make it array. |
209
|
|
|
* |
210
|
|
|
* Rule Format: `rule1:key1:value11,value12;key2:value22|rule2:key21:value21|rule3` |
211
|
|
|
* |
212
|
|
|
* @param string $rules Example: 'required|length:min:1;max:2;|in:domain:1,12,30' |
213
|
|
|
* |
214
|
|
|
* @return array |
215
|
|
|
*/ |
216
|
|
|
protected function parseRules(string $rules): array |
217
|
|
|
{ |
218
|
|
|
$parsed = []; |
219
|
|
|
|
220
|
|
|
foreach (\explode('|', $rules) as $rule) { |
221
|
|
|
if (false === \strpos($rule, ':')) { |
222
|
|
|
$parsed[$rule] = []; |
223
|
|
|
continue; |
224
|
|
|
} |
225
|
|
|
|
226
|
|
|
list($name, $options) = \explode(':', $rule, 2); |
227
|
|
|
$parsed[$name] = $this->parseOptions($options); |
228
|
|
|
} |
229
|
|
|
|
230
|
|
|
return $parsed; |
231
|
|
|
} |
232
|
|
|
|
233
|
|
|
/** |
234
|
|
|
* Parse rule options. |
235
|
|
|
* |
236
|
|
|
* @param string $options |
237
|
|
|
* |
238
|
|
|
* @return array |
239
|
|
|
*/ |
240
|
|
|
protected function parseOptions(string $options): array |
241
|
|
|
{ |
242
|
|
|
$parsed = []; |
243
|
|
|
|
244
|
|
|
foreach (\explode(';', $options) as $parts) { |
245
|
|
|
list($key, $value) = \explode(':', $parts) + ['', '']; |
246
|
|
|
if (\strpos($value, ',')) { |
247
|
|
|
$value = \explode(',', $value); |
248
|
|
|
} |
249
|
|
|
|
250
|
|
|
$parsed[$key] = $value; |
251
|
|
|
} |
252
|
|
|
|
253
|
|
|
return $parsed; |
254
|
|
|
} |
255
|
|
|
|
256
|
|
|
/** |
257
|
|
|
* Add all the rules for given attribute to validators list. |
258
|
|
|
* |
259
|
|
|
* @param string $attribute |
260
|
|
|
* @param array $rules |
261
|
|
|
* |
262
|
|
|
* @return void |
263
|
|
|
*/ |
264
|
|
|
protected function attributeRules(string $attribute, array $rules) |
265
|
|
|
{ |
266
|
|
|
foreach ($rules as $rule => $options) { |
267
|
|
|
if (!isset($this->validators[$rule])) { |
268
|
|
|
throw new \InvalidArgumentException('Unknown validation rule: ' . $rule); |
269
|
|
|
} |
270
|
|
|
|
271
|
|
|
$validator = $this->validators[$rule]; |
272
|
|
|
$options = (array) $options + [ |
273
|
|
|
'callback' => $this->callbacks[$rule] ?? null, |
274
|
|
|
'message' => $this->_defaultMessages[$rule] ?? null, |
275
|
|
|
'__field' => $attribute, |
276
|
|
|
]; |
277
|
|
|
|
278
|
|
|
$this->add($attribute, new $validator($options)); |
279
|
|
|
} |
280
|
|
|
} |
281
|
|
|
|
282
|
|
|
/** |
283
|
|
|
* {@inheritdoc} |
284
|
|
|
*/ |
285
|
|
|
protected function preChecking($field, ValidatorInterface $validator): bool |
286
|
|
|
{ |
287
|
|
|
$this->validator = $validator; |
288
|
|
|
|
289
|
|
|
return parent::preChecking($field, $validator); |
290
|
|
|
} |
291
|
|
|
|
292
|
|
|
/** |
293
|
|
|
* Get current value being validated. |
294
|
|
|
* |
295
|
|
|
* @return mixed |
296
|
|
|
*/ |
297
|
|
|
public function getCurrentValue() |
298
|
|
|
{ |
299
|
|
|
return $this->getValue($this->validator->getOption('__field')); |
300
|
|
|
} |
301
|
|
|
|
302
|
|
|
/** |
303
|
|
|
* Delegate calls to current validator. |
304
|
|
|
* |
305
|
|
|
* @param string $method |
306
|
|
|
* @param mixed $args |
307
|
|
|
* |
308
|
|
|
* @return mixed |
309
|
|
|
*/ |
310
|
|
|
public function __call($method, $args) |
311
|
|
|
{ |
312
|
|
|
return $this->validator->$method(...$args); |
313
|
|
|
} |
314
|
|
|
} |
315
|
|
|
|
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths