-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
144 lines (128 loc) · 4.85 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
const checkCodeOdd = {
0: 1, 1: 0, 2: 5, 3: 7, 4: 9, 5: 13, 6: 15, 7: 17, 8: 19, 9: 21, A: 1, B: 0, C: 5, D: 7, E: 9, F: 13, G: 15, H: 17, I: 19, J: 21, K: 2, L: 4, M: 18, N: 20, O: 11, P: 3, Q: 6, R: 8, S: 12, T: 14, U: 16, V: 10, W: 22, X: 25, Y: 24, Z: 23
}
const checkCodeEven = {
0: 0, 1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, A: 0, B: 1, C: 2, D: 3, E: 4, F: 5, G: 6, H: 7, I: 8, J: 9, K: 10, L: 11, M: 12, N: 13, O: 14, P: 15, Q: 16, R: 17, S: 18, T: 19, U: 20, V: 21, W: 22, X: 23, Y: 24, Z: 25
}
const omocodeTable = ['L', 'M', 'N', 'P', 'Q', 'R', 'S', 'T', 'U', 'V']
const checkCodeChars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
const monthCodes = ['A', 'B', 'C', 'D', 'E', 'H', 'L', 'M', 'P', 'R', 'S', 'T']
const comuni = require('./comuni')
const statiEsteri = require('./stati_esteri')
const moment = require('moment')
module.exports = {
parse: function (cf) {
cf = cf.toUpperCase()
if (!this.check(cf)) {
return false
}
const yearCode = cf.substr(6, 2)
const year19XX = parseInt('19' + yearCode, 10)
const year20XX = parseInt('20' + yearCode, 10)
const currentYear = new Date().getFullYear()
const year = year20XX > currentYear ? year19XX : year20XX
const monthChar = cf.substr(8, 1)
const month = monthCodes.indexOf(monthChar) + 1
let sesso = 'M'
let day = parseInt(cf.substr(9, 2), 10)
if (day > 31) {
sesso = 'F'
day = day - 40
}
const dataNascita = year + '-' + month.toString().padStart(2, '0') + '-' + day.toString().padStart(2, '0')
const codiceCatastale = cf.substr(11, 4)
let luogoNascita = comuni.find(i => i.codiceCatastale === codiceCatastale)
if (luogoNascita) {
return {
nome: cf.substr(3, 3),
cognome: cf.substr(0, 3),
sesso: sesso,
data_nascita: dataNascita,
comune_nascita: luogoNascita.nome,
provincia_nascita: luogoNascita.sigla,
cap_nascita: luogoNascita.cap[0],
cod_catastale_nascita: luogoNascita.codiceCatastale
}
} else {
luogoNascita = statiEsteri.find(i => i.codiceCatastale === codiceCatastale)
return {
nome: cf.substr(3, 3),
cognome: cf.substr(0, 3),
sesso: sesso,
data_nascita: dataNascita,
comune_nascita: luogoNascita.nome,
provincia_nascita: 'EE',
cap_nascita: '',
cod_catastale_nascita: luogoNascita.codiceCatastale
}
}
},
stringify: function (data) {
let code = ''
code += (data.cognome.toUpperCase().replace(/[^BCDFGHJKLMNPQRSTVWXYZ]/gi, '') + data.cognome.toUpperCase().replace(/[^AEIOU]/gi, '') + 'XXX').substr(0, 3)
code += (data.nome.toUpperCase().replace(/[^BCDFGHJKLMNPQRSTVWXYZ]/gi, '') + data.nome.toUpperCase().replace(/[^AEIOU]/gi, '') + 'XXX').substr(0, 3)
const dataNascita = moment(data.data_nascita, 'YYYY-MM-DD')
code += dataNascita.format('YY')
code += monthCodes[parseInt(dataNascita.format('M') - 1, 10)]
let day = parseInt(dataNascita.format('D'))
if (data.sesso.toUpperCase() === 'F') {
day += 40
}
code += day.toString().padStart(2, '0')
let comuneNascita = null
if (data.comune_nascita) {
comuneNascita = comuni.find(i => i.nome.toLowerCase() === data.comune_nascita.toLowerCase())
}
if (data.cap_nascita) {
comuneNascita = comuni.find(i => i.cap.indexOf(data.cap_nascita) > -1)
}
if (data.cod_catastale_nascita) {
comuneNascita = comuni.find(i => i.codiceCatastale.toLowerCase() === data.cod_catastale_nascita.toLowerCase())
}
if (!comuneNascita) {
if (data.cod_catastale_nascita) {
comuneNascita = statiEsteri.find(i => i.codiceCatastale.toLowerCase() === data.cod_catastale_nascita.toLowerCase())
}
if (data.comune_nascita) {
comuneNascita = statiEsteri.find(i => i.nome.toLowerCase() === data.comune_nascita.toLowerCase())
}
}
if (!comuneNascita) {
return false
}
code += comuneNascita.codiceCatastale
code += getCheckCode(code)
return code.toUpperCase()
},
check: function (cf) {
if (typeof cf !== 'string') {
return false
}
cf = cf.toUpperCase()
if (cf.length !== 16) {
return false
}
return getCheckCode(cf.slice(0, 15)) === cf.charAt(15)
},
getOmocodes: function (code) {
const results = []
let lastOmocode = (code = code.slice(0, 15))
for (let i = code.length - 1; i >= 0; i = i - 1) {
const char = code[i]
if (char.match(/\d/) !== null) {
lastOmocode = lastOmocode.substr(0, i) + omocodeTable[char] + lastOmocode.substr(i + 1)
results.push(lastOmocode + getCheckCode(lastOmocode))
}
}
return results
}
}
const getCheckCode = function (cf) {
let val = 0
for (let i = 0; i < 15; i = i + 1) {
const c = cf[i]
val += i % 2 !== 0 ? checkCodeEven[c] : checkCodeOdd[c]
}
val = val % 26
return checkCodeChars.charAt(val)
}