-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproxy_server.py
168 lines (135 loc) · 4.44 KB
/
proxy_server.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
#!/user/bin/env python
# coding=utf8
import tornado.httpserver
import tornado.ioloop
import tornado.options
import tornado.web
from tornado.options import define, options
define("port", default=8888, help="run on the 8000 port", type=int)
import requests
import urllib2
import signal
import sys
import datetime
import re
import threading
import time
import redis
import gevent
import gevent.monkey
from gevent.pool import Group
gevent.monkey.patch_socket()
class IndexHandler(tornado.web.RequestHandler):
def get(self):
greeting = self.get_argument('greeting', 'hello')
self.write(greeting + ', user~')
def make_proxy(func):
def wrapper(self, proxy):
proxies = {
"http": str(proxy)
}
return func(self, proxies)
return wrapper
class Spider():
"""Get proxy and confirm it"""
def __init__(self):
self.confirm_url = 'http://www.baidu.com'
self.cache = redis.StrictRedis(host='localhost', port=6379)
def get_proxy(self, url):
pass
@make_proxy
def check(self, proxy):
real_proxy = proxy.get('http')
try:
resp = requests.get(self.confirm_url, proxies=proxy, timeout=2)
except Exception, e:
pass
else:
if resp.status_code == 200:
if not self.cache.hget('proxy', real_proxy):
self.cache.hset('proxy', real_proxy, 0)
@make_proxy
def redis_check(self,proxy):
print proxy
real_proxy = proxy.get('http')
value = int(self.cache.hget('proxy', real_proxy))
try:
resp = requests.get(self.confirm_url, proxies=proxy, timeout=2)
except Exception, e:
self.cache.hset('proxy', real_proxy, value+1)
else:
if resp.status_code != 200:
self.cache.hset('proxy', real_proxy, value+1)
def redis_clean(self):
proxy_dic = self.cache.hgetall('proxy')
proxy_list = [proxy for proxy, value in proxy_dic.iteritems()]
self.confirm_proxy(self.redis_check, proxy_list)
def confirm_proxy(self, func, proxies):
threads = [gevent.spawn(func, i) for i in proxies]
gevent.joinall(threads)
class Mesk(Spider):
"""Spider for Mesk.cn"""
def __init__(self):
Spider.__init__(self)
self.url = 'http://www.mesk.cn/ip/china/'
def get_proxy(self):
content = requests.get(self.url).text
pat0 = re.compile(r'<a href="(.*?)" class="ico"')
link = ''.join(['http://www.mesk.cn', pat0.search(content).group(1)])
new_content = requests.get(link).text
pat1 = re.compile(r'\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}:\d{1,6}')
ip_ports = re.findall(pat1, new_content)
print 'There are\033[1;33m {total} \033[0mproxies'.format(total=len(ip_ports))
return ip_ports
class PaChong(Spider):
"""Spider for pachong.org"""
def __init__(self):
Spider.__init__(self)
self.url = "http://pachong.org/high.html"
def get_proxy(self):
ip = []
port = []
content = requests.get(self.url).text
pat0 = re.compile(r'<td>(\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3})</td>\s*<td><script>doc.*write(.*);</script></td>')
animal = re.findall(re.compile(r'var (.*?);'), content)
for i in animal[:5]:
exec (i)
for m, n in re.findall(pat0, content):
ip.append(m)
exec ("port.append(" + n + ")")
ip_ports = [''.join([p[0], ':', str(p[1])]) for p in zip(ip, port)]
print 'There are\033[1;33m {total} \033[0mproxies'.format(total=len(ip_ports))
return ip_ports
def main_thread(threadid):
if threadid == 0:
while True:
for proxy_site in [Mesk(), PaChong()]:
iplists = proxy_site.get_proxy()
proxy_site.confirm_proxy(proxy_site.check, iplists)
time.sleep(86400)
Spider.redis_clean()
time.sleep(86400)
elif threadid == 1:
tornado.options.parse_command_line()
app = tornado.web.Application(handlers=[(r"/", IndexHandler)])
http_server = tornado.httpserver.HTTPServer(app)
http_server.listen(options.port)
tornado.ioloop.IOLoop.instance().start()
elif threadid == 2:
def signal_handler(signal, frame):
sys.exit(0)
signal.signal(signal.SIGINT, signal_handler)
signal.pause()
class myThread(threading.Thread):
def __init__(self, threadid):
threading.Thread.__init__(self)
self.threadID = threadid
def run(self):
main_thread(self.threadID)
if __name__ == "__main__":
thread1 = myThread(0)
thread2 = myThread(1)
thread3 = myThread(2)
thread1.start()
thread2.start()
thread3.start()