81 """Format of the response from UI's async request.
83 - ``arc_id:<...>,use_ac:true,_fmt:prog``
85 The arc_id is random generated every hour.
89 use_ac =
"use_ac:true"
95 if not _arcid_random
or (int(time.time()) - _arcid_random[1]) > 3600:
96 _arcid_random = (
''.join(random.choices(_arcid_range, k=23)), int(time.time()))
97 arc_id = f
"arc_id:srp_{_arcid_random[0]}_1{start:02}"
99 return ",".join([arc_id, use_ac, _fmt])
103 """Composing various (language) properties for the google engines (:ref:`google
106 This function is called by the various google engines (:ref:`google web
107 engine`, :ref:`google images engine`, :ref:`google news engine` and
108 :ref:`google videos engine`).
110 :param dict param: Request parameters of the engine. At least
111 a ``searxng_locale`` key should be in the dictionary.
113 :param eng_traits: Engine's traits fetched from google preferences
114 (:py:obj:`searx.enginelib.traits.EngineTraits`)
118 Py-Dictionary with the key/value pairs:
121 The language code that is used by google (e.g. ``lang_en`` or
125 The country code that is used by google (e.g. ``US`` or ``TW``)
128 A instance of :py:obj:`babel.core.Locale` build from the
129 ``searxng_locale`` value.
132 Google subdomain :py:obj:`google_domains` that fits to the country
136 Py-Dictionary with additional request arguments (can be passed to
137 :py:func:`urllib.parse.urlencode`).
139 - ``hl`` parameter: specifies the interface language of user interface.
140 - ``lr`` parameter: restricts search results to documents written in
141 a particular language.
142 - ``cr`` parameter: restricts search results to documents
143 originating in a particular country.
144 - ``ie`` parameter: sets the character encoding scheme that should
145 be used to interpret the query string ('utf8').
146 - ``oe`` parameter: sets the character encoding scheme that should
147 be used to decode the XML result ('utf8').
150 Py-Dictionary with additional HTTP headers (can be passed to
167 sxng_locale = params.get(
'searxng_locale',
'all')
169 locale = babel.Locale.parse(sxng_locale, sep=
'-')
170 except babel.core.UnknownLocaleError:
173 eng_lang = eng_traits.get_language(sxng_locale,
'lang_en')
174 lang_code = eng_lang.split(
'_')[-1]
175 country = eng_traits.get_region(sxng_locale, eng_traits.all_locale)
185 ret_val[
'language'] = eng_lang
186 ret_val[
'country'] = country
187 ret_val[
'locale'] = locale
188 ret_val[
'subdomain'] = eng_traits.custom[
'supported_domains'].get(country.upper(),
'www.google.com')
200 ret_val[
'params'][
'hl'] = f
'{lang_code}-{country}'
216 ret_val[
'params'][
'lr'] = eng_lang
217 if sxng_locale ==
'all':
218 ret_val[
'params'][
'lr'] =
''
227 ret_val[
'params'][
'cr'] =
''
228 if len(sxng_locale.split(
'-')) > 1:
229 ret_val[
'params'][
'cr'] =
'country' + country
250 ret_val[
'params'][
'ie'] =
'utf8'
257 ret_val[
'params'][
'oe'] =
'utf8'
270 ret_val[
'headers'][
'Accept'] =
'*/*'
276 ret_val[
'cookies'][
'CONSENT'] =
"YES+"
342 for img_id, data_image
in RE_DATA_IMAGE.findall(text):
343 end_pos = data_image.rfind(
'=')
345 data_image = data_image[: end_pos + 1]
346 data_image_map[img_id] = data_image
347 last = RE_DATA_IMAGE_end.search(text)
349 data_image_map[last.group(1)] = last.group(2)
350 logger.debug(
'data:image objects --> %s', list(data_image_map.keys()))
351 return data_image_map
355 """Get response from google's search request"""
363 dom = html.fromstring(resp.text)
366 answer_list = eval_xpath(dom,
'//div[contains(@class, "LGOjhe")]')
367 for item
in answer_list:
368 for bubble
in eval_xpath(item,
'.//div[@class="nnFGuf"]'):
371 results.types.Answer(
372 answer=extract_text(item),
373 url=(eval_xpath(item,
'../..//a/@href') + [
None])[0],
379 for result
in eval_xpath_list(dom,
'.//div[contains(@jscontroller, "SC7lYd")]'):
383 title_tag = eval_xpath_getindex(result,
'.//a/h3[1]', 0, default=
None)
384 if title_tag
is None:
386 logger.debug(
'ignoring item from the result_xpath list: missing title')
388 title = extract_text(title_tag)
390 url = eval_xpath_getindex(result,
'.//a[h3]/@href', 0,
None)
392 logger.debug(
'ignoring item from the result_xpath list: missing url of title "%s"', title)
395 content_nodes = eval_xpath(result,
'.//div[contains(@data-sncf, "1")]')
396 for item
in content_nodes:
397 for script
in item.xpath(
".//script"):
398 script.getparent().remove(script)
400 content = extract_text(content_nodes)
403 logger.debug(
'ignoring item from the result_xpath list: missing content of title "%s"', title)
406 thumbnail = content_nodes[0].xpath(
'.//img/@src')
408 thumbnail = thumbnail[0]
409 if thumbnail.startswith(
'data:image'):
410 img_id = content_nodes[0].xpath(
'.//img/@id')
412 thumbnail = data_image_map.get(img_id[0])
416 results.append({
'url': url,
'title': title,
'content': content,
'thumbnail': thumbnail})
418 except Exception
as e:
419 logger.error(e, exc_info=
True)
423 for suggestion
in eval_xpath_list(dom, suggestion_xpath):
425 results.append({
'suggestion': extract_text(suggestion)})
460def fetch_traits(engine_traits: EngineTraits, add_domains: bool =
True):
461 """Fetch languages from Google."""
464 engine_traits.custom[
'supported_domains'] = {}
466 resp = get(
'https://www.google.com/preferences')
468 raise RuntimeError(
"Response from Google's preferences is not OK.")
470 dom = html.fromstring(resp.text.replace(
'<?xml version="1.0" encoding="UTF-8"?>',
''))
474 lang_map = {
'no':
'nb'}
475 for x
in eval_xpath_list(dom,
"//select[@name='hl']/option"):
476 eng_lang = x.get(
"value")
478 locale = babel.Locale.parse(lang_map.get(eng_lang, eng_lang), sep=
'-')
479 except babel.UnknownLocaleError:
480 print(
"INFO: google UI language %s (%s) is unknown by babel" % (eng_lang, x.text.split(
"(")[0].strip()))
482 sxng_lang = language_tag(locale)
484 conflict = engine_traits.languages.get(sxng_lang)
486 if conflict != eng_lang:
487 print(
"CONFLICT: babel %s --> %s, %s" % (sxng_lang, conflict, eng_lang))
489 engine_traits.languages[sxng_lang] =
'lang_' + eng_lang
492 engine_traits.languages[
'zh'] =
'lang_zh-CN'
496 for x
in eval_xpath_list(dom,
"//select[@name='gl']/option"):
497 eng_country = x.get(
"value")
499 if eng_country
in skip_countries:
501 if eng_country ==
'ZZ':
502 engine_traits.all_locale =
'ZZ'
505 sxng_locales = get_official_locales(eng_country, engine_traits.languages.keys(), regional=
True)
508 print(
"ERROR: can't map from google country %s (%s) to a babel region." % (x.get(
'data-name'), eng_country))
511 for sxng_locale
in sxng_locales:
512 engine_traits.regions[region_tag(sxng_locale)] = eng_country
515 engine_traits.regions[
'zh-CN'] =
'HK'
520 resp = get(
'https://www.google.com/supported_domains')
522 raise RuntimeError(
"Response from https://www.google.com/supported_domains is not OK.")
524 for domain
in resp.text.split():
525 domain = domain.strip()
526 if not domain
or domain
in [
530 region = domain.split(
'.')[-1].upper()
531 engine_traits.custom[
'supported_domains'][region] =
'www' + domain
534 engine_traits.custom[
'supported_domains'][
'CN'] =
'www' + domain