1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Proengsoft\JsValidation; |
4
|
|
|
|
5
|
|
|
use Closure; |
6
|
|
|
use Illuminate\Contracts\Config\Repository as Config; |
7
|
|
|
use Illuminate\Contracts\Validation\Factory as ValidationFactory; |
8
|
|
|
use Illuminate\Http\Request; |
9
|
|
|
use Proengsoft\JsValidation\Remote\Resolver; |
10
|
|
|
use Proengsoft\JsValidation\Remote\Validator as RemoteValidator; |
11
|
|
|
|
12
|
|
|
class RemoteValidationMiddleware |
13
|
|
|
{ |
14
|
|
|
/** |
15
|
|
|
* Validator factory instance to wrap. |
16
|
|
|
* |
17
|
|
|
* @var \Illuminate\Contracts\Validation\Factory |
18
|
|
|
*/ |
19
|
|
|
protected $factory; |
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* Field used to detect Javascript validation. |
23
|
|
|
* |
24
|
|
|
* @var mixed |
25
|
|
|
*/ |
26
|
|
|
protected $field; |
27
|
|
|
|
28
|
|
|
/** |
29
|
|
|
* Whether to escape messages or not. |
30
|
|
|
* |
31
|
|
|
* @var bool |
32
|
|
|
*/ |
33
|
|
|
protected $escape; |
34
|
|
|
|
35
|
|
|
/** |
36
|
|
|
* RemoteValidationMiddleware constructor. |
37
|
|
|
* |
38
|
|
|
* @param \Illuminate\Contracts\Validation\Factory $validator |
39
|
|
|
* @param \Illuminate\Contracts\Config\Repository $config |
40
|
|
|
*/ |
41
|
24 |
|
public function __construct(ValidationFactory $validator, Config $config) |
42
|
|
|
{ |
43
|
24 |
|
$this->factory = $validator; |
44
|
24 |
|
$this->field = $config->get('jsvalidation.remote_validation_field'); |
45
|
24 |
|
$this->escape = (bool) $config->get('jsvalidation.escape', false); |
46
|
24 |
|
} |
47
|
|
|
|
48
|
|
|
/** |
49
|
|
|
* Handle an incoming request. |
50
|
|
|
* |
51
|
|
|
* @param \Illuminate\Http\Request $request |
52
|
|
|
* @param \Closure $next |
53
|
|
|
* @return mixed |
54
|
|
|
*/ |
55
|
24 |
|
public function handle(Request $request, Closure $next) |
56
|
|
|
{ |
57
|
24 |
|
if ($request->has($this->field)) { |
58
|
12 |
|
$this->wrapValidator(); |
59
|
|
|
} |
60
|
|
|
|
61
|
24 |
|
return $next($request); |
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
/** |
65
|
|
|
* Wraps Validator resolver with RemoteValidator resolver. |
66
|
|
|
* |
67
|
|
|
* @return void |
68
|
|
|
*/ |
69
|
12 |
|
protected function wrapValidator() |
70
|
|
|
{ |
71
|
12 |
|
$resolver = new Resolver($this->factory, $this->escape); |
72
|
12 |
|
$this->factory->resolver($resolver->resolver($this->field)); |
73
|
12 |
|
$this->factory->extend(RemoteValidator::EXTENSION_NAME, $resolver->validatorClosure()); |
74
|
12 |
|
} |
75
|
|
|
} |
76
|
|
|
|