-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathValidator.php
70 lines (54 loc) · 1.82 KB
/
Validator.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
<?php
namespace SSD\LaravelValidation;
use Illuminate\Contracts\Validation\DataAwareRule;
use Illuminate\Contracts\Validation\ValidatorAwareRule;
use Illuminate\Support\Str;
use Illuminate\Validation\Validator as ValidationValidator;
class Validator extends ValidationValidator
{
/**
* Validate an attribute using a custom rule object.
*
* @param string $attribute
* @param mixed $value
* @param \SSD\LaravelValidation\RuleContract $rule
*/
protected function validateUsingCustomRule($attribute, $value, $rule): void
{
if (! request()->expectsJson()) {
parent::validateUsingCustomRule($attribute, $value, $rule);
return;
}
$attribute = $this->replacePlaceholderInString($attribute);
$value = is_array($value) ? $this->replacePlaceholders($value) : $value;
if ($rule instanceof ValidatorAwareRule) {
$rule->setValidator($this);
}
if ($rule instanceof DataAwareRule) {
$rule->setData($this->data);
}
if (! $rule->passes($attribute, $value)) {
$this->failedRules[$attribute][$rule->rule()] = [];
$this->messages->add($attribute, $rule->rule());
}
}
/**
* Add a failed rule and error message to the collection.
*
* @param string $attribute
* @param string $rule
* @param array $parameters
*/
public function addFailure($attribute, $rule, $parameters = []): void
{
if (! request()->expectsJson()) {
parent::addFailure($attribute, $rule, $parameters);
return;
}
if (! $this->messages) {
$this->passes();
}
$this->messages->add($attribute, Str::snake($rule));
$this->failedRules[$attribute][$rule] = $parameters;
}
}