|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Brazanation\Documents\StateRegistration; |
|
4
|
|
|
|
|
5
|
|
|
use Brazanation\Documents\DigitCalculator; |
|
6
|
|
|
|
|
7
|
|
|
class RioGrandeDoNorte extends State |
|
8
|
|
|
{ |
|
9
|
|
|
const LONG_NAME = 'RioGrandeDoNorte'; |
|
10
|
|
|
|
|
11
|
|
|
const REGEX = '/^(20)(\d)?(\d{3})(\d{3})(\d{1})$/'; |
|
12
|
|
|
|
|
13
|
|
|
const REGEX_FOR_NINE_NUMBERS = '/^(20)(\d{3})(\d{3})(\d{1})$/'; |
|
14
|
|
|
|
|
15
|
|
|
const FORMAT = '$1.$2.$3.$4-$5'; |
|
16
|
|
|
|
|
17
|
|
|
const FORMAT_FOR_NINE_NUMBERS = '$1.$2.$3-$4'; |
|
18
|
|
|
|
|
19
|
|
|
const LENGTH = 10; |
|
20
|
|
|
|
|
21
|
|
|
const NUMBER_OF_DIGITS = 1; |
|
22
|
|
|
|
|
23
|
|
|
const SHORT_NAME = 'RN'; |
|
24
|
|
|
|
|
25
|
|
|
/** |
|
26
|
|
|
* @var int |
|
27
|
|
|
*/ |
|
28
|
|
|
private $length; |
|
29
|
|
|
|
|
30
|
|
|
/** |
|
31
|
|
|
* @var string |
|
32
|
|
|
*/ |
|
33
|
|
|
private $format; |
|
34
|
|
|
|
|
35
|
|
|
/** |
|
36
|
|
|
* @var string |
|
37
|
|
|
*/ |
|
38
|
|
|
private $regex; |
|
39
|
|
|
|
|
40
|
24 |
|
public function __construct() |
|
41
|
|
|
{ |
|
42
|
24 |
|
$this->length = self::LENGTH; |
|
43
|
24 |
|
$this->format = self::FORMAT; |
|
44
|
24 |
|
$this->regex = self::REGEX; |
|
45
|
24 |
|
parent::__construct(self::LONG_NAME, self::LENGTH, self::NUMBER_OF_DIGITS, self::REGEX, self::FORMAT); |
|
46
|
|
|
} |
|
47
|
|
|
|
|
48
|
|
|
/** |
|
49
|
|
|
* {@inheritdoc} |
|
50
|
|
|
*/ |
|
51
|
24 |
|
public function normalizeNumber(string $number) : string |
|
52
|
|
|
{ |
|
53
|
24 |
|
$number = parent::normalizeNumber($number); |
|
54
|
|
|
|
|
55
|
24 |
|
$this->applyForNineDigits($number); |
|
56
|
|
|
|
|
57
|
24 |
|
return $number; |
|
58
|
|
|
} |
|
59
|
|
|
|
|
60
|
4 |
|
public function getFormat() : string |
|
61
|
|
|
{ |
|
62
|
4 |
|
return $this->format; |
|
63
|
|
|
} |
|
64
|
|
|
|
|
65
|
24 |
|
public function getLength() : int |
|
66
|
|
|
{ |
|
67
|
24 |
|
return $this->length; |
|
68
|
|
|
} |
|
69
|
|
|
|
|
70
|
|
|
/** |
|
71
|
|
|
* @return string |
|
72
|
|
|
*/ |
|
73
|
4 |
|
public function getRegex() : string |
|
74
|
|
|
{ |
|
75
|
4 |
|
return $this->regex; |
|
76
|
|
|
} |
|
77
|
|
|
|
|
78
|
|
|
/** |
|
79
|
|
|
* {@inheritdoc} |
|
80
|
|
|
* |
|
81
|
|
|
* @see http://www.sintegra.gov.br/Cad_Estados/cad_RN.html |
|
82
|
|
|
*/ |
|
83
|
22 |
|
public function calculateDigit(string $baseNumber) : string |
|
84
|
|
|
{ |
|
85
|
22 |
|
$calculator = new DigitCalculator($baseNumber); |
|
86
|
22 |
|
$calculator->useComplementaryInsteadOfModule(); |
|
87
|
22 |
|
$calculator->withMultipliersInterval(2, 10); |
|
88
|
22 |
|
$calculator->replaceWhen('0', 10, 11); |
|
89
|
22 |
|
$calculator->withModule(DigitCalculator::MODULE_11); |
|
90
|
|
|
|
|
91
|
22 |
|
$digit = $calculator->calculate(); |
|
92
|
|
|
|
|
93
|
22 |
|
return "{$digit}"; |
|
94
|
|
|
} |
|
95
|
|
|
|
|
96
|
|
|
/** |
|
97
|
|
|
* @param string $number |
|
98
|
|
|
*/ |
|
99
|
24 |
|
private function applyForNineDigits(string $number) |
|
100
|
|
|
{ |
|
101
|
24 |
|
if (strlen($number) != self::LENGTH) { |
|
102
|
8 |
|
$this->format = self::FORMAT_FOR_NINE_NUMBERS; |
|
103
|
8 |
|
$this->regex = self::REGEX_FOR_NINE_NUMBERS; |
|
104
|
8 |
|
$this->length = 9; |
|
105
|
|
|
} |
|
106
|
|
|
} |
|
107
|
|
|
} |
|
108
|
|
|
|