google.py 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. # Google (Web)
  2. #
  3. # @website https://www.google.com
  4. # @provide-api yes (https://developers.google.com/custom-search/)
  5. #
  6. # @using-api no
  7. # @results HTML
  8. # @stable no (HTML can change)
  9. # @parse url, title, content, suggestion
  10. import re
  11. from lxml import html, etree
  12. from searx.engines.xpath import extract_text, extract_url
  13. from searx import logger
  14. from searx.url_utils import urlencode, urlparse, parse_qsl
  15. logger = logger.getChild('google engine')
  16. # engine dependent config
  17. categories = ['general']
  18. paging = True
  19. language_support = True
  20. use_locale_domain = True
  21. time_range_support = True
  22. # based on https://en.wikipedia.org/wiki/List_of_Google_domains and tests
  23. default_hostname = 'www.google.com'
  24. country_to_hostname = {
  25. 'BG': 'www.google.bg', # Bulgaria
  26. 'CZ': 'www.google.cz', # Czech Republic
  27. 'DE': 'www.google.de', # Germany
  28. 'DK': 'www.google.dk', # Denmark
  29. 'AT': 'www.google.at', # Austria
  30. 'CH': 'www.google.ch', # Switzerland
  31. 'GR': 'www.google.gr', # Greece
  32. 'AU': 'www.google.com.au', # Australia
  33. 'CA': 'www.google.ca', # Canada
  34. 'GB': 'www.google.co.uk', # United Kingdom
  35. 'ID': 'www.google.co.id', # Indonesia
  36. 'IE': 'www.google.ie', # Ireland
  37. 'IN': 'www.google.co.in', # India
  38. 'MY': 'www.google.com.my', # Malaysia
  39. 'NZ': 'www.google.co.nz', # New Zealand
  40. 'PH': 'www.google.com.ph', # Philippines
  41. 'SG': 'www.google.com.sg', # Singapore
  42. # 'US': 'www.google.us', # United States, redirect to .com
  43. 'ZA': 'www.google.co.za', # South Africa
  44. 'AR': 'www.google.com.ar', # Argentina
  45. 'CL': 'www.google.cl', # Chile
  46. 'ES': 'www.google.es', # Spain
  47. 'MX': 'www.google.com.mx', # Mexico
  48. 'EE': 'www.google.ee', # Estonia
  49. 'FI': 'www.google.fi', # Finland
  50. 'BE': 'www.google.be', # Belgium
  51. 'FR': 'www.google.fr', # France
  52. 'IL': 'www.google.co.il', # Israel
  53. 'HR': 'www.google.hr', # Croatia
  54. 'HU': 'www.google.hu', # Hungary
  55. 'IT': 'www.google.it', # Italy
  56. 'JP': 'www.google.co.jp', # Japan
  57. 'KR': 'www.google.co.kr', # South Korea
  58. 'LT': 'www.google.lt', # Lithuania
  59. 'LV': 'www.google.lv', # Latvia
  60. 'NO': 'www.google.no', # Norway
  61. 'NL': 'www.google.nl', # Netherlands
  62. 'PL': 'www.google.pl', # Poland
  63. 'BR': 'www.google.com.br', # Brazil
  64. 'PT': 'www.google.pt', # Portugal
  65. 'RO': 'www.google.ro', # Romania
  66. 'RU': 'www.google.ru', # Russia
  67. 'SK': 'www.google.sk', # Slovakia
  68. 'SL': 'www.google.si', # Slovenia (SL -> si)
  69. 'SE': 'www.google.se', # Sweden
  70. 'TH': 'www.google.co.th', # Thailand
  71. 'TR': 'www.google.com.tr', # Turkey
  72. 'UA': 'www.google.com.ua', # Ukraine
  73. # 'CN': 'www.google.cn', # China, only from China ?
  74. 'HK': 'www.google.com.hk', # Hong Kong
  75. 'TW': 'www.google.com.tw' # Taiwan
  76. }
  77. # osm
  78. url_map = 'https://www.openstreetmap.org/'\
  79. + '?lat={latitude}&lon={longitude}&zoom={zoom}&layers=M'
  80. # search-url
  81. search_path = '/search'
  82. search_url = ('https://{hostname}' +
  83. search_path +
  84. '?{query}&start={offset}&gws_rd=cr&gbv=1&lr={lang}&ei=x')
  85. time_range_search = "&tbs=qdr:{range}"
  86. time_range_dict = {'day': 'd',
  87. 'week': 'w',
  88. 'month': 'm',
  89. 'year': 'y'}
  90. # other URLs
  91. map_hostname_start = 'maps.google.'
  92. maps_path = '/maps'
  93. redirect_path = '/url'
  94. images_path = '/images'
  95. supported_languages_url = 'https://www.google.com/preferences?#languages'
  96. # specific xpath variables
  97. results_xpath = '//div[@class="g"]'
  98. url_xpath = './/h3/a/@href'
  99. title_xpath = './/h3'
  100. content_xpath = './/span[@class="st"]'
  101. content_misc_xpath = './/div[@class="f slp"]'
  102. suggestion_xpath = '//p[@class="_Bmc"]'
  103. spelling_suggestion_xpath = '//a[@class="spell"]'
  104. # map : detail location
  105. map_address_xpath = './/div[@class="s"]//table//td[2]/span/text()'
  106. map_phone_xpath = './/div[@class="s"]//table//td[2]/span/span'
  107. map_website_url_xpath = 'h3[2]/a/@href'
  108. map_website_title_xpath = 'h3[2]'
  109. # map : near the location
  110. map_near = 'table[@class="ts"]//tr'
  111. map_near_title = './/h4'
  112. map_near_url = './/h4/a/@href'
  113. map_near_phone = './/span[@class="nobr"]'
  114. # images
  115. images_xpath = './/div/a'
  116. image_url_xpath = './@href'
  117. image_img_src_xpath = './img/@src'
  118. # property names
  119. # FIXME : no translation
  120. property_address = "Address"
  121. property_phone = "Phone number"
  122. # remove google-specific tracking-url
  123. def parse_url(url_string, google_hostname):
  124. # sanity check
  125. if url_string is None:
  126. return url_string
  127. # normal case
  128. parsed_url = urlparse(url_string)
  129. if (parsed_url.netloc in [google_hostname, '']
  130. and parsed_url.path == redirect_path):
  131. query = dict(parse_qsl(parsed_url.query))
  132. return query['q']
  133. else:
  134. return url_string
  135. # returns extract_text on the first result selected by the xpath or None
  136. def extract_text_from_dom(result, xpath):
  137. r = result.xpath(xpath)
  138. if len(r) > 0:
  139. return extract_text(r[0])
  140. return None
  141. # do search-request
  142. def request(query, params):
  143. offset = (params['pageno'] - 1) * 10
  144. if params['language'] == 'all':
  145. params['language'] = 'en-GB'
  146. if params['language'][:2] == 'jv':
  147. language = 'jw'
  148. country = 'ID'
  149. url_lang = 'lang_jw'
  150. else:
  151. language_array = params['language'].lower().split('-')
  152. if len(language_array) == 2:
  153. country = language_array[1]
  154. else:
  155. country = 'US'
  156. language = language_array[0] + ',' + language_array[0] + '-' + country
  157. url_lang = 'lang_' + language_array[0]
  158. if use_locale_domain:
  159. google_hostname = country_to_hostname.get(country.upper(), default_hostname)
  160. else:
  161. google_hostname = default_hostname
  162. params['url'] = search_url.format(offset=offset,
  163. query=urlencode({'q': query}),
  164. hostname=google_hostname,
  165. lang=url_lang)
  166. if params['time_range'] in time_range_dict:
  167. params['url'] += time_range_search.format(range=time_range_dict[params['time_range']])
  168. params['headers']['Accept-Language'] = language
  169. params['headers']['Accept'] = 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8'
  170. params['google_hostname'] = google_hostname
  171. return params
  172. # get response from search-request
  173. def response(resp):
  174. results = []
  175. # detect google sorry
  176. resp_url = urlparse(resp.url)
  177. if resp_url.netloc == 'sorry.google.com' or resp_url.path == '/sorry/IndexRedirect':
  178. raise RuntimeWarning('sorry.google.com')
  179. # which hostname ?
  180. google_hostname = resp.search_params.get('google_hostname')
  181. google_url = "https://" + google_hostname
  182. # convert the text to dom
  183. dom = html.fromstring(resp.text)
  184. instant_answer = dom.xpath('//div[@id="_vBb"]//text()')
  185. if instant_answer:
  186. results.append({'answer': u' '.join(instant_answer)})
  187. try:
  188. results_num = int(dom.xpath('//div[@id="resultStats"]//text()')[0]
  189. .split()[1].replace(',', ''))
  190. results.append({'number_of_results': results_num})
  191. except:
  192. pass
  193. # parse results
  194. for result in dom.xpath(results_xpath):
  195. try:
  196. title = extract_text(result.xpath(title_xpath)[0])
  197. url = parse_url(extract_url(result.xpath(url_xpath), google_url), google_hostname)
  198. parsed_url = urlparse(url, google_hostname)
  199. # map result
  200. if parsed_url.netloc == google_hostname:
  201. # TODO fix inside links
  202. continue
  203. # if parsed_url.path.startswith(maps_path) or parsed_url.netloc.startswith(map_hostname_start):
  204. # print "yooooo"*30
  205. # x = result.xpath(map_near)
  206. # if len(x) > 0:
  207. # # map : near the location
  208. # results = results + parse_map_near(parsed_url, x, google_hostname)
  209. # else:
  210. # # map : detail about a location
  211. # results = results + parse_map_detail(parsed_url, result, google_hostname)
  212. # # google news
  213. # elif parsed_url.path == search_path:
  214. # # skipping news results
  215. # pass
  216. # # images result
  217. # elif parsed_url.path == images_path:
  218. # # only thumbnail image provided,
  219. # # so skipping image results
  220. # # results = results + parse_images(result, google_hostname)
  221. # pass
  222. else:
  223. # normal result
  224. content = extract_text_from_dom(result, content_xpath)
  225. if content is None:
  226. continue
  227. content_misc = extract_text_from_dom(result, content_misc_xpath)
  228. if content_misc is not None:
  229. content = content_misc + "<br />" + content
  230. # append result
  231. results.append({'url': url,
  232. 'title': title,
  233. 'content': content
  234. })
  235. except:
  236. logger.debug('result parse error in:\n%s', etree.tostring(result, pretty_print=True))
  237. continue
  238. # parse suggestion
  239. for suggestion in dom.xpath(suggestion_xpath):
  240. # append suggestion
  241. results.append({'suggestion': extract_text(suggestion)})
  242. for correction in dom.xpath(spelling_suggestion_xpath):
  243. results.append({'correction': extract_text(correction)})
  244. # return results
  245. return results
  246. def parse_images(result, google_hostname):
  247. results = []
  248. for image in result.xpath(images_xpath):
  249. url = parse_url(extract_text(image.xpath(image_url_xpath)[0]), google_hostname)
  250. img_src = extract_text(image.xpath(image_img_src_xpath)[0])
  251. # append result
  252. results.append({'url': url,
  253. 'title': '',
  254. 'content': '',
  255. 'img_src': img_src,
  256. 'template': 'images.html'
  257. })
  258. return results
  259. def parse_map_near(parsed_url, x, google_hostname):
  260. results = []
  261. for result in x:
  262. title = extract_text_from_dom(result, map_near_title)
  263. url = parse_url(extract_text_from_dom(result, map_near_url), google_hostname)
  264. attributes = []
  265. phone = extract_text_from_dom(result, map_near_phone)
  266. add_attributes(attributes, property_phone, phone, 'tel:' + phone)
  267. results.append({'title': title,
  268. 'url': url,
  269. 'content': attributes_to_html(attributes)
  270. })
  271. return results
  272. def parse_map_detail(parsed_url, result, google_hostname):
  273. results = []
  274. # try to parse the geoloc
  275. m = re.search(r'@([0-9\.]+),([0-9\.]+),([0-9]+)', parsed_url.path)
  276. if m is None:
  277. m = re.search(r'll\=([0-9\.]+),([0-9\.]+)\&z\=([0-9]+)', parsed_url.query)
  278. if m is not None:
  279. # geoloc found (ignored)
  280. lon = float(m.group(2)) # noqa
  281. lat = float(m.group(1)) # noqa
  282. zoom = int(m.group(3)) # noqa
  283. # attributes
  284. attributes = []
  285. address = extract_text_from_dom(result, map_address_xpath)
  286. phone = extract_text_from_dom(result, map_phone_xpath)
  287. add_attributes(attributes, property_address, address, 'geo:' + str(lat) + ',' + str(lon))
  288. add_attributes(attributes, property_phone, phone, 'tel:' + phone)
  289. # title / content / url
  290. website_title = extract_text_from_dom(result, map_website_title_xpath)
  291. content = extract_text_from_dom(result, content_xpath)
  292. website_url = parse_url(extract_text_from_dom(result, map_website_url_xpath), google_hostname)
  293. # add a result if there is a website
  294. if website_url is not None:
  295. results.append({'title': website_title,
  296. 'content': (content + '<br />' if content is not None else '')
  297. + attributes_to_html(attributes),
  298. 'url': website_url
  299. })
  300. return results
  301. def add_attributes(attributes, name, value, url):
  302. if value is not None and len(value) > 0:
  303. attributes.append({'label': name, 'value': value, 'url': url})
  304. def attributes_to_html(attributes):
  305. retval = '<table class="table table-striped">'
  306. for a in attributes:
  307. value = a.get('value')
  308. if 'url' in a:
  309. value = '<a href="' + a.get('url') + '">' + value + '</a>'
  310. retval = retval + '<tr><th>' + a.get('label') + '</th><td>' + value + '</td></tr>'
  311. retval = retval + '</table>'
  312. return retval
  313. # get supported languages from their site
  314. def _fetch_supported_languages(resp):
  315. supported_languages = {}
  316. dom = html.fromstring(resp.text)
  317. options = dom.xpath('//table//td/font/label/span')
  318. for option in options:
  319. code = option.xpath('./@id')[0][1:]
  320. name = option.text.title()
  321. supported_languages[code] = {"name": name}
  322. return supported_languages