-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpsl2c.py
executable file
·58 lines (47 loc) · 1.33 KB
/
psl2c.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
#!/usr/bin/python
import urllib
import time
PSLURL='https://publicsuffix.org/list/effective_tld_names.dat'
PUBLICSUFFIX_H='services/publicsuffix.h'
def str2rule(str):
str = str.rstrip()
str = str.lstrip()
i = str.find('//')
if i >= 0:
str = str[:i]
str = str.rstrip()
str = str.lstrip()
if len(str) == 0:
return None
return str
def psl2c():
f = urllib.urlopen(PSLURL)
psl = []
ilines = []
lines = f.readlines()
icann = False
for s in lines:
if s.find('==BEGIN ICANN DOMAINS==') >= 0:
icann = True
if s.find('==END ICANN DOMAINS==') >= 0:
icann = False
if icann:
ilines.append(s)
if len(ilines) > 0:
lines = ilines
for s in lines:
s = s.decode('utf-8')
s = str2rule(s)
if s:
psl.append('\t"' + s.encode('idna')+ '"')
f = open(PUBLICSUFFIX_H, "w")
f.write('/* taken from %s */\n' % PSLURL)
f.write('/* at %s UTC */\n' % time.asctime(time.gmtime()))
f.write('#ifndef SERVICES_PUBLICSUFFIXLIST_H\n')
f.write('#define SERVICES_PUBLICSUFFIXLIST_H\n')
f.write('static char *publicsuffix[] = {\n')
f.write(',\n'.join(psl))
f.write('\n};\n')
f.write('#endif /* SERVICES_PUBLICSUFFIXLIST_H */\n')
if __name__ == '__main__':
psl2c()