-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproxy_filter.py
93 lines (73 loc) · 2.25 KB
/
proxy_filter.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
import logging
from multiprocessing import Lock as ProcessLock
from threading import Lock as ThreadLock
from peewee import SqliteDatabase, Model, CharField, FixedCharField, IntegrityError, InterfaceError, OperationalError
import config
db = SqliteDatabase('pool.db')
threadLock = ThreadLock()
processLock = ProcessLock()
def lock():
threadLock.acquire()
processLock.acquire()
def unlock():
processLock.release()
threadLock.release()
class Proxy(Model):
address = CharField(unique=True, primary_key=True)
type = CharField(max_length=6)
anonymity = CharField(max_length=11)
country = FixedCharField(max_length=2, null=True)
class Meta:
database = db
Proxy.create_table()
def delete_proxy(proxy: Proxy):
lock()
try:
proxy.delete_instance()
except OperationalError as oe:
logging.exception(oe)
finally:
unlock()
def is_valid_address(address: str) -> bool:
try:
r = address.split(':')
if len(r) != 2:
return False
port = int(r[1])
if port < 0 or port > 65535:
return False
for i in r[0].split('.'):
i = int(i)
if i < 0 or i > 255:
return False
except (ValueError, TypeError):
return False
return True
def is_valid(proxy: Proxy) -> bool:
if not is_valid_address(str(proxy.address)):
return False
if proxy.type not in config.proxy_type:
return False
if proxy.anonymity not in config.proxy_anonymity:
return False
if config.proxy_country and proxy.country not in config.proxy_country:
return False
if config.proxy_country_exclude and proxy.country in config.proxy_country_exclude:
return False
return True
def filter_proxy(proxy: Proxy):
if 'socks' in proxy.type and not proxy.anonymity:
proxy.anonymity = 'elite'
if is_valid(proxy):
lock()
try:
proxy.save(force_insert=True)
except IntegrityError:
pass
except InterfaceError as ie:
# Error binding parameter 0 - probably unsupported type.
# dont know why
logging.exception(ie)
finally:
unlock()
logging.debug('%s saved' % proxy.address)