|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Orumad\SpanishValidator; |
|
4
|
|
|
|
|
5
|
|
|
use Illuminate\Support\Facades\Validator; |
|
|
|
|
|
|
6
|
|
|
use Illuminate\Support\ServiceProvider; |
|
7
|
|
|
|
|
8
|
|
|
class SpanishValidatorServiceProvider extends ServiceProvider |
|
9
|
|
|
{ |
|
10
|
|
|
public function boot() |
|
11
|
|
|
{ |
|
12
|
|
|
$this->publishes([ |
|
13
|
|
|
__DIR__.'/../resources/lang' => resource_path('lang/'), |
|
14
|
|
|
]); |
|
15
|
|
|
|
|
16
|
|
|
$this->loadTranslationsFrom(__DIR__.'/../resources/lang/', 'spanishValidator'); |
|
17
|
|
|
|
|
18
|
|
|
// Add validators and messages |
|
19
|
|
|
$this->addValidators(); |
|
20
|
|
|
} |
|
21
|
|
|
|
|
22
|
|
|
private function addValidators() |
|
23
|
|
|
{ |
|
24
|
|
|
// Tax Number: NIF or NIE or CIF |
|
25
|
|
|
Validator::extend('spanish_tax_number', 'Orumad\\SpanishValidator\\InternalValidator@validateTaxNumber'); |
|
26
|
|
|
Validator::replacer('spanish_tax_number', function ($message, $attribute, $rule, $parameters) { |
|
|
|
|
|
|
27
|
|
|
return __('spanishValidator::spanishValidator.tax_number'); |
|
28
|
|
|
}); |
|
29
|
|
|
|
|
30
|
|
|
// Personal ID: NIF or NIE |
|
31
|
|
|
Validator::extend('spanish_personal_id', 'Orumad\\SpanishValidator\\InternalValidator@validatePersonalId'); |
|
32
|
|
|
Validator::replacer('spanish_personal_id', function ($message, $attribute, $rule, $parameters) { |
|
|
|
|
|
|
33
|
|
|
return __('spanishValidator::spanishValidator.personal_id'); |
|
34
|
|
|
}); |
|
35
|
|
|
|
|
36
|
|
|
// NIF |
|
37
|
|
|
Validator::extend('nif', 'Orumad\\SpanishValidator\\InternalValidator@validateNif'); |
|
38
|
|
|
Validator::replacer('nif', function ($message, $attribute, $rule, $parameters) { |
|
|
|
|
|
|
39
|
|
|
return __('spanishValidator::spanishValidator.nif'); |
|
40
|
|
|
}); |
|
41
|
|
|
|
|
42
|
|
|
// NIE |
|
43
|
|
|
Validator::extend('nie', 'Orumad\\SpanishValidator\\InternalValidator@validateNie'); |
|
44
|
|
|
Validator::replacer('nie', function ($message, $attribute, $rule, $parameters) { |
|
|
|
|
|
|
45
|
|
|
return __('spanishValidator::spanishValidator.nie'); |
|
46
|
|
|
}); |
|
47
|
|
|
|
|
48
|
|
|
// CIF |
|
49
|
|
|
Validator::extend('cif', 'Orumad\\SpanishValidator\\InternalValidator@validateCif'); |
|
50
|
|
|
Validator::replacer('cif', function ($message, $attribute, $rule, $parameters) { |
|
|
|
|
|
|
51
|
|
|
return __('spanishValidator::spanishValidator.cif'); |
|
52
|
|
|
}); |
|
53
|
|
|
|
|
54
|
|
|
// NSS |
|
55
|
|
|
Validator::extend('nss', 'Orumad\\SpanishValidator\\InternalValidator@validateNss'); |
|
56
|
|
|
Validator::replacer('nss', function ($message, $attribute, $rule, $parameters) { |
|
|
|
|
|
|
57
|
|
|
return __('spanishValidator::spanishValidator.nss'); |
|
58
|
|
|
}); |
|
59
|
|
|
|
|
60
|
|
|
// IBAN |
|
61
|
|
|
Validator::extend('iban', 'Orumad\\SpanishValidator\\InternalValidator@validateIban'); |
|
62
|
|
|
Validator::replacer('iban', function ($message, $attribute, $rule, $parameters) { |
|
|
|
|
|
|
63
|
|
|
return __('spanishValidator::spanishValidator.iban'); |
|
64
|
|
|
}); |
|
65
|
|
|
|
|
66
|
|
|
// Postal Code |
|
67
|
|
|
Validator::extend('spanish_postal_code', 'Orumad\\SpanishValidator\\InternalValidator@validatePostalCode'); |
|
68
|
|
|
Validator::replacer('spanish_postal_code', function ($message, $attribute, $rule, $parameters) { |
|
|
|
|
|
|
69
|
|
|
return __('spanishValidator::spanishValidator.postal_code'); |
|
70
|
|
|
}); |
|
71
|
|
|
|
|
72
|
|
|
// Phone |
|
73
|
|
|
Validator::extend('spanish_phone', 'Orumad\\SpanishValidator\\InternalValidator@validatePhone'); |
|
74
|
|
|
Validator::replacer('spanish_phone', function ($message, $attribute, $rule, $parameters) { |
|
|
|
|
|
|
75
|
|
|
return __('spanishValidator::spanishValidator.phone'); |
|
76
|
|
|
}); |
|
77
|
|
|
} |
|
78
|
|
|
} |
|
79
|
|
|
|
Let’s assume that you have a directory layout like this:
. |-- OtherDir | |-- Bar.php | `-- Foo.php `-- SomeDir `-- Foo.phpand let’s assume the following content of
Bar.php:If both files
OtherDir/Foo.phpandSomeDir/Foo.phpare loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.phpHowever, as
OtherDir/Foo.phpdoes not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: