forked from Liguria-Digitale/GTFS2NeTEx-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SupportUtilitiesSubComponent.py
79 lines (57 loc) · 2.08 KB
/
SupportUtilitiesSubComponent.py
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
import re
class StringUtilities():
def filterOutNotMultilingualChars(self, iString):
specialCharsAmpersand="&"
specialCharsGreaterThan=">"
specialCharsLessThan="<"
specialCharsApostrophe="'"
specialCharsDeUMin="ü"
specialCharsDeOMin="ö"
specialCharsDeOMaj="Ö"
outString=iString
sCData="<![CDATA["
eCData="]]>"
if((specialCharsAmpersand in iString) or (specialCharsGreaterThan in iString) or (specialCharsLessThan in iString)
or (specialCharsApostrophe in iString) or (specialCharsDeUMin in iString) or (specialCharsDeOMin in iString) or (specialCharsDeOMaj in iString)):
outString=sCData + iString + eCData
else:
outString=iString
return outString
def formatShortDay2UTC(self, iString):
outString=iString[0:4] + "-" + iString[4:6] + "-" + iString[6:8]
return outString
def controllaPIVA(partita_iva):
# Controllo partita IVA.
# Author: Gabriele Muciaccia <gabrielemuciacciaATonenetbeyond.org>
# Version: 2016-08-21
# Parameters:
# partita_iva: stringa vuota o partita IVA di 11 cifre.
# Return: stringa vuota se il codice di controllo della partita IVA
# e' corretto oppure se e' la stringa vuota, altrimenti un
# messaggio di errore..
outString=True
IVA_REGEXP = "^[0-9]{11}$"
ORD_ZERO = ord('0')
if 0 == len(partita_iva):
print('Wrong')
outString=False
return outString
if 11 != len(partita_iva):
print('La lunghezza della partita IVA non è corretta; dovrebbe essere lunga esattamente 11 caratteri.\n')
outString=False
return outString
match = re.match(IVA_REGEXP, partita_iva)
if not match:
print('La partita IVA contiene dei caratteri non ammessi: dovrebbe contenere solo cifre.\n')
s = 0
for i in range(0, 10, 2):
s += ord(partita_iva[i]) - ORD_ZERO
for i in range(1, 10, 2):
c = 2 * (ord(partita_iva[i]) - ORD_ZERO)
if c > 9:
c -= 9
s += c
if (10 - s%10)%10 != ord(partita_iva[10]) - ORD_ZERO:
print('La partita IVA non è valida: il codice di controllo non corrisponde.')
outString=False
return outString