google.py 12 KB

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