1 | <?php |
||
10 | class Calculator |
||
11 | { |
||
12 | private $subject; |
||
13 | private $omocodiaLevel = 0; |
||
14 | |||
15 | /** |
||
16 | * Array of available vowels. |
||
17 | */ |
||
18 | private $vowels = array('A', 'E', 'I', 'O', 'U'); |
||
19 | |||
20 | /** |
||
21 | * Array of all available months. |
||
22 | */ |
||
23 | private $months = array( |
||
24 | '1' => 'A', |
||
25 | '2' => 'B', |
||
26 | '3' => 'C', |
||
27 | '4' => 'D', |
||
28 | '5' => 'E', |
||
29 | '6' => 'H', |
||
30 | '7' => 'L', |
||
31 | '8' => 'M', |
||
32 | '9' => 'P', |
||
33 | '10' => 'R', |
||
34 | '11' => 'S', |
||
35 | '12' => 'T', |
||
36 | ); |
||
37 | |||
38 | /** |
||
39 | * Array of all avaialable odd characters. |
||
40 | */ |
||
41 | private $odd = array( |
||
42 | '0' => 1, |
||
43 | '1' => 0, |
||
44 | '2' => 5, |
||
45 | '3' => 7, |
||
46 | '4' => 9, |
||
47 | '5' => 13, |
||
48 | '6' => 15, |
||
49 | '7' => 17, |
||
50 | '8' => 19, |
||
51 | '9' => 21, |
||
52 | 'A' => 1, |
||
53 | 'B' => 0, |
||
54 | 'C' => 5, |
||
55 | 'D' => 7, |
||
56 | 'E' => 9, |
||
57 | 'F' => 13, |
||
58 | 'G' => 15, |
||
59 | 'H' => 17, |
||
60 | 'I' => 19, |
||
61 | 'J' => 21, |
||
62 | 'K' => 2, |
||
63 | 'L' => 4, |
||
64 | 'M' => 18, |
||
65 | 'N' => 20, |
||
66 | 'O' => 11, |
||
67 | 'P' => 3, |
||
68 | 'Q' => 6, |
||
69 | 'R' => 8, |
||
70 | 'S' => 12, |
||
71 | 'T' => 14, |
||
72 | 'U' => 16, |
||
73 | 'V' => 10, |
||
74 | 'W' => 22, |
||
75 | 'X' => 25, |
||
76 | 'Y' => 24, |
||
77 | 'Z' => 23, |
||
78 | ); |
||
79 | |||
80 | /** |
||
81 | * Array of all avaialable even characters. |
||
82 | */ |
||
83 | private $even = array( |
||
84 | '0' => 0, |
||
85 | '1' => 1, |
||
86 | '2' => 2, |
||
87 | '3' => 3, |
||
88 | '4' => 4, |
||
89 | '5' => 5, |
||
90 | '6' => 6, |
||
91 | '7' => 7, |
||
92 | '8' => 8, |
||
93 | '9' => 9, |
||
94 | 'A' => 0, |
||
95 | 'B' => 1, |
||
96 | 'C' => 2, |
||
97 | 'D' => 3, |
||
98 | 'E' => 4, |
||
99 | 'F' => 5, |
||
100 | 'G' => 6, |
||
101 | 'H' => 7, |
||
102 | 'I' => 8, |
||
103 | 'J' => 9, |
||
104 | 'K' => 10, |
||
105 | 'L' => 11, |
||
106 | 'M' => 12, |
||
107 | 'N' => 13, |
||
108 | 'O' => 14, |
||
109 | 'P' => 15, |
||
110 | 'Q' => 16, |
||
111 | 'R' => 17, |
||
112 | 'S' => 18, |
||
113 | 'T' => 19, |
||
114 | 'U' => 20, |
||
115 | 'V' => 21, |
||
116 | 'W' => 22, |
||
117 | 'X' => 23, |
||
118 | 'Y' => 24, |
||
119 | 'Z' => 25, |
||
120 | ); |
||
121 | |||
122 | /** |
||
123 | * Array of all avaialable omocodia characters. |
||
124 | */ |
||
125 | private $omocodiaCodes = array( |
||
126 | '0' => 'L', |
||
127 | '1' => 'M', |
||
128 | '2' => 'N', |
||
129 | '3' => 'P', |
||
130 | '4' => 'Q', |
||
131 | '5' => 'R', |
||
132 | '6' => 'S', |
||
133 | '7' => 'T', |
||
134 | '8' => 'U', |
||
135 | '9' => 'V', |
||
136 | ); |
||
137 | |||
138 | /** |
||
139 | * Create a Codice Fiscale instance. |
||
140 | * |
||
141 | * @param Subject $subject The subject that will have the codice fiscale. |
||
142 | * @param $properties An array with additional properties. |
||
143 | */ |
||
144 | 22 | public function __construct(Subject $subject, $properties = array()) |
|
152 | |||
153 | /** |
||
154 | * Calculate the code fiscale. |
||
155 | * |
||
156 | * @returns Returns the complete codice fiscale. |
||
157 | */ |
||
158 | 22 | public function calculate() |
|
166 | |||
167 | /** |
||
168 | * Calculate all possibilities for the code fiscale. |
||
169 | * |
||
170 | * @returns Returns the complete codice fiscale. |
||
171 | */ |
||
172 | 3 | public function calculateAllPossibilities() |
|
182 | |||
183 | /** |
||
184 | * Calculate the surname part of the codice fiscale. |
||
185 | * |
||
186 | * @returns Returns the surname part of the codice fiscale. |
||
187 | */ |
||
188 | 22 | private function calculateSurname() |
|
200 | |||
201 | /** |
||
202 | * Calculate the name part of the codice fiscale. |
||
203 | * |
||
204 | * @returns Returns the name part of the codice fiscale. |
||
205 | */ |
||
206 | 22 | private function calculateName() |
|
220 | |||
221 | /** |
||
222 | * Calculate small string for the given parameters (used by name and surname). |
||
223 | * |
||
224 | * @param $consonants A consonants string. |
||
225 | * @param $string The small string. |
||
226 | * @returns Returns the calculated result for the small string. |
||
227 | */ |
||
228 | 15 | private function calculateSmallString($consonants, $string) |
|
236 | |||
237 | /** |
||
238 | * Calculate the birth date and the gender. |
||
239 | * |
||
240 | * @returns Returns the birth date and gender part of the codice fiscale. |
||
241 | */ |
||
242 | 22 | private function calculateBirthDateAndGender() |
|
253 | |||
254 | /** |
||
255 | * Calculate the Belfiore code. |
||
256 | * |
||
257 | * @returns Returns the Belfiore code. |
||
258 | */ |
||
259 | 22 | private function calculateBelfioreCode() |
|
263 | |||
264 | /** |
||
265 | * Calculate the check digit. |
||
266 | * |
||
267 | * @param $temporaryCodiceFiscale The first part of the codice fiscale. |
||
268 | * @returns Returns the check digit part of the codice fiscale. |
||
269 | */ |
||
270 | 22 | private function calculateCheckDigit($temporaryCodiceFiscale) |
|
277 | |||
278 | /** |
||
279 | * Calculate the sum by the given dictionary for the given temporary codice fiscale. |
||
280 | * |
||
281 | * @param $temporaryCodiceFiscale The temporary codice fiscale. |
||
282 | * @param $dictionaryArray The dictionary array. |
||
283 | * @param $i The start index value. |
||
284 | * @returns Returns the sum by the given dictionary for the given temporary codice fiscale. |
||
285 | */ |
||
286 | 22 | private function calculateSumByDictionary($temporaryCodiceFiscale, $dictionaryArray, $i) |
|
296 | |||
297 | /** |
||
298 | * Calculate the omocodia case (additional translation). |
||
299 | * |
||
300 | * @param $temporaryCodiceFiscale The first part of the codice fiscale. |
||
301 | * @returns Returns the new codice fiscale. |
||
302 | */ |
||
303 | 22 | private function calculateOmocodia($temporaryCodiceFiscale) |
|
320 | |||
321 | /** |
||
322 | * Clean the string removing some characters. |
||
323 | * |
||
324 | * @param $string The string to clean. |
||
325 | * @returns Returns a clean string. |
||
326 | */ |
||
327 | 22 | private function cleanString($string) |
|
331 | } |
||
332 |