more random changes
This commit is contained in:
+3
-4
@@ -83,9 +83,6 @@ class WorkerJob():
|
||||
]
|
||||
|
||||
try:
|
||||
if self.isoldies:
|
||||
sock = rocksock.Rocksock(host=srv, port=server_port, ssl=use_ssl, proxies=proxies, timeout=config.watchd.timeout - 2)
|
||||
else:
|
||||
sock = rocksock.Rocksock(host=srv, port=server_port, ssl=use_ssl, proxies=proxies, timeout=config.watchd.timeout)
|
||||
sock.connect()
|
||||
sock.send('NICK\n')
|
||||
@@ -276,7 +273,9 @@ class Proxywatchd():
|
||||
q = 'SELECT proxy,proto,failed,success_count,total_duration,country FROM proxylist WHERE failed >= ? and failed < ? and (tested + ? + (failed * ?)) < ? ORDER BY RANDOM()'
|
||||
rows = self.mysqlite.execute(q, (0, config.watchd.max_fail, config.watchd.checktime, config.watchd.perfail_checktime, time.time())).fetchall()
|
||||
# check oldies ?
|
||||
if len(rows) < config.watchd.threads and config.watchd.oldies:
|
||||
if len(rows) < config.watchd.threads:
|
||||
rows = []
|
||||
if config.watchd.oldies:
|
||||
self.isoldies = True
|
||||
## disable tor safeguard for old proxies
|
||||
if self.tor_safeguard: self.tor_safeguard = False
|
||||
|
||||
@@ -19,12 +19,15 @@ with open('searx.instances') as h:
|
||||
def proxyfind(sqlite = None, urignore=None):
|
||||
search = ''
|
||||
random.shuffle(searx_instances)
|
||||
|
||||
## search by working proxy
|
||||
if 'p' in config.scraper.query:
|
||||
proxydb = mysqlite.mysqlite(config.watchd.database,str)
|
||||
proxies = [ i[0] for i in proxydb.execute('SELECT proxy FROM proxylist WHERE failed=0 ORDER BY RANDOM() LIMIT 10').fetchall() ]
|
||||
if len(proxies) and random.random() < random.random():
|
||||
search = ' '.join( random.sample(proxies, random.randint(1,2)))
|
||||
|
||||
## search by relative url
|
||||
if 'w' in config.scraper.query and not len(search) or random.random() < random.random():
|
||||
if not sqlite: sqlite = mysqlite.mysqlite(config.ppf.database,str)
|
||||
uris = [ i[0] for i in sqlite.execute('SELECT url FROM uris WHERE error=0 and url not like "%github%" ORDER BY RANDOM() LIMIT 10').fetchall() ]
|
||||
@@ -32,6 +35,7 @@ def proxyfind(sqlite = None, urignore=None):
|
||||
if len(search): search = '%s OR ' % search
|
||||
search = search + 'site:%s' % random.choice(uris).split('/')[2]
|
||||
|
||||
## build string
|
||||
if 's' in config.scraper.query and not len(search) or random.random() < random.random():
|
||||
if len(search): search = '%s OR ' % search
|
||||
search = search + random.choice(search_terms)
|
||||
|
||||
+9
-3
@@ -1,6 +1,8 @@
|
||||
site:github.com :8081 :8888 :8080
|
||||
site:github.com :4444 :1234 :3124
|
||||
site:github.com proxylist
|
||||
elite proxylist
|
||||
elite http proxies
|
||||
elite socks proxies
|
||||
anonymous proxies
|
||||
anonymous proxylist
|
||||
hourly http proxy
|
||||
hourly socks proxy
|
||||
daily http proxy
|
||||
@@ -11,3 +13,7 @@ updated http proxy list
|
||||
updated socks proxy list
|
||||
download http proxy
|
||||
download socks proxy
|
||||
доверенное лицо
|
||||
свежий список прокси
|
||||
http прокси
|
||||
socks прокси
|
||||
|
||||
Reference in New Issue
Block a user