-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcodicefiscale.go
89 lines (76 loc) · 2.96 KB
/
codicefiscale.go
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
package codicefiscale
import (
"regexp"
)
/*
Verifica codice fiscale
Versione: 1.0
Data: 1/5/2017
Ultima data: 14/2/2022
Autore: Squeeze69
Licenza: LGPL
Porting basato sulle informazioni pubblicate da Umberto Salsi su Icosaedro:
sito web: http://www.icosaedro.it/cf-pi/index.html
package: https://github.com/squeeze69/codicefiscale
con go: go get github.com/squeeze69/codicefiscale
*/
// CFError - error structure for CodiceFiscale - identificabile con typecast
type CFError struct {
msg string
}
func (cf *CFError) Error() string {
return cf.msg
}
// decodifica carattere di controllo cf
var tcf = map[byte]int{
'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,
'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,
}
// map per simulare "ord" di altri linguaggi - più semplice di int(rune) - int('A') oppure int('0')
var ordv = map[byte]int{
'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,
'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,
}
// genera un errore CFError
func errCFError(s string) *CFError {
er := new(CFError)
er.msg = s
return er
}
var alfanumerici = regexp.MustCompile("[^a-zA-Z0-9]")
// CodiceFiscale controlla il codice fiscale, restituisce doppio valore, true/false e messaggio, ove opportuno
// se cfin è vuota, viene considerata valida, per questo caso, il controllo dovrebbe essere altrove
// Ingresso: cfin: stringa,non importa maiuscolo o minuscolo
// Uscita: bool:true (a posto)/false (problemi) e *CFError (nil (a posto)/puntatore all'errore (problemi)
func CodiceFiscale(cfin string) (bool, *CFError) {
if len(cfin) == 0 {
return true, nil //convenzione generale usata sulle routine su Icosaedro
}
if len(cfin) != 16 {
return false, errCFError("Lunghezza Sbagliata")
}
//verifica per simboli inattesi
if alfanumerici.MatchString(cfin) {
return false, errCFError("Caratteri Non validi")
}
// cfin = strings.ToUpper(cfin)
//genera codice di controllo per verifica con quello passato
s := tcf[cfin[14]]
for i := 0; i <= 13; i += 2 {
s += tcf[cfin[i]] + ordv[cfin[i+1]]
}
if s%26 != ordv[cfin[15]] {
return false, errCFError("Carattere Di Controllo Non Valido")
}
return true, nil
}