1 | <?php |
||
8 | class ValidatorHandler |
||
9 | { |
||
10 | use UseDelegatedValidatorTrait; |
||
11 | |||
12 | /** |
||
13 | * Rule used to disable validations. |
||
14 | * |
||
15 | * @const string |
||
16 | */ |
||
17 | const JSVALIDATION_DISABLE = 'NoJsValidation'; |
||
18 | |||
19 | /** |
||
20 | * @var RuleParser |
||
21 | */ |
||
22 | protected $rules; |
||
23 | /** |
||
24 | * @var MessageParser |
||
25 | */ |
||
26 | protected $messages; |
||
27 | |||
28 | /** |
||
29 | * @var bool |
||
30 | */ |
||
31 | protected $remote = true; |
||
32 | |||
33 | /** |
||
34 | * Create a new JsValidation instance. |
||
35 | * |
||
36 | * @param RuleParser $rules |
||
37 | * @param MessageParser $messages |
||
38 | */ |
||
39 | 120 | public function __construct(RuleParser $rules, MessageParser $messages) |
|
40 | { |
||
41 | 120 | $this->rules = $rules; |
|
42 | 120 | $this->messages = $messages; |
|
43 | 120 | $this->validator = $rules->getDelegatedValidator(); |
|
44 | 120 | } |
|
45 | |||
46 | /** |
||
47 | * Sets delegated Validator instance. |
||
48 | * |
||
49 | * @param \Proengsoft\JsValidation\Support\DelegatedValidator $validator |
||
50 | * @return void |
||
51 | */ |
||
52 | 48 | public function setDelegatedValidator(DelegatedValidator $validator) |
|
58 | |||
59 | /** |
||
60 | * Enable or disables remote validations. |
||
61 | * |
||
62 | * @param bool $enabled |
||
63 | * @return void |
||
64 | */ |
||
65 | 12 | public function setRemote($enabled) |
|
66 | { |
||
67 | 12 | $this->remote = $enabled; |
|
68 | 12 | } |
|
69 | |||
70 | /** |
||
71 | * Generate Javascript Validations. |
||
72 | * |
||
73 | * @return array |
||
74 | */ |
||
75 | 48 | protected function generateJavascriptValidations() |
|
76 | { |
||
77 | 48 | $jsValidations = []; |
|
78 | |||
79 | 48 | foreach ($this->validator->getRules() as $attribute => $rules) { |
|
80 | 48 | if (! $this->jsValidationEnabled($attribute)) { |
|
81 | 12 | continue; |
|
82 | } |
||
83 | |||
84 | 36 | $newRules = $this->jsConvertRules($attribute, $rules, $this->remote); |
|
85 | 36 | $jsValidations = array_merge($jsValidations, $newRules); |
|
86 | 4 | } |
|
87 | |||
88 | 48 | return $jsValidations; |
|
89 | } |
||
90 | |||
91 | /** |
||
92 | * Make Laravel Validations compatible with JQuery Validation Plugin. |
||
93 | * |
||
94 | * @param $attribute |
||
95 | * @param $rules |
||
96 | * @param bool $includeRemote |
||
97 | * @return array |
||
98 | */ |
||
99 | 36 | protected function jsConvertRules($attribute, $rules, $includeRemote) |
|
115 | |||
116 | /** |
||
117 | * Check if rule should be validated with javascript. |
||
118 | * |
||
119 | * @param $jsRule |
||
120 | * @param bool $includeRemote |
||
121 | * @return bool |
||
122 | */ |
||
123 | 36 | protected function isValidatable($jsRule, $includeRemote) |
|
127 | |||
128 | /** |
||
129 | * Check if JS Validation is disabled for attribute. |
||
130 | * |
||
131 | * @param $attribute |
||
132 | * @return bool |
||
133 | */ |
||
134 | 48 | public function jsValidationEnabled($attribute) |
|
138 | |||
139 | /** |
||
140 | * Returns view data to render javascript. |
||
141 | * |
||
142 | * @return array |
||
143 | */ |
||
144 | 48 | public function validationData() |
|
154 | |||
155 | /** |
||
156 | * Validate Conditional Validations using Ajax in specified fields. |
||
157 | * |
||
158 | * @param string $attribute |
||
159 | * @param string|array $rules |
||
160 | * @return void |
||
161 | */ |
||
162 | 5 | public function sometimes($attribute, $rules = []) |
|
170 | } |
||
171 |