ValidacionTelefonos.py
7.26 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
import re
CaracTelAR = (11,220,221,223,230,236,237,249,260,261,263,264,266,280,291,294,297,298,299,336,341,342,343,345,348,351,353,358,362,364,370,376,379,380,381,
383,385,387,388,2202,2221,2223,2224,2225,2226,2227,2229,2241,2242,2243,2244,2245,2246,2252,2254,2255,2257,2261,2262,2264,2265,2266,2267,2268,2271,
2272,2273,2274,2281,2283,2284,2285,2286,2291,2292,2296,2297,2302,2314,2316,2317,2320,2323,2324,2325,2326,2331,2333,2334,2335,2336,2337,2338,2342,
2343,2344,2345,2346,2352,2353,2354,2355,2356,2357,2358,2392,2393,2394,2395,2396,2473,2474,2475,2477,2478,2622,2624,2625,2626,2646,2647,2648,2651,
2652,2655,2656,2657,2658,2901,2902,2903,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2931,2932,2933,2934,2935,2936,2940,2942,2945,2946,2948,
2952,2953,2954,2962,2963,2964,2966,2972,2982,2983,3327,3329,3382,3385,3387,3388,3400,3401,3402,3404,3405,3406,3407,3408,3409,3435,3436,3437,3438,
3442,3444,3445,3446,3447,3454,3456,3458,3460,3462,3463,3464,3465,3466,3467,3468,3469,3471,3472,3476,3482,3483,3487,3489,3491,3493,3496,3497,3498,
3521,3522,3524,3525,3532,3533,3537,3541,3542,3543,3544,3546,3547,3548,3549,3562,3563,3564,3571,3572,3573,3574,3575,3576,3582,3583,3584,3585,3711,
3715,3716,3718,3721,3725,3731,3734,3735,3741,3743,3751,3754,3755,3756,3757,3758,3772,3773,3774,3775,3777,3781,3782,3786,3821,3825,3826,3827,3832,
3835,3837,3838,3841,3843,3844,3845,3846,3854,3855,3856,3857,3858,3861,3862,3863,3865,3867,3868,3869,3873,3876,3877,3878,3885,3886,3889,3888,3891,
3892,3894)
RootDomain = ("com","org","net","int","edu","gov","mil")
PaisDom = ("ac","ad","ae","af","ag","ai","al","am","ao","aq","ar","as","at","au","aw","ax","az","ba","bb","bd","be","bf","bg","bh","bi","bj","bm","bn","bo","bq","br","bs",
"bt","bw","by","bz","ca","cc","cd","cf","cg","ch","ci","ck","cl","cm","cn","co","cr","cu","cv","cw","cx","cy","cz","de","dj","dk","dm","do","dz","ec","eg","eh","er","es",
"et","eu","fi","fj","fk","fm","fo","fr","ga","gd","ge","gf","gg","gh","gi","gl","gm","gn","gp","gq","gr","gs","gt","gu","gw","gy","hk","hm","hr","ht","hu","id","ie","il",
"im","in","io","iq","ir","is","it","je","jm","jo","jp","ke","kg","kh","ki","km","kn","kp","kr","kw","ky","kz","la","lb","lc","li","lk","lr","ls","lt","lu","lv","ly","ma",
"mc","md","me","mg","mh","mk","ml","mm","mn","mo","mp","mq","mr","ms","mt","mu","mv","mw","mx","my","mz","na","nc","ne","nf","ng","ni","nl","no","np","nr","nu","nz","om",
"pa","pe","pf","pg","ph","pk","pl","pm","pn","pr","ps","pt","pw","py","qa","re","ro","rs","ru","rw","sa","sb","sc","sd","se","sg","sh","si","sk","sl","sm","sn","so","sr",
"ss","st","su","sv","sx","sy","sz","tc","td","tf","tg","th","tj","tk","tl","tm","tn","to","tr","tt","tv","tw","tz","ua","ug","uk","us","uy","uz","va","vc","ve","vg","vi",
"vn","vu","wf","ws","ye","yt","za","zm","zw")
Ecepciones = ("gov.ar", "gob.ar", "edu.ar", "mil.ar", "nic.ar")
class ValidacionCorreo():
"""clase para revisar que los mails tengan los requisitos minimos para tratar de envia"""
def ValidarCorreo(self, correo):
"""si cumpre devuelve el mail, sino devuelve False"""
Correo = str(correo).lower()
Correo = Correo.replace(" ","")
Correo = Correo.replace("\t","")
Correo = Correo.replace("\n","")
if self.validarcorreo(Correo) == False:
Correo = False
return(Correo)
def validarcorreo(self, correo):
c = correo.split("@")
estado = True
usuario = c[0]
dominio = c[1]
if len(usuario) < 2:
estado = False
if False == self.validacionDominio(dominio):
estado = False
return(estado)
def validacionDominio(self, dominio):
"""si es un dominio valido, devuelve true sino false"""
d = dominio.split(".")
if d[-2]+d[-1] in Ecepciones:#Ecepcion a la validacion
return(True)
error = True
if len(d) > 3:#esta revision esta mal hay que repensarla
error = False
if 2 > len(d):
error = False
if not d[1] in RootDomain:
error = False
if len(d) == 3:
if not d[2] in PaisDom:
error = False
return(error)
class ValidacionTelefonosArgentinos():
"""Esta clase maneja numeros de telefonos humanos y reconstruye los
Codigos internacionales"""
def __init__(self):
self.CarcTelAr = CaracTelAR
self.AreaDefault = "341"
self.Internacional = True
self.InternalCod = "54"
self.InternalCodLargo = "549"
def ValidarTelefono(self, tel, area="", internacional="", CodigoInternacional=""):
if area == "":
area = self.AreaDefault
if internacional == "":
internacional = self.Internacional
if CodigoInternacional == "":
CodigoInternacional = self.InternalCod
try:
n = self.validarTelefono(tel, area)
if internacional == True:
n = CodigoInternacional + n
except:
n = False
return(n)
def internacionalNumero(self, tel):
if tel[0]+tel[1]+tel[2] == self.InternalCodLargo:
#print("borro codigo internacional largo")
tel = tel[1:]
tel = tel[1:]
tel = tel[1:]
return(tel)
if tel[0]+tel[1] == self.InternalCod:
#print("borro codigo internacional")
tel = tel[1:]
tel = tel[1:]
return(tel)
def validarTelefono(self, tel, area):
TEL = self.ExtraerNoNumero(tel)
TEL = self.internacionalNumero(TEL)
#print(TEL)
TEL = self.QuitarCeroDelante(TEL)
TEL = self.AgregarAreaDefault(TEL, area)
Caract = self.ComprovacionCaracteristica(TEL)
TEL = self.SacarEl15(TEL, Caract)
self.LargoTelefono(TEL)
Caract = self.ComprovacionCaracteristica(TEL)
if Caract == False:
TEL = False
if not len(TEL) == 10:
TEL = False
return(TEL)
def AgregarAreaDefault(self, tel, area):
if len(tel) < 10:
tel = area + tel
return(tel)
def SacarEl15(self, tel, Caract):
if len(tel) < 10:
return(False)
if len(tel) == 10:
return(tel)
#n = len(tel)
c = len(Caract)
for x in range(c + 2):
tel = tel[1:]
return(Caract+tel)
def ComprovacionCaracteristica(self, tel):
for numero in CaracTelAR:
numero = str(numero)
l = len(numero)
#print(tel)
if l == 2:
Tl = tel[0] + tel[1]
if l == 3:
Tl = tel[0] + tel[1] + tel[2]
if l == 4:
Tl = tel[0] + tel[1] + tel[2] + tel[3]
if Tl == numero:
return(numero)
return(False)
def ExtraerNoNumero(self, tel):
tel = str(tel)
tel = re.sub("[^0-9]", "", tel)
return(tel)
def validarnumero(self):
pass
def QuitarCeroDelante(self, tel):
if self.DetectarCeroDelante(tel) == True:
return(tel[1:])
return(tel)
def DetectarCeroDelante(self, tel):
if str(tel)[0] == "0":
return(True)
return(False)
def LargoTelefono(self, tel):
l = len(str(tel))
if l == 10:
return(str(tel))
return(False)