2018-08-09 15:42:21 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*-coding:UTF-8 -*
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
2019-02-25 15:38:50 +00:00
|
|
|
import json
|
|
|
|
import redis
|
2018-08-09 15:42:21 +00:00
|
|
|
from TorSplashCrawler import TorSplashCrawler
|
|
|
|
|
2019-11-05 14:18:03 +00:00
|
|
|
sys.path.append(os.path.join(os.environ['AIL_BIN'], 'lib/'))
|
|
|
|
import ConfigLoader
|
2020-03-24 16:15:43 +00:00
|
|
|
import crawlers
|
2019-11-05 14:18:03 +00:00
|
|
|
|
2018-08-09 15:42:21 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
|
2019-02-25 15:38:50 +00:00
|
|
|
if len(sys.argv) != 2:
|
|
|
|
print('usage:', 'tor_crawler.py', 'uuid')
|
2018-08-09 15:42:21 +00:00
|
|
|
exit(1)
|
|
|
|
|
|
|
|
|
2019-11-05 14:18:03 +00:00
|
|
|
config_loader = ConfigLoader.ConfigLoader()
|
|
|
|
redis_cache = config_loader.get_redis_conn("Redis_Cache")
|
|
|
|
config_loader = None
|
2019-02-22 16:00:24 +00:00
|
|
|
|
2019-02-25 15:38:50 +00:00
|
|
|
# get crawler config key
|
|
|
|
uuid = sys.argv[1]
|
2019-02-22 16:00:24 +00:00
|
|
|
|
2019-02-25 15:38:50 +00:00
|
|
|
# get configs
|
|
|
|
crawler_json = json.loads(redis_cache.get('crawler_request:{}'.format(uuid)))
|
2019-02-22 16:00:24 +00:00
|
|
|
|
2019-02-25 15:38:50 +00:00
|
|
|
splash_url = crawler_json['splash_url']
|
|
|
|
service_type = crawler_json['service_type']
|
|
|
|
url = crawler_json['url']
|
|
|
|
domain = crawler_json['domain']
|
2019-03-22 15:48:07 +00:00
|
|
|
port = crawler_json['port']
|
2019-02-25 15:38:50 +00:00
|
|
|
original_item = crawler_json['item']
|
|
|
|
crawler_options = crawler_json['crawler_options']
|
|
|
|
date = crawler_json['date']
|
2019-05-13 12:24:16 +00:00
|
|
|
requested_mode = crawler_json['requested']
|
2020-03-30 16:43:50 +00:00
|
|
|
|
|
|
|
if crawler_options['cookiejar_uuid']:
|
|
|
|
cookies = crawlers.load_crawler_cookies(crawler_options['cookiejar_uuid'], crawler_type=service_type)
|
|
|
|
else:
|
|
|
|
cookies = []
|
2019-02-22 16:00:24 +00:00
|
|
|
|
2019-02-25 15:38:50 +00:00
|
|
|
redis_cache.delete('crawler_request:{}'.format(uuid))
|
2019-02-05 16:16:44 +00:00
|
|
|
|
2019-02-21 08:54:43 +00:00
|
|
|
crawler = TorSplashCrawler(splash_url, crawler_options)
|
2020-03-09 16:02:18 +00:00
|
|
|
crawler.crawl(service_type, crawler_options, date, requested_mode, url, domain, port, cookies, original_item)
|