forked from HowDoesExcelWork/RocketMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproxy.py
215 lines (165 loc) · 6.6 KB
/
proxy.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
#!/usr/bin/python
# -*- coding: utf-8 -*-
import logging
import requests
import sys
import time
from queue import Queue
from threading import Thread
from random import randint
log = logging.getLogger(__name__)
# Last used proxy for round-robin.
last_proxy = -1
# Proxy check result constants.
check_result_ok = 0
check_result_failed = 1
check_result_banned = 2
check_result_wrong = 3
check_result_timeout = 4
check_result_exception = 5
check_result_empty = 6
check_result_max = 6 # Should be equal to maximal return code.
# Simple function to do a call to Niantic's system for
# testing proxy connectivity.
def check_proxy(proxy_queue, timeout, proxies, show_warnings, check_results):
# Url for proxy testing.
proxy_test_url = 'https://pgorelease.nianticlabs.com/plfe/rpc'
proxy = proxy_queue.get()
check_result = check_result_ok
if proxy and proxy[1]:
log.debug('Checking proxy: %s', proxy[1])
try:
proxy_response = requests.post(proxy_test_url, '',
proxies={'http': proxy[1],
'https': proxy[1]},
timeout=timeout)
if proxy_response.status_code == 200:
log.debug('Proxy %s is ok.', proxy[1])
proxy_queue.task_done()
proxies.append(proxy[1])
check_results[check_result_ok] += 1
return True
elif proxy_response.status_code == 403:
proxy_error = ("Proxy " + proxy[1] +
" is banned - got status code: " +
str(proxy_response.status_code))
check_result = check_result_banned
else:
proxy_error = ("Wrong status code - " +
str(proxy_response.status_code))
check_result = check_result_wrong
except requests.ConnectTimeout:
proxy_error = ("Connection timeout (" + str(timeout) +
" second(s) ) via proxy " + proxy[1])
check_result = check_result_timeout
except requests.ConnectionError:
proxy_error = "Failed to connect to proxy " + proxy[1]
check_result = check_result_failed
except Exception as e:
proxy_error = e
check_result = check_result_exception
else:
proxy_error = "Empty proxy server."
check_result = check_result_empty
# Decrease output amount if there are lot of proxies.
if show_warnings:
log.warning('%s', repr(proxy_error))
else:
log.debug('%s', repr(proxy_error))
proxy_queue.task_done()
check_results[check_result] += 1
return False
# Check all proxies and return a working list with proxies.
def check_proxies(args):
source_proxies = []
check_results = [0] * (check_result_max + 1)
# Load proxies from the file. Override args.proxy if specified.
if args.proxy_file is not None:
log.info('Loading proxies from file.')
with open(args.proxy_file) as f:
for line in f:
# Ignore blank lines and comment lines.
if len(line.strip()) == 0 or line.startswith('#'):
continue
source_proxies.append(line.strip())
log.info('Loaded %d proxies.', len(source_proxies))
if len(source_proxies) == 0:
log.error('Proxy file was configured but ' +
'no proxies were loaded. Aborting.')
sys.exit(1)
else:
source_proxies = args.proxy
# No proxies - no cookies.
if (source_proxies is None) or (len(source_proxies) == 0):
log.info('No proxies are configured.')
return None
if args.proxy_skip_check:
return source_proxies
proxy_queue = Queue()
total_proxies = len(source_proxies)
log.info('Checking %d proxies...', total_proxies)
if (total_proxies > 10):
log.info('Enable "-v or -vv" to see checking details.')
proxies = []
for proxy in enumerate(source_proxies):
proxy_queue.put(proxy)
t = Thread(target=check_proxy,
name='check_proxy',
args=(proxy_queue, args.proxy_timeout, proxies,
total_proxies <= 10, check_results))
t.daemon = True
t.start()
# This is painful but we need to wait here until proxy_queue is
# completed so we have a working list of proxies.
proxy_queue.join()
working_proxies = len(proxies)
if working_proxies == 0:
log.error('Proxy was configured but no working ' +
'proxies were found. Aborting.')
sys.exit(1)
else:
other_fails = (check_results[check_result_failed] +
check_results[check_result_wrong] +
check_results[check_result_exception] +
check_results[check_result_empty])
log.info('Proxy check completed. Working: %d, banned: %d, ' +
'timeout: %d, other fails: %d of total %d configured.',
working_proxies, check_results[check_result_banned],
check_results[check_result_timeout],
other_fails,
total_proxies)
return proxies
# Thread function for periodical proxy updating.
def proxies_refresher(args):
while True:
# Wait BEFORE refresh, because initial refresh is done at startup.
time.sleep(args.proxy_refresh)
try:
proxies = check_proxies(args)
if len(proxies) == 0:
log.warning('No live proxies found. Using previous ones ' +
'until next round...')
continue
args.proxy = proxies
log.info('Regular proxy refresh complete.')
except Exception as e:
log.exception('Exception while refresh proxies: %s', repr(e))
# Provide new proxy for a search thread.
def get_new_proxy(args):
global last_proxy
# If none/round - simply get next proxy.
if ((args.proxy_rotation is None) or (args.proxy_rotation == 'none') or
(args.proxy_rotation == 'round')):
if last_proxy >= len(args.proxy) - 1:
last_proxy = 0
else:
last_proxy = last_proxy + 1
lp = last_proxy
# If random - get random one.
elif (args.proxy_rotation == 'random'):
lp = randint(0, len(args.proxy) - 1)
else:
log.warning('Parameter -pxo/--proxy-rotation has wrong value. ' +
'Use only first proxy.')
lp = 0
return lp, args.proxy[lp]