1
|
|
|
<?php
|
2
|
|
|
/**
|
3
|
|
|
* File copied from Waavi/Sanitizer https://github.com/waavi/sanitizer
|
4
|
|
|
* Sanitization functionality to be customized within this project before a 1.0 release.
|
5
|
|
|
*/
|
6
|
|
|
|
7
|
|
|
namespace PerfectOblivion\Valid\Sanitizer\Laravel;
|
8
|
|
|
|
9
|
|
|
use Closure;
|
10
|
|
|
use InvalidArgumentException;
|
11
|
|
|
use PerfectOblivion\Valid\Sanitizer\Sanitizer;
|
12
|
|
|
use PerfectOblivion\Valid\Sanitizer\Contracts\Filter;
|
13
|
|
|
|
14
|
|
|
class Factory
|
15
|
|
|
{
|
16
|
|
|
/** @var array */
|
17
|
|
|
protected $customFilters;
|
18
|
|
|
|
19
|
|
|
/**
|
20
|
|
|
* Create a new Sanitizer factory instance.
|
21
|
|
|
*/
|
22
|
|
|
public function __construct()
|
23
|
|
|
{
|
24
|
|
|
$this->customFilters = [];
|
25
|
|
|
}
|
26
|
|
|
|
27
|
|
|
/**
|
28
|
|
|
* Create a new Sanitizer instance
|
29
|
|
|
*
|
30
|
|
|
* @param array $data Data to be sanitized
|
31
|
|
|
* @param array $rules Filters to be applied to the given data
|
32
|
|
|
*
|
33
|
|
|
* @return Sanitizer
|
34
|
|
|
*/
|
35
|
|
|
public function make(array $data, array $rules)
|
36
|
|
|
{
|
37
|
|
|
$sanitizer = new Sanitizer($data, $rules, $this->customFilters);
|
38
|
|
|
return $sanitizer;
|
39
|
|
|
}
|
40
|
|
|
|
41
|
|
|
/**
|
42
|
|
|
* Add a custom filters to all Sanitizers created with this Factory.
|
43
|
|
|
*
|
44
|
|
|
* @param string $name Name of the filter
|
45
|
|
|
* @param mixed $extension Either the full class name of a Filter class implementing the Filter contract, or a Closure.
|
|
|
|
|
46
|
|
|
*
|
47
|
|
|
* @throws InvalidArgumentException
|
48
|
|
|
*/
|
49
|
|
|
public function extend($name, $customFilter)
|
50
|
|
|
{
|
51
|
|
|
if (empty($name) || ! is_string($name)) {
|
52
|
|
|
throw new InvalidArgumentException('The Sanitizer filter name must be a non-empty string.');
|
53
|
|
|
}
|
54
|
|
|
|
55
|
|
|
if (! ($customFilter instanceof Closure) && ! in_array(Filter::class, class_implements($customFilter))) {
|
56
|
|
|
throw new InvalidArgumentException('Custom filter must be a Closure or a class implementing the Waavi\Sanitizer\Contracts\Filter interface.');
|
57
|
|
|
}
|
58
|
|
|
|
59
|
|
|
$this->customFilters[$name] = $customFilter;
|
60
|
|
|
}
|
61
|
|
|
}
|
62
|
|
|
|
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function.
Consider the following example. The parameter
$italy
is not defined by the methodfinale(...)
.The most likely cause is that the parameter was removed, but the annotation was not.