google.py 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  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. language = 'en'
  146. country = 'US'
  147. url_lang = ''
  148. elif params['language'][:2] == 'jv':
  149. language = 'jw'
  150. country = 'ID'
  151. url_lang = 'lang_jw'
  152. else:
  153. language_array = params['language'].lower().split('-')
  154. if len(language_array) == 2:
  155. country = language_array[1]
  156. else:
  157. country = 'US'
  158. language = language_array[0] + ',' + language_array[0] + '-' + country
  159. url_lang = 'lang_' + language_array[0]
  160. if use_locale_domain:
  161. google_hostname = country_to_hostname.get(country.upper(), default_hostname)
  162. else:
  163. google_hostname = default_hostname
  164. params['url'] = search_url.format(offset=offset,
  165. query=urlencode({'q': query}),
  166. hostname=google_hostname,
  167. lang=url_lang)
  168. if params['time_range'] in time_range_dict:
  169. params['url'] += time_range_search.format(range=time_range_dict[params['time_range']])
  170. params['headers']['Accept-Language'] = language
  171. params['headers']['Accept'] = 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8'
  172. params['google_hostname'] = google_hostname
  173. return params
  174. # get response from search-request
  175. def response(resp):
  176. results = []
  177. # detect google sorry
  178. resp_url = urlparse(resp.url)
  179. if resp_url.netloc == 'sorry.google.com' or resp_url.path == '/sorry/IndexRedirect':
  180. raise RuntimeWarning('sorry.google.com')
  181. # which hostname ?
  182. google_hostname = resp.search_params.get('google_hostname')
  183. google_url = "https://" + google_hostname
  184. # convert the text to dom
  185. dom = html.fromstring(resp.text)
  186. instant_answer = dom.xpath('//div[@id="_vBb"]//text()')
  187. if instant_answer:
  188. results.append({'answer': u' '.join(instant_answer)})
  189. try:
  190. results_num = int(dom.xpath('//div[@id="resultStats"]//text()')[0]
  191. .split()[1].replace(',', ''))
  192. results.append({'number_of_results': results_num})
  193. except:
  194. pass
  195. # parse results
  196. for result in dom.xpath(results_xpath):
  197. try:
  198. title = extract_text(result.xpath(title_xpath)[0])
  199. url = parse_url(extract_url(result.xpath(url_xpath), google_url), google_hostname)
  200. parsed_url = urlparse(url, google_hostname)
  201. # map result
  202. if parsed_url.netloc == google_hostname:
  203. # TODO fix inside links
  204. continue
  205. # if parsed_url.path.startswith(maps_path) or parsed_url.netloc.startswith(map_hostname_start):
  206. # print "yooooo"*30
  207. # x = result.xpath(map_near)
  208. # if len(x) > 0:
  209. # # map : near the location
  210. # results = results + parse_map_near(parsed_url, x, google_hostname)
  211. # else:
  212. # # map : detail about a location
  213. # results = results + parse_map_detail(parsed_url, result, google_hostname)
  214. # # google news
  215. # elif parsed_url.path == search_path:
  216. # # skipping news results
  217. # pass
  218. # # images result
  219. # elif parsed_url.path == images_path:
  220. # # only thumbnail image provided,
  221. # # so skipping image results
  222. # # results = results + parse_images(result, google_hostname)
  223. # pass
  224. else:
  225. # normal result
  226. content = extract_text_from_dom(result, content_xpath)
  227. if content is None:
  228. continue
  229. content_misc = extract_text_from_dom(result, content_misc_xpath)
  230. if content_misc is not None:
  231. content = content_misc + "<br />" + content
  232. # append result
  233. results.append({'url': url,
  234. 'title': title,
  235. 'content': content
  236. })
  237. except:
  238. logger.debug('result parse error in:\n%s', etree.tostring(result, pretty_print=True))
  239. continue
  240. # parse suggestion
  241. for suggestion in dom.xpath(suggestion_xpath):
  242. # append suggestion
  243. results.append({'suggestion': extract_text(suggestion)})
  244. for correction in dom.xpath(spelling_suggestion_xpath):
  245. results.append({'correction': extract_text(correction)})
  246. # return results
  247. return results
  248. def parse_images(result, google_hostname):
  249. results = []
  250. for image in result.xpath(images_xpath):
  251. url = parse_url(extract_text(image.xpath(image_url_xpath)[0]), google_hostname)
  252. img_src = extract_text(image.xpath(image_img_src_xpath)[0])
  253. # append result
  254. results.append({'url': url,
  255. 'title': '',
  256. 'content': '',
  257. 'img_src': img_src,
  258. 'template': 'images.html'
  259. })
  260. return results
  261. def parse_map_near(parsed_url, x, google_hostname):
  262. results = []
  263. for result in x:
  264. title = extract_text_from_dom(result, map_near_title)
  265. url = parse_url(extract_text_from_dom(result, map_near_url), google_hostname)
  266. attributes = []
  267. phone = extract_text_from_dom(result, map_near_phone)
  268. add_attributes(attributes, property_phone, phone, 'tel:' + phone)
  269. results.append({'title': title,
  270. 'url': url,
  271. 'content': attributes_to_html(attributes)
  272. })
  273. return results
  274. def parse_map_detail(parsed_url, result, google_hostname):
  275. results = []
  276. # try to parse the geoloc
  277. m = re.search(r'@([0-9\.]+),([0-9\.]+),([0-9]+)', parsed_url.path)
  278. if m is None:
  279. m = re.search(r'll\=([0-9\.]+),([0-9\.]+)\&z\=([0-9]+)', parsed_url.query)
  280. if m is not None:
  281. # geoloc found (ignored)
  282. lon = float(m.group(2)) # noqa
  283. lat = float(m.group(1)) # noqa
  284. zoom = int(m.group(3)) # noqa
  285. # attributes
  286. attributes = []
  287. address = extract_text_from_dom(result, map_address_xpath)
  288. phone = extract_text_from_dom(result, map_phone_xpath)
  289. add_attributes(attributes, property_address, address, 'geo:' + str(lat) + ',' + str(lon))
  290. add_attributes(attributes, property_phone, phone, 'tel:' + phone)
  291. # title / content / url
  292. website_title = extract_text_from_dom(result, map_website_title_xpath)
  293. content = extract_text_from_dom(result, content_xpath)
  294. website_url = parse_url(extract_text_from_dom(result, map_website_url_xpath), google_hostname)
  295. # add a result if there is a website
  296. if website_url is not None:
  297. results.append({'title': website_title,
  298. 'content': (content + '<br />' if content is not None else '')
  299. + attributes_to_html(attributes),
  300. 'url': website_url
  301. })
  302. return results
  303. def add_attributes(attributes, name, value, url):
  304. if value is not None and len(value) > 0:
  305. attributes.append({'label': name, 'value': value, 'url': url})
  306. def attributes_to_html(attributes):
  307. retval = '<table class="table table-striped">'
  308. for a in attributes:
  309. value = a.get('value')
  310. if 'url' in a:
  311. value = '<a href="' + a.get('url') + '">' + value + '</a>'
  312. retval = retval + '<tr><th>' + a.get('label') + '</th><td>' + value + '</td></tr>'
  313. retval = retval + '</table>'
  314. return retval
  315. # get supported languages from their site
  316. def _fetch_supported_languages(resp):
  317. supported_languages = {}
  318. dom = html.fromstring(resp.text)
  319. options = dom.xpath('//table//td/font/label/span')
  320. for option in options:
  321. code = option.xpath('./@id')[0][1:]
  322. name = option.text.title()
  323. supported_languages[code] = {"name": name}
  324. return supported_languages