7from __future__
import annotations
9from typing
import TYPE_CHECKING
11from urllib.parse
import quote_plus
28from searx
import redisdb
36 logger: logging.Logger
41 "website":
'https://lite.duckduckgo.com/lite/',
42 "wikidata_id":
'Q12805',
43 "use_official_api":
False,
44 "require_api_key":
False,
48send_accept_language_header =
True
49"""DuckDuckGo-Lite tries to guess user's preferred language from the HTTP
50``Accept-Language``. Optional the user can select a region filter (but not a
55categories = [
'general',
'web']
57time_range_support =
True
60url =
"https://html.duckduckgo.com/html"
62time_range_dict = {
'day':
'd',
'week':
'w',
'month':
'm',
'year':
'y'}
63form_data = {
'v':
'l',
'api':
'd.js',
'o':
'json'}
68 return 'SearXNG_ddg_web_vqd' + redislib.secret_hash(f
"{query}//{region}")
72 """Caches a ``vqd`` value from a query."""
75 logger.debug(
"VALKEY cache vqd value: %s (%s)", value, region)
76 c.set(
_cache_key(query, region), value, ex=600)
79 logger.debug(
"MEM cache vqd value: %s (%s)", value, region)
80 if len(__CACHE) > 100:
82 __CACHE.append((
_cache_key(query, region), value))
85def get_vqd(query: str, region: str, force_request: bool =
False):
86 """Returns the ``vqd`` that fits to the *query*.
88 :param query: The query term
89 :param region: DDG's region code
90 :param force_request: force a request to get a vqd value from DDG
92 TL;DR; the ``vqd`` value is needed to pass DDG's bot protection and is used
93 by all request to DDG:
95 - DuckDuckGo Lite: ``https://lite.duckduckgo.com/lite`` (POST form data)
96 - DuckDuckGo Web: ``https://links.duckduckgo.com/d.js?q=...&vqd=...``
97 - DuckDuckGo Images: ``https://duckduckgo.com/i.js??q=...&vqd=...``
98 - DuckDuckGo Videos: ``https://duckduckgo.com/v.js??q=...&vqd=...``
99 - DuckDuckGo News: ``https://duckduckgo.com/news.js??q=...&vqd=...``
101 DDG's bot detection is sensitive to the ``vqd`` value. For some search terms
102 (such as extremely long search terms that are often sent by bots), no ``vqd``
103 value can be determined.
105 If SearXNG cannot determine a ``vqd`` value, then no request should go out
110 A request with a wrong ``vqd`` value leads to DDG temporarily putting
111 SearXNG's IP on a block list.
113 Requests from IPs in this block list run into timeouts. Not sure, but it
114 seems the block list is a sliding window: to get my IP rid from the bot list
115 I had to cool down my IP for 1h (send no requests from that IP to DDG).
122 if value
or value == b
'':
123 value = value.decode(
'utf-8')
124 logger.debug(
"re-use CACHED vqd value: %s", value)
127 for k, value
in __CACHE:
129 logger.debug(
"MEM re-use CACHED vqd value: %s", value)
133 resp = get(f
'https://duckduckgo.com/?q={quote_plus(query)}')
134 if resp.status_code == 200:
135 value = extr(resp.text,
'vqd="',
'"')
137 logger.debug(
"vqd value from DDG request: %s", value)
144def get_ddg_lang(eng_traits: EngineTraits, sxng_locale, default=
'en_US'):
145 """Get DuckDuckGo's language identifier from SearXNG's locale.
147 DuckDuckGo defines its languages by region codes (see
148 :py:obj:`fetch_traits`).
150 To get region and language of a DDG service use:
154 eng_region = traits.get_region(params['searxng_locale'], traits.all_locale)
155 eng_lang = get_ddg_lang(traits, params['searxng_locale'])
157 It might confuse, but the ``l`` value of the cookie is what SearXNG calls
162 # !ddi paris :es-AR --> {'ad': 'es_AR', 'ah': 'ar-es', 'l': 'ar-es'}
163 params['cookies']['ad'] = eng_lang
164 params['cookies']['ah'] = eng_region
165 params['cookies']['l'] = eng_region
169 `DDG-lite <https://lite.duckduckgo.com/lite>`__ and the *no Javascript*
170 page https://html.duckduckgo.com/html do not offer a language selection
171 to the user, only a region can be selected by the user (``eng_region``
172 from the example above). DDG-lite and *no Javascript* store the selected
175 params['cookies']['kl'] = eng_region # 'ar-es'
178 return eng_traits.custom[
'lang_region'].get(
179 sxng_locale, eng_traits.get_language(sxng_locale, default)
200 "ar_DZ":
'lang_region',
201 "ar_JO":
'lang_region',
202 "ar_SA":
'lang_region',
204 'bn_IN':
'lang_region',
206 'de_CH':
'lang_region',
208 'en_AU':
'lang_region',
209 'en_CA':
'lang_region',
210 'en_GB':
'lang_region',
214 'es_AR':
'lang_region',
215 'es_CL':
'lang_region',
216 'es_CO':
'lang_region',
217 'es_CR':
'lang_region',
218 'es_EC':
'lang_region',
219 'es_MX':
'lang_region',
220 'es_PE':
'lang_region',
221 'es_UY':
'lang_region',
222 'es_VE':
'lang_region',
224 'fr_CA':
'lang_region',
225 'fr_CH':
'lang_region',
226 'fr_BE':
'lang_region',
228 'nl_BE':
'lang_region',
230 'pt_BR':
'lang_region',
234 'tokipona_XX':
'skip',
238def quote_ddg_bangs(query):
243 for val
in re.split(
r'(\s+)', query):
246 if val.startswith(
'!')
and external_bang.get_node(external_bang.EXTERNAL_BANGS, val[1:]):
248 query_parts.append(val)
249 return ' '.join(query_parts)
252def request(query, params):
254 query = quote_ddg_bangs(query)
256 if len(query) >= 500:
265 x.removeprefix(
"site:").removeprefix(
"intitle:").removeprefix(
"inurl:").removeprefix(
"filetype:")
266 for x
in query.split()
269 eng_region: str = traits.get_region(params[
'searxng_locale'], traits.all_locale)
270 if eng_region ==
"wt-wt":
274 params[
'data'][
'kl'] = eng_region
275 params[
'cookies'][
'kl'] = eng_region
280 params[
'method'] =
'POST'
281 params[
'data'][
'q'] = query
287 params[
'headers'][
'Content-Type'] =
'application/x-www-form-urlencoded'
289 params[
'headers'][
'Sec-Fetch-Dest'] =
"document"
290 params[
'headers'][
'Sec-Fetch-Mode'] =
"navigate"
291 params[
'headers'][
'Sec-Fetch-Site'] =
"same-origin"
292 params[
'headers'][
'Sec-Fetch-User'] =
"?1"
295 if params[
'pageno'] == 1:
297 params[
'data'][
'b'] =
""
299 params[
'data'][
'df'] =
''
300 if params[
'time_range']
in time_range_dict:
302 params[
'data'][
'df'] = time_range_dict[params[
'time_range']]
303 params[
'cookies'][
'df'] = time_range_dict[params[
'time_range']]
305 if params[
'pageno'] == 2:
308 offset = (params[
'pageno'] - 1) * 20
309 params[
'data'][
's'] = offset
310 params[
'data'][
'dc'] = offset + 1
312 elif params[
'pageno'] > 2:
315 offset = 20 + (params[
'pageno'] - 2) * 50
316 params[
'data'][
's'] = offset
317 params[
'data'][
'dc'] = offset + 1
319 if params[
'pageno'] > 1:
322 params[
'data'][
'o'] = form_data.get(
'o',
'json')
323 params[
'data'][
'api'] = form_data.get(
'api',
'd.js')
324 params[
'data'][
'nextParams'] = form_data.get(
'nextParams',
'')
325 params[
'data'][
'v'] = form_data.get(
'v',
'l')
326 params[
'headers'][
'Referer'] = url
328 vqd =
get_vqd(query, eng_region, force_request=
False)
334 params[
'data'][
'vqd'] = vqd
342 if params[
'searxng_locale'].startswith(
"zh"):
348 logger.debug(
"param data: %s", params[
'data'])
349 logger.debug(
"param cookies: %s", params[
'cookies'])
352def is_ddg_captcha(dom):
353 """In case of CAPTCHA ddg response its own *not a Robot* dialog and is not
354 redirected to a CAPTCHA page."""
356 return bool(eval_xpath(dom,
"//form[@id='challenge-form']"))
359def response(resp) -> EngineResults:
362 if resp.status_code == 303:
365 doc = lxml.html.fromstring(resp.text)
367 if is_ddg_captcha(doc):
371 form = eval_xpath(doc,
'//input[@name="vqd"]/..')
375 form_vqd = eval_xpath(form,
'//input[@name="vqd"]/@value')[0]
377 cache_vqd(resp.search_params[
'data'][
'q'], resp.search_params[
'data'][
'kl'], form_vqd)
380 for div_result
in eval_xpath(doc,
'//div[@id="links"]/div[contains(@class, "web-result")]'):
383 title = eval_xpath(div_result,
'.//h2/a')
387 item[
"title"] = extract_text(title)
388 item[
"url"] = eval_xpath(div_result,
'.//h2/a/@href')[0]
389 item[
"content"] = extract_text(eval_xpath(div_result,
'.//a[contains(@class, "result__snippet")]')[0])
393 zero_click_info_xpath =
'//div[@id="zero_click_abstract"]'
394 zero_click = extract_text(eval_xpath(doc, zero_click_info_xpath)).strip()
397 "Your IP address is" not in zero_click
398 and "Your user agent:" not in zero_click
399 and "URL Decoded:" not in zero_click
402 results.types.Answer(
404 url=eval_xpath_getindex(doc,
'//div[@id="zero_click_abstract"]/a/@href', 0),
411def fetch_traits(engine_traits: EngineTraits):
412 """Fetch languages & regions from DuckDuckGo.
414 SearXNG's ``all`` locale maps DuckDuckGo's "Alle regions" (``wt-wt``).
415 DuckDuckGo's language "Browsers preferred language" (``wt_WT``) makes no
416 sense in a SearXNG request since SearXNG's ``all`` will not add a
417 ``Accept-Language`` HTTP header. The value in ``engine_traits.all_locale``
418 is ``wt-wt`` (the region).
420 Beside regions DuckDuckGo also defines its languages by region codes. By
421 example these are the english languages in DuckDuckGo:
428 The function :py:obj:`get_ddg_lang` evaluates DuckDuckGo's language from
437 engine_traits.all_locale =
'wt-wt'
440 resp = get(
'https://duckduckgo.com/dist/util/u.7669f071a13a7daa57cb.js')
443 print(
"ERROR: response from DuckDuckGo is not OK.")
445 js_code = extr(resp.text,
'regions:',
',snippetLengths')
447 regions = json.loads(js_code)
448 for eng_tag, name
in regions.items():
450 if eng_tag ==
'wt-wt':
451 engine_traits.all_locale =
'wt-wt'
454 region = ddg_reg_map.get(eng_tag)
459 eng_territory, eng_lang = eng_tag.split(
'-')
460 region = eng_lang +
'_' + eng_territory.upper()
463 sxng_tag = locales.region_tag(babel.Locale.parse(region))
464 except babel.UnknownLocaleError:
465 print(
"ERROR: %s (%s) -> %s is unknown by babel" % (name, eng_tag, region))
468 conflict = engine_traits.regions.get(sxng_tag)
470 if conflict != eng_tag:
471 print(
"CONFLICT: babel %s --> %s, %s" % (sxng_tag, conflict, eng_tag))
473 engine_traits.regions[sxng_tag] = eng_tag
477 engine_traits.custom[
'lang_region'] = {}
479 js_code = extr(resp.text,
'languages:',
',regions')
481 languages = js_variable_to_python(js_code)
482 for eng_lang, name
in languages.items():
484 if eng_lang ==
'wt_WT':
487 babel_tag = ddg_lang_map.get(eng_lang, eng_lang)
488 if babel_tag ==
'skip':
493 if babel_tag ==
'lang_region':
494 sxng_tag = locales.region_tag(babel.Locale.parse(eng_lang))
495 engine_traits.custom[
'lang_region'][sxng_tag] = eng_lang
498 sxng_tag = locales.language_tag(babel.Locale.parse(babel_tag))
500 except babel.UnknownLocaleError:
501 print(
"ERROR: language %s (%s) is unknown by babel" % (name, eng_lang))
504 conflict = engine_traits.languages.get(sxng_tag)
506 if conflict != eng_lang:
507 print(
"CONFLICT: babel %s --> %s, %s" % (sxng_tag, conflict, eng_lang))
509 engine_traits.languages[sxng_tag] = eng_lang
get_vqd(str query, str region, bool force_request=False)
get_ddg_lang(EngineTraits eng_traits, sxng_locale, default='en_US')
_cache_key(str query, str region)
cache_vqd(str query, str region, str value)