2020-04-24 02:59:43 +00:00
|
|
|
from io import BytesIO
|
2020-05-24 20:03:11 +00:00
|
|
|
from lxml import etree
|
2020-04-24 02:59:43 +00:00
|
|
|
import pycurl
|
2020-05-12 06:45:56 +00:00
|
|
|
import random
|
2020-04-24 02:59:43 +00:00
|
|
|
import urllib.parse as urlparse
|
|
|
|
|
2020-05-24 20:03:11 +00:00
|
|
|
# Core Google search URLs
|
2020-04-24 02:59:43 +00:00
|
|
|
SEARCH_URL = 'https://www.google.com/search?gbv=1&q='
|
2020-05-24 20:03:11 +00:00
|
|
|
AUTOCOMPLETE_URL = 'https://suggestqueries.google.com/complete/search?client=toolbar&'
|
2020-04-24 02:59:43 +00:00
|
|
|
|
|
|
|
MOBILE_UA = '{}/5.0 (Android 0; Mobile; rv:54.0) Gecko/54.0 {}/59.0'
|
|
|
|
DESKTOP_UA = '{}/5.0 (X11; {} x86_64; rv:75.0) Gecko/20100101 {}/75.0'
|
|
|
|
|
2020-04-29 00:19:34 +00:00
|
|
|
# Valid query params
|
2020-04-30 00:53:58 +00:00
|
|
|
VALID_PARAMS = ['tbs', 'tbm', 'start', 'near']
|
2020-04-29 00:19:34 +00:00
|
|
|
|
2020-04-24 02:59:43 +00:00
|
|
|
|
2020-05-24 20:03:11 +00:00
|
|
|
def gen_user_agent(normal_ua, is_mobile):
|
2020-05-12 06:45:56 +00:00
|
|
|
mozilla = random.choice(['Moo', 'Woah', 'Bro', 'Slow']) + 'zilla'
|
|
|
|
firefox = random.choice(['Choir', 'Squier', 'Higher', 'Wire']) + 'fox'
|
|
|
|
linux = random.choice(['Win', 'Sin', 'Gin', 'Fin', 'Kin']) + 'ux'
|
2020-04-24 02:59:43 +00:00
|
|
|
|
|
|
|
if is_mobile:
|
|
|
|
return MOBILE_UA.format(mozilla, firefox)
|
|
|
|
else:
|
|
|
|
return DESKTOP_UA.format(mozilla, linux, firefox)
|
|
|
|
|
|
|
|
|
2020-05-23 20:27:23 +00:00
|
|
|
def gen_query(query, args, config, near_city=None):
|
2020-04-30 00:53:58 +00:00
|
|
|
param_dict = {key: '' for key in VALID_PARAMS}
|
2020-04-24 02:59:43 +00:00
|
|
|
# Use :past(hour/day/week/month/year) if available
|
|
|
|
# example search "new restaurants :past month"
|
2020-04-29 00:59:33 +00:00
|
|
|
if ':past' in query:
|
|
|
|
time_range = str.strip(query.split(':past', 1)[-1])
|
2020-04-30 00:53:58 +00:00
|
|
|
param_dict['tbs'] = '&tbs=qdr:' + str.lower(time_range[0])
|
2020-04-24 02:59:43 +00:00
|
|
|
|
|
|
|
# Ensure search query is parsable
|
2020-04-29 00:59:33 +00:00
|
|
|
query = urlparse.quote(query)
|
2020-04-24 02:59:43 +00:00
|
|
|
|
|
|
|
# Pass along type of results (news, images, books, etc)
|
|
|
|
if 'tbm' in args:
|
2020-04-30 00:53:58 +00:00
|
|
|
param_dict['tbm'] = '&tbm=' + args.get('tbm')
|
2020-04-24 02:59:43 +00:00
|
|
|
|
|
|
|
# Get results page start value (10 per page, ie page 2 start val = 20)
|
|
|
|
if 'start' in args:
|
2020-04-30 00:53:58 +00:00
|
|
|
param_dict['start'] = '&start=' + args.get('start')
|
2020-04-24 02:59:43 +00:00
|
|
|
|
|
|
|
# Search for results near a particular city, if available
|
2020-05-23 20:27:23 +00:00
|
|
|
if near_city:
|
2020-04-30 00:53:58 +00:00
|
|
|
param_dict['near'] = '&near=' + urlparse.quote(near_city)
|
2020-04-24 02:59:43 +00:00
|
|
|
|
2020-05-12 23:15:53 +00:00
|
|
|
# Set language for results (lr) and interface (hl)
|
2020-05-23 20:27:23 +00:00
|
|
|
param_dict['lr'] = '&lr=' + config.lang + '&hl=' + config.lang.replace('lang_', '')
|
|
|
|
param_dict['cr'] = ('&cr=' + config.ctry) if config.ctry else ''
|
|
|
|
param_dict['safe'] = '&safe=' + ('active' if config.safe else 'off')
|
2020-05-12 23:15:53 +00:00
|
|
|
|
2020-04-30 00:53:58 +00:00
|
|
|
for val in param_dict.values():
|
2020-04-29 00:59:33 +00:00
|
|
|
if not val or val is None:
|
|
|
|
continue
|
|
|
|
query += val
|
|
|
|
|
|
|
|
return query
|
2020-04-24 02:59:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Request:
|
2020-05-12 23:15:53 +00:00
|
|
|
def __init__(self, normal_ua, language='lang_en'):
|
|
|
|
self.language = language
|
2020-05-24 20:03:11 +00:00
|
|
|
self.mobile = 'Android' in normal_ua or 'iPhone' in normal_ua
|
|
|
|
self.modified_user_agent = gen_user_agent(normal_ua, self.mobile)
|
2020-04-24 02:59:43 +00:00
|
|
|
|
|
|
|
def __getitem__(self, name):
|
|
|
|
return getattr(self, name)
|
|
|
|
|
2020-05-12 23:15:53 +00:00
|
|
|
def get_decode_value(self):
|
|
|
|
if 'lang_zh' in self.language:
|
|
|
|
return 'gb2312'
|
|
|
|
else:
|
|
|
|
return 'unicode-escape'
|
|
|
|
|
2020-05-24 20:03:11 +00:00
|
|
|
def autocomplete(self, query):
|
|
|
|
ac_query = dict(hl=self.language, q=query)
|
|
|
|
response = self.send(base_url=AUTOCOMPLETE_URL, query=urlparse.urlencode(ac_query))
|
|
|
|
|
|
|
|
if response:
|
|
|
|
dom = etree.fromstring(response)
|
|
|
|
return dom.xpath('//suggestion/@data')
|
|
|
|
|
|
|
|
return []
|
|
|
|
|
2020-04-28 02:21:36 +00:00
|
|
|
def send(self, base_url=SEARCH_URL, query='', return_bytes=False):
|
2020-04-24 02:59:43 +00:00
|
|
|
response_header = []
|
|
|
|
|
|
|
|
b_obj = BytesIO()
|
|
|
|
crl = pycurl.Curl()
|
|
|
|
crl.setopt(crl.URL, base_url + query)
|
|
|
|
crl.setopt(crl.USERAGENT, self.modified_user_agent)
|
|
|
|
crl.setopt(crl.WRITEDATA, b_obj)
|
|
|
|
crl.setopt(crl.HEADERFUNCTION, response_header.append)
|
|
|
|
crl.setopt(pycurl.FOLLOWLOCATION, 1)
|
|
|
|
crl.perform()
|
|
|
|
crl.close()
|
|
|
|
|
2020-04-28 02:21:36 +00:00
|
|
|
if return_bytes:
|
|
|
|
return b_obj.getvalue()
|
|
|
|
else:
|
2020-05-12 23:15:53 +00:00
|
|
|
return b_obj.getvalue().decode(self.get_decode_value(), 'ignore')
|