-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhoistel.py
executable file
·490 lines (359 loc) · 12.4 KB
/
whoistel.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
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
#!/usr/bin/python2
#-*- encoding: Utf-8 -*-
from urllib import quote_plus
from urllib2 import urlopen
from sqlite3 import connect
from socket import timeout
from os.path import exists
from sys import argv, exit
from datetime import date
from json import loads
import os
# Se mettre dans le même dossier que le script
abspath = os.path.abspath(__file__)
dname = os.path.dirname(abspath)
os.chdir(dname)
# Variables globales
tel = None
useAnnu = True
useOVH = True
is_EZABPQMCDU = False
is_special = False
urlAnnu = 'http://v3.annu.com/cgi-bin/srch.cgi?j=1&n=10&s='
urlOVH = 'https://www.ovhtelecom.fr/cgi-bin/ajax/ajaxEligibilityCheck.cgi?lightRequest=yes&number='
# Interpréter les arguments
for arg in argv[1:]:
arg = arg.replace('-','')
arg = arg.replace(' ','')
arg = arg.replace('.','')
arg = arg.replace('+33(0)','0')
arg = arg.replace('+330','0')
arg = arg.replace('+33','0')
arg = arg.strip().lower()
if arg.isdigit() and tel is None:
tel = arg
elif arg == 'noannu':
useAnnu = False
elif arg == 'noovh':
useOVH = False
else:
tel = None
break
# Message d'utilisation
if tel is None:
print 'Utilisation : %s <numéro de téléphone français> [--no-annu] [--no-ovh]' % argv[0]
exit()
# Fonctions d'information
def section(text):
print
print '+-' + '-' * len(text) + '-+'
print '| ' + text + ' |'
print '+-' + '-' * len(text) + '-+'
print
def erreur(text):
print '[Erreur] ' + text
print
exit()
# Se connecter à la base de données de l'ARCEP en local
if not exists('whoistel.sqlite3'):
erreur('Vous devez générer le fichier "whoistel.sqlite3" avec generatedb.py.')
conn = connect('whoistel.sqlite3')
c = conn.cursor()
# Fonctions pour l'ARCEP
def getInfosINSEE(codeINSEE):
c.execute('SELECT * FROM Communes WHERE CodeInsee=?', (codeINSEE,))
infos = c.fetchone()
print
"""
print u'Commune : ' + infos[1]
print u'Département : ' + infos[3]
print u'Code postal : ' + str(infos[2]).zfill(5)
print u'Code INSEE : ' + str(codeINSEE).zfill(5)
"""
def getInfosOperateur(codeOperateur):
c.execute('SELECT * FROM Operateurs WHERE CodeOperateur=?', (codeOperateur,))
infos = c.fetchone()
print
print u'Opérateur : ' + infos[1]
print u'Code opérateur : ' + codeOperateur
print u'Type : ' + infos[2][0].upper() + infos[2][1:]
if infos[3] != u'':
print u'Courriel : ' + infos[3]
if infos[4] != u'':
url = infos[4].lower()
if not url.startswith('http'):
url = 'http://' + url
if '/' not in infos[4][8:]:
url += '/'
print u'Site web : ' + url
def getGeographicNumberARCEP():
c.execute('SELECT * FROM PlagesNumerosGeographiques WHERE PlageTel=?', (int(tel[1:6]),))
infos = c.fetchone()
print infos
if infos is None:
getNonGeographicNumberARCEP()
else:
getInfosINSEE(infos[2])
getInfosOperateur(infos[1])
def getNonGeographicNumberARCEP():
for lenTel in xrange(min(6, len(tel)), 0, -1):
c.execute('SELECT * FROM PlagesNumeros WHERE PlageTel=?', (tel[:lenTel],))
infos = c.fetchone()
if infos is not None:
break
if infos is None:
erreur('Numéro inconnu.')
else:
getInfosOperateur(infos[1])
# Fonctions pour les numéros spéciaux
def getSurtax():
print
newRates = (date.today().year >= 2015)
if len(tel) == 10:
type08 = int(tel[2:4])
if type08 >= 90:
print 'Dénomination commerciale : Numéro Audiotel'
if (newRates and type08 <= 5) or (type08 in (1, 2, 3, 4, 8)):
print 'Dénomination commerciale : Numéro Vert'
print 'Prix : Entièrement gratuit'
elif type08 <= 9:
print 'Dénomination commerciale : Numéro Vert'
print 'Surtaxe : Non'
elif 10 <= type08 <= 19 or type08 == 84:
print 'Dénomination commerciale : Numéro Azur'
print 'Surtaxe par appel : 0,078 €'
print 'Surtaxe par minute : 0,014 € en heures creuses, ou 0,028 € en heures pleines'
elif type08 == 20 or type08 == 21:
print 'Dénomination commerciale : Numéro Indigo'
print 'Surtaxe maximum par appel : 0,112 €'
print 'Surtaxe maximum par minute après 56s : 0,118 €'
elif type08 == 25 or type08 == 26:
print 'Dénomination commerciale : Numéro Indigo'
print 'Surtaxe par appel : 0,112 €'
print 'Surtaxe par minute après 45s : 0,15 €'
elif type08 == 36:
print 'Prix : Variable (services divers)'
elif 40 <= type08 <= 43:
print "Utilisation : Numéro technique destiné à l'acheminement des communications," +\
"ne doit pas être appelé directement (cf décision n°2006-0452)"
elif 50 <= type08 <= 58:
print 'Prix : Variable (accès VPN RPC)'
elif 60 <= type08 <= 68:
print 'Prix : Variable (accès RTC)'
elif type08 == 90:
print 'Surtaxe : Dépend du numéro et du FAI.'
print ' - Orange : Maximum de 0,112 € toutes les 45s'
if tel[4:6] == '64':
print ' - SFR : 0,112 € toutes les 60s'
elif tel[4:6] == '71':
print ' - SFR : 0,15 € par minute, paliers de 45s'
else:
print ' - SFR : Inconnu'
print ' - Free : 0,11 € puis, après 45s, 0,15€ par minute'
elif type08 == 91:
print 'Surtaxe par appel (Free) : 0,09 €'
print 'Surtaxe toutes les 30s : 0,112 €'
print 'Durée maximale : 30 minutes'
elif type08 == 92:
print 'Surtaxe par appel (Free) : 0,09 €'
print 'Surtaxe toutes les 20s : 0,112 €'
print 'Durée maximale : 30 minutes'
elif type08 == 93:
print 'Surtaxe : inconnue'
elif type08 == 97:
print 'Surtaxe par appel : 0,562 €'
elif type08 == 99:
print 'Surtaxe par appel : Dépend du FAI.'
print ' - Orange : 12s gratuites puis 1,349 €'
print ' - Free : 1,35 €'
print ' - SFR : 1,462 €'
print 'Surtaxe toutes les 20s : 0,112 €'
else:
erreur('Numéro inconnu.')
elif tel == '1044':
print 'Surtaxe par appel : 0,078 €'
print 'Surtaxe par minute : 0,014 € en heures creuses, ou 0,028 € en heures pleines'
elif tel.startswith('10'):
print 'Surtaxe : Non'
def getSurtax118():
surtax118 = {
0: '1,46 € / appel, 1,46 € les 2 premières min puis 0,90 € à partir 3ème min',
6: '1,35 €/appel + 0,34 €/min',
7: '1,35 €/appel + 0,34 €/min',
8: '1,46 €/appel + 0,45 €/min',
218: '0,90 €/appel + 0,90 €/min',
222: '0,90 €/appel + 0,90 €/min',
318: '0,90 €/appel + 0,90 €/min',
612: '1,01 €/appel',
700: '3 €/appel',
710: '0 €',
711: '0,79 €/appel + 0,225 €/min',
712: '1,35 €/appel + 0,225 €/min',
713: '0 €',
777: '1,20 €/appel (SFR uniquement)',
888: '1,12 €/appel + 1,11 €/min',
}
if int(tel[3:]) in surtax118:
print 'Surtaxe : ' + surtax118[int(tel[3:])]
else:
erreur('Numéro inconnu.')
def getSpecial():
special = {
15: 'SAMU',
17: 'Police et gendarmerie',
18: 'Pompiers',
110: 'Collecte de dons',
112: "Numéro d'urgence européen",
115: 'SAMU social',
116000: 'SOS enfants disparus'
}
if int(tel) in special:
print 'Type : Spécial'
print 'Fonction : ' + special[int(tel)]
else:
erreur('Numéro inconnu.')
# Fonctions pour Annu.com
def getAnnu():
section('Informations Annu.com')
try:
infos = loads(urlopen(urlAnnu + tel, timeout=15).read().decode('cp1252'))
goodResults = False
# Avons-nous au moins un résultat ?
if 'liste_part' in infos:
infos = infos['liste_part'] + infos['liste_pro']
if len(infos) > 0:
for people in infos:
# Vérifier qu'au moins un des numéros de téléphone
# est celui que nous cherchons, sinon c'est un
# faux-positif.
numeroOk = False
for numero in people['numeros']:
if numero.replace(' ','') == tel:
numeroOk = True
break
if not numeroOk:
continue
# Afficher les informations
if goodResults:
print
goodResults = True
if people['firstname'] != '':
print u'Prénom : ' + people['firstname']
if people['name'] != '':
print u'Nom : ' + people['name']
if people['name'] != '' or people['firstname'] != '':
print
print u'Adresse : ' + people['address']
print u'Commune : ' + people['city']
print u'Code postal : ' + people['zipcode']
if people['email'] != '':
print u'Courriel : ' + people['email']
if people['activite'] != '':
print u'Activité : ' + people['activite'][0].upper() + people['activite'][1:]
if len(people['numeros']) > 1:
printAutreNumero = False
for num in people['numeros']:
if printAutreNumero:
print u' - ' + num
else:
print u'Numéros : - ' + num
printAutreNumero = True
if people['lat'] != '':
print u'Position : %s, %s' % (
people['lat'],
people['long']
)
print u'Google Maps : https://maps.google.com/maps?q=%s,%s&hl=fr' % (
people['lat'],
people['long']
)
else:
print u'Google Maps : https://maps.google.com/maps?q=%s&hl=fr' % \
quote_plus(
(
u'%s, %s %s' % (
people['address'],
people['zipcode'],
people['city']
)
).encode('utf8')
)
if not goodResults:
print "Pas d'informations disponibles."
except timeout:
erreur('Impossible de se connecter à Annu.com (timeout : 15 secondes).')
# Fonctions pour OVH Telecom
def getOVH():
section('Informations OVH Telecom')
try:
infos = loads(urlopen(urlOVH + tel, timeout=15).read())
if 'line' in infos and 'active' in infos['line']:
infos = infos['line']['active']
if infos['address']['additionnalInfos']['porte'] != '':
print u'Porte : ' + infos['address']['additionnalInfos']['porte']
if infos['address']['additionnalInfos']['etage'] != '':
print u'Étage : ' + infos['address']['additionnalInfos']['etage']
if infos['address']['additionnalInfos']['escalier'] != '':
print u'Escalier : ' + infos['address']['additionnalInfos']['escalier']
if infos['address']['additionnalInfos']['batiment'] != '':
print u'Bâtiment : ' + infos['address']['additionnalInfos']['batiment']
if infos['address']['additionnalInfos']['residence'] != '':
print u'Résidence : ' + infos['address']['additionnalInfos']['residence']
print u'Adresse : ' + infos['address']['addressFull']
print u'Commune : ' + infos['address']['city']
print u'Code postal : ' + infos['address']['postalCode']
print u'Code INSEE : ' + infos['address']['inseeCode']
print
print u'NRA : ' + infos['line']['nra']
c.execute('SELECT * FROM Communes WHERE CodeInsee=?', (infos['line']['nraInfo']['codeInsee'],))
insee = c.fetchone()
print u'Commune du NRA : %d %s' % (insee[2], insee[1])
print u'Lignes du NRA : ' + str(infos['line']['nraLines'])
if 'nraGpsInfo' in infos['line']:
print u'Position du NRA : %s, %s' % (
infos['line']['nraGpsInfo']['latitude'],
infos['line']['nraGpsInfo']['longitude'])
print u'NRA sur Google Maps : https://maps.google.com/maps?q=%s,%s&hl=fr' % (
infos['line']['nraGpsInfo']['latitude'],
infos['line']['nraGpsInfo']['longitude'])
if infos['line']['distance'] > 0:
print u'Distance du NRA : %d mètres' % infos['line']['distance']
else:
print "Pas d'informations disponibles."
except timeout:
erreur('Impossible de se connecter à OVHTelecom.fr (timeout : 15 secondes).')
# Déterminer le type de numéro de téléphone
section('Informations ARCEP')
print 'Numéro : ' + tel
if tel[0] == '0' and len(tel) == 10: # EZABPQMCDU
print 'Type : EZABPQMCDU'
is_EZABPQMCDU = True
elif len(tel) == 4 or (len(tel) == 6 and tel.startswith('118')): # 3BPQ, 10XY, 16XY
if tel[0] == '3':
print 'Type : 3BPQ'
elif tel.startswith('118'):
print 'Type : 118XYZ'
getSurtax118()
else:
print 'Type : ' + tel[:2] + 'XY'
elif len(tel) == 2 or len(tel) == 3 or len(tel) == 6:
is_special = True
getSpecial()
else:
erreur('Numéro inconnu.')
# Afficher les informations de l'ARCEP
if is_EZABPQMCDU and '1' <= tel[1] <= '5':
getGeographicNumberARCEP()
elif not is_special:
getNonGeographicNumberARCEP()
if (is_EZABPQMCDU and tel[1] == '8') or tel.startswith('10'):
getSurtax()
# Afficher les informations d'Annu.com
if useAnnu and is_EZABPQMCDU and tel[1] != '8':
getAnnu()
# Afficher les informations d'OVH
if useOVH and is_EZABPQMCDU and '1' <= tel[1] <= '5':
getOVH()
# Fermer la connexion à la base de données de l'ARCEP
print
conn.close()