forked from PeterDing/iScript
-
Notifications
You must be signed in to change notification settings - Fork 3
/
91porn.py
executable file
·144 lines (125 loc) · 4.88 KB
/
91porn.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
#!/usr/bin/env python2
# vim: set fileencoding=utf8
import os
import sys
import requests
import urlparse
import re
import argparse
import random
import select
############################################################
# wget exit status
wget_es = {
0: "No problems occurred.",
2: "User interference.",
1<<8: "Generic error code.",
2<<8: "Parse error - for instance, when parsing command-line " \
"optio.wgetrc or .netrc...",
3<<8: "File I/O error.",
4<<8: "Network failure.",
5<<8: "SSL verification failure.",
6<<8: "Username/password authentication failure.",
7<<8: "Protocol errors.",
8<<8: "Server issued an error response."
}
############################################################
s = '\x1b[1;%dm%s\x1b[0m' # terminual color template
headers = {
"Accept":"text/html,application/xhtml+xml,application/xml; " \
"q=0.9,image/webp,*/*;q=0.8",
"Accept-Encoding":"text/html",
"Accept-Language":"en-US,en;q=0.8,zh-CN;q=0.6,zh;q=0.4,zh-TW;q=0.2",
"Content-Type":"application/x-www-form-urlencoded",
"User-Agent":"Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 " \
"(KHTML, like Gecko) Chrome/32.0.1700.77 Safari/537.36"
}
ss = requests.session()
ss.headers.update(headers)
class nrop19(object):
def __init__(self, url=None):
self.url = url
self.download = self.play if args.play else self.download
def get_infos(self):
r = ss.get(self.url)
if r.ok:
n1 = re.search(r'so.addVariable\(\'file\',\'(\d+)\'', r.content)
n2 = re.search(r'so.addVariable\(\'seccode\',\'(.+?)\'', r.content)
n3 = re.search(r'so.addVariable\(\'max_vid\',\'(\d+)\'', r.content)
if n1 and n2 and n3:
apiurl = 'http://%s/getfile.php' \
% urlparse.urlparse(self.url).hostname
params = {
'VID': n1.group(1),
'mp4': 1,
'seccode': n2.group(1),
'max_vid': n3.group(1),
}
r = ss.get(apiurl, params=params)
if r.ok:
dlink = re.search(r'file=(http.+?\.mp4)', r.content).group(1)
name = re.search(r'viewkey=([\d\w]+)', self.url).group(1)
infos = {
'name': '%s.mp4' % name,
'file': os.path.join(os.getcwd(), '%s.mp4' % name),
'dir_': os.getcwd(),
'dlink': dlink
}
self.download(infos)
else:
print s % (91, ' Error at get(apiurl)')
else:
print s % (91, ' You are blocked')
def download(self, infos):
num = random.randint(0, 7) % 7
col = s % (num + 90, infos['file'])
print '\n ++ 正在下载: %s' % col
cookies = '; '.join(['%s=%s' % (i, ii) for i, ii in ss.cookies.items()])
if args.aria2c:
cmd = 'aria2c -c -x10 -s10 ' \
'-o "%s.tmp" -d "%s" --header "User-Agent: %s" ' \
'--header "Cookie: %s" "%s"' \
% (infos['name'], infos['dir_'], \
headers['User-Agent'], cookies, infos['dlink'])
else:
cmd = 'wget -c -O "%s.tmp" --header "User-Agent: %s" ' \
'--header "Cookie: %s" "%s"' \
% (infos['file'], headers['User-Agent'], cookies, infos['dlink'])
status = os.system(cmd)
if status != 0: # other http-errors, such as 302.
wget_exit_status_info = wget_es[status]
print('\n\n ----### \x1b[1;91mERROR\x1b[0m ==> '\
'\x1b[1;91m%d (%s)\x1b[0m ###--- \n\n' \
% (status, wget_exit_status_info))
print s % (91, ' ===> '), cmd
sys.exit(1)
else:
os.rename('%s.tmp' % infos['file'], infos['file'])
def play(self, infos):
num = random.randint(0, 7) % 7
col = s % (num + 90, infos['name'])
print '\n ++ play: %s' % col
cmd = 'mpv --really-quiet --cache 8140 --cache-default 8140 ' \
'--http-header-fields "user-agent:%s" "%s"' \
% (headers['User-Agent'], infos['dlink'])
status = os.system(cmd)
timeout = 1
ii, _, _ = select.select([sys.stdin], [], [], timeout)
if ii:
sys.exit(0)
else:
pass
def do(self):
self.get_infos()
def main(url):
x = nrop19(url)
x.do()
if __name__ == '__main__':
p = argparse.ArgumentParser(description='download from 91porn.com')
p.add_argument('url', help='url of 91porn.com')
p.add_argument('-a', '--aria2c', action='store_true', \
help='download with aria2c')
p.add_argument('-p', '--play', action='store_true', \
help='play with mpv')
args = p.parse_args()
main(args.url)