-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathValidatingTrait.php
More file actions
457 lines (397 loc) · 10.8 KB
/
Copy pathValidatingTrait.php
File metadata and controls
457 lines (397 loc) · 10.8 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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
<?php
namespace Watson\Validating;
use Illuminate\Support\MessageBag;
use Illuminate\Validation\Factory;
use Illuminate\Support\Facades\Validator;
use Watson\Validating\Injectors\UniqueInjector;
trait ValidatingTrait
{
use UniqueInjector;
/**
* Error messages as provided by the validator.
*
* @var \Illuminate\Support\MessageBag
*/
protected $validationErrors;
/**
* Whether the model should undergo validation
* when saving or not.
*
* @var bool
*/
protected $validating = true;
/**
* The Validator factory class used for validation.
*
* @return \Illuminate\Validation\Factory
*/
protected $validator;
/**
* Boot the trait. Adds an observer class for validating.
*
* @return void
*/
public static function bootValidatingTrait()
{
static::observe(new ValidatingObserver);
}
/**
* Returns whether or not the model will attempt to validate
* itself when saving.
*
* @return bool
*/
public function getValidating()
{
return $this->validating;
}
/**
* Set whether the model should attempt validation on saving.
*
* @param bool $value
* @return void
*/
public function setValidating($value)
{
$this->validating = (boolean) $value;
}
/**
* Returns whether the model will raise an exception or
* return a boolean when validating.
*
* @return bool
*/
public function getThrowValidationExceptions()
{
return isset($this->throwValidationExceptions) ? $this->throwValidationExceptions : false;
}
/**
* Set whether the model should raise an exception or
* return a boolean on a failed validation.
*
* @param bool $value
* @return void
* @throws InvalidArgumentException
*/
public function setThrowValidationExceptions($value)
{
$this->throwValidationExceptions = (boolean) $value;
}
/**
* Returns whether or not the model will add it's unique
* identifier to the rules when validating.
*
* @return bool
*/
public function getInjectUniqueIdentifier()
{
return isset($this->injectUniqueIdentifier) ? $this->injectUniqueIdentifier : true;
}
/**
* Set the model to add unique identifier to rules when performing
* validation.
*
* @param bool $value
* @return void
* @throws InvalidArgumentException
*/
public function setInjectUniqueIdentifier($value)
{
$this->injectUniqueIdentifier = (boolean) $value;
}
/**
* Get the model.
*
* @return \Illuminate\Database\Eloquent\Model
*/
public function getModel()
{
return $this;
}
/**
* Get the casted model attributes.
*
* @return array
*/
public function getModelAttributes()
{
$attributes = $this->getModel()->getAttributes();
foreach ($attributes as $key => $value) {
$attributes[$key] = $this->getModel()->getAttributeValue($key);
}
return $attributes;
}
/**
* Get the custom validation messages being used by the model.
*
* @return array
*/
public function getValidationMessages()
{
return isset($this->validationMessages) ? $this->validationMessages : [];
}
/**
* Get the validating attribute names.
*
* @return mixed
*/
public function getValidationAttributeNames()
{
return isset($this->validationAttributeNames) ? $this->validationAttributeNames : null;
}
/**
* Set the validating attribute names.
*
* @param array $attributeNames
* @return mixed
*/
public function setValidationAttributeNames(array $attributeNames = null)
{
$this->validationAttributeNames = $attributeNames;
}
/**
* Get the global validation rules.
*
* @return array
*/
public function getRules()
{
return isset($this->rules) ? $this->rules : [];
}
/**
* Handy method for using the static call Model::rules(). Protected access
* only to allow __callStatic to get to it.
*
* @return array
*/
protected function rules()
{
return $this->getRules();
}
/**
* Set the global validation rules.
*
* @param array $rules
* @return void
*/
public function setRules(array $rules = null)
{
$this->rules = $rules;
}
/**
* Get the validation error messages from the model.
*
* @return \Illuminate\Support\MessageBag
*/
public function getErrors()
{
return $this->validationErrors ?: new MessageBag;
}
/**
* Set the error messages.
*
* @param \Illuminate\Support\MessageBag $validationErrors
* @return void
*/
public function setErrors(MessageBag $validationErrors)
{
$this->validationErrors = $validationErrors;
}
/**
* Returns whether the model is valid or not.
*
* @return bool
*/
public function isValid()
{
$rules = $this->getRules();
return $this->performValidation($rules);
}
/**
* Returns if the model is valid, otherwise throws an exception.
*
* @return bool
* @throws \Watson\Validating\ValidationException
*/
public function isValidOrFail()
{
if (! $this->isValid()) {
$this->throwValidationException();
}
return true;
}
/**
* Returns whether the model is invalid or not.
*
* @return bool
*/
public function isInvalid()
{
return ! $this->isValid();
}
/**
* Force the model to be saved without undergoing validation.
*
* @return bool
*/
public function forceSave()
{
$currentValidatingSetting = $this->getValidating();
$this->setValidating(false);
$result = $this->getModel()->save();
$this->setValidating($currentValidatingSetting);
return $result;
}
/**
* Perform a one-off save that will raise an exception on validation error
* instead of returning a boolean (which is the default behaviour).
*
* @param array $options
* @return bool
* @throws \Throwable
*/
public function saveOrFail(array $options = [])
{
if ($this->isInvalid()) {
return $this->throwValidationException();
}
return $this->getModel()->parentSaveOrFail($options);
}
/**
* Call the parent save or fail method provided by Eloquent.
*
* @param array $options
* @return bool
* @throws \Throwable
*/
public function parentSaveOrFail($options)
{
return parent::saveOrFail($options);
}
/**
* Perform a one-off save that will return a boolean on
* validation error instead of raising an exception.
*
* @return bool
*/
public function saveOrReturn()
{
return $this->getModel()->save();
}
/**
* Get the Validator instance
*
* @return \Illuminate\Validation\Factory
*/
public function getValidator()
{
return $this->validator ?: app('validator');
}
/**
* Set the Validator instance
*
* @param \Illuminate\Validation\Factory $validator
*/
public function setValidator(Factory $validator)
{
$this->validator = $validator;
}
/**
* Make a Validator instance for a given ruleset.
*
* @param array $rules
* @return \Illuminate\Validation\Factory
*/
protected function makeValidator($rules = [])
{
// Get the casted model attributes.
$attributes = $this->getModelAttributes();
if ($this->getInjectUniqueIdentifier()) {
$rules = $this->injectUniqueIdentifierToRules($rules);
}
$messages = $this->getValidationMessages();
$validator = $this->getValidator()->make($attributes, $rules, $messages);
if ($this->getValidationAttributeNames()) {
$validator->setAttributeNames($this->getValidationAttributeNames());
}
return $validator;
}
/**
* Validate the model against it's rules, returning whether
* or not it passes and setting the error messages on the
* model if required.
*
* @param array $rules
* @return bool
* @throws \Watson\Validating\ValidationException
*/
protected function performValidation($rules = [])
{
$validation = $this->makeValidator($rules);
$result = $validation->passes();
$this->setErrors($validation->messages());
return $result;
}
/**
* Throw a validation exception.
*
* @throws \Watson\Validating\ValidationException
*/
public function throwValidationException()
{
throw new ValidationException($this->getErrors(), $this);
}
/**
* Update the unique rules of the global rules to
* include the model identifier.
*
* @return void
*/
public function updateRulesUniques()
{
$rules = $this->getRules();
$this->setRules($this->injectUniqueIdentifierToRules($rules));
}
/**
* If the model already exists and it has unique validations
* it is going to fail validation unless we also pass it's
* primary key to the rule so that it may be ignored.
*
* This will go through all the rules and append the model's
* primary key to the unique rules so that the validation
* will work as expected.
*
* @param array $rules
* @return array
*/
protected function injectUniqueIdentifierToRules(array $rules)
{
foreach ($rules as $field => &$ruleset) {
// If the ruleset is a pipe-delimited string, convert it to an array.
$ruleset = is_string($ruleset) ? explode('|', $ruleset) : $ruleset;
foreach ($ruleset as &$rule) {
$parameters = explode(':', $rule);
$validationRule = array_shift($parameters);
if ($method = $this->getUniqueIdentifierInjectorMethod($validationRule)) {
$rule = call_user_func_array(
[$this, $method],
[explode(',', head($parameters)), $field]
);
}
}
}
return $rules;
}
/**
* Get the dynamic method name for a unique identifier injector rule if it
* exists, otherwise return false.
*
* @param string $validationRule
* @return mixed
*/
protected function getUniqueIdentifierInjectorMethod($validationRule)
{
$method = 'prepare' . studly_case($validationRule) . 'Rule';
return method_exists($this, $method) ? $method : false;
}
}