This repository has been archived by the owner on Sep 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 378
/
lixian_url.py
75 lines (63 loc) · 1.91 KB
/
lixian_url.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
import base64
import urllib
def xunlei_url_encode(url):
return 'thunder://'+base64.encodestring('AA'+url+'ZZ').replace('\n', '')
def xunlei_url_decode(url):
assert url.startswith('thunder://')
url = base64.decodestring(url[10:])
assert url.startswith('AA') and url.endswith('ZZ')
return url[2:-2]
def flashget_url_encode(url):
return 'Flashget://'+base64.encodestring('[FLASHGET]'+url+'[FLASHGET]').replace('\n', '')
def flashget_url_decode(url):
assert url.startswith('Flashget://')
url = base64.decodestring(url[11:])
assert url.startswith('[FLASHGET]') and url.endswith('[FLASHGET]')
return url.replace('[FLASHGET]', '')
def flashgetx_url_decode(url):
assert url.startswith('flashgetx://|mhts|')
name, size, hash, end = url.split('|')[2:]
assert end == '/'
return 'ed2k://|file|'+base64.decodestring(name)+'|'+size+'|'+hash+'/'
def qqdl_url_encode(url):
return 'qqdl://' + base64.encodestring(url).replace('\n', '')
def qqdl_url_decode(url):
assert url.startswith('qqdl://')
return base64.decodestring(url[7:])
def url_unmask(url):
if url.startswith('thunder://'):
return normalize_unicode_link(xunlei_url_decode(url))
elif url.startswith('Flashget://'):
return flashget_url_decode(url)
elif url.startswith('flashgetx://'):
return flashgetx_url_decode(url)
elif url.startswith('qqdl://'):
return qqdl_url_decode(url)
else:
return url
def normalize_unicode_link(url):
import re
def escape_unicode(m):
c = m.group()
if ord(c) < 0x80:
return c
else:
return urllib.quote(c.encode('utf-8'))
def escape_str(m):
c = m.group()
if ord(c) < 0x80:
return c
else:
return urllib.quote(c)
if type(url) == unicode:
return re.sub(r'.', escape_unicode, url)
else:
return re.sub(r'.', escape_str, url)
def unquote_url(x):
x = urllib.unquote(x)
if type(x) != str:
return x
try:
return x.decode('utf-8')
except UnicodeDecodeError:
return x.decode('gbk') # can't decode in utf-8 and gbk