2021-01-13 10:31:25 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
2022-11-05 14:10:52 +00:00
|
|
|
"""
|
2024-11-25 16:00:52 +00:00
|
|
|
DuckDuckGo WEB
|
|
|
|
~~~~~~~~~~~~~~
|
2015-05-02 13:45:17 +00:00
|
|
|
"""
|
2014-09-02 15:14:57 +00:00
|
|
|
|
2024-11-25 16:00:52 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2022-11-05 14:10:52 +00:00
|
|
|
from typing import TYPE_CHECKING
|
2023-04-03 07:52:16 +00:00
|
|
|
import re
|
2024-11-25 16:00:52 +00:00
|
|
|
from urllib.parse import urlencode, quote_plus
|
2022-10-04 17:20:32 +00:00
|
|
|
import json
|
2022-11-05 14:10:52 +00:00
|
|
|
import babel
|
|
|
|
import lxml.html
|
2021-09-30 14:40:00 +00:00
|
|
|
|
2022-11-05 14:10:52 +00:00
|
|
|
from searx import (
|
|
|
|
locales,
|
|
|
|
redislib,
|
2023-04-03 07:52:16 +00:00
|
|
|
external_bang,
|
2022-11-05 14:10:52 +00:00
|
|
|
)
|
2021-09-30 14:40:00 +00:00
|
|
|
from searx.utils import (
|
|
|
|
eval_xpath,
|
2024-11-25 16:00:52 +00:00
|
|
|
extr,
|
2021-09-30 14:40:00 +00:00
|
|
|
extract_text,
|
|
|
|
)
|
2023-06-25 10:37:31 +00:00
|
|
|
from searx.network import get # see https://github.com/searxng/searxng/issues/762
|
|
|
|
from searx import redisdb
|
2022-10-04 17:20:32 +00:00
|
|
|
from searx.enginelib.traits import EngineTraits
|
2024-10-19 12:19:27 +00:00
|
|
|
from searx.exceptions import SearxEngineCaptchaException
|
[refactor] typification of SearXNG (initial) / result items (part 1)
Typification of SearXNG
=======================
This patch introduces the typing of the results. The why and how is described
in the documentation, please generate the documentation ..
$ make docs.clean docs.live
and read the following articles in the "Developer documentation":
- result types --> http://0.0.0.0:8000/dev/result_types/index.html
The result types are available from the `searx.result_types` module. The
following have been implemented so far:
- base result type: `searx.result_type.Result`
--> http://0.0.0.0:8000/dev/result_types/base_result.html
- answer results
--> http://0.0.0.0:8000/dev/result_types/answer.html
including the type for translations (inspired by #3925). For all other
types (which still need to be set up in subsequent PRs), template documentation
has been created for the transition period.
Doc of the fields used in Templates
===================================
The template documentation is the basis for the typing and is the first complete
documentation of the results (needed for engine development). It is the
"working paper" (the plan) with which further typifications can be implemented
in subsequent PRs.
- https://github.com/searxng/searxng/issues/357
Answer Templates
================
With the new (sub) types for `Answer`, the templates for the answers have also
been revised, `Translation` are now displayed with collapsible entries (inspired
by #3925).
!en-de dog
Plugins & Answerer
==================
The implementation for `Plugin` and `Answer` has been revised, see
documentation:
- Plugin: http://0.0.0.0:8000/dev/plugins/index.html
- Answerer: http://0.0.0.0:8000/dev/answerers/index.html
With `AnswerStorage` and `AnswerStorage` to manage those items (in follow up
PRs, `ArticleStorage`, `InfoStorage` and .. will be implemented)
Autocomplete
============
The autocompletion had a bug where the results from `Answer` had not been shown
in the past. To test activate autocompletion and try search terms for which we
have answerers
- statistics: type `min 1 2 3` .. in the completion list you should find an
entry like `[de] min(1, 2, 3) = 1`
- random: type `random uuid` .. in the completion list, the first item is a
random UUID
Extended Types
==============
SearXNG extends e.g. the request and response types of flask and httpx, a module
has been set up for type extensions:
- Extended Types
--> http://0.0.0.0:8000/dev/extended_types.html
Unit-Tests
==========
The unit tests have been completely revised. In the previous implementation,
the runtime (the global variables such as `searx.settings`) was not initialized
before each test, so the runtime environment with which a test ran was always
determined by the tests that ran before it. This was also the reason why we
sometimes had to observe non-deterministic errors in the tests in the past:
- https://github.com/searxng/searxng/issues/2988 is one example for the Runtime
issues, with non-deterministic behavior ..
- https://github.com/searxng/searxng/pull/3650
- https://github.com/searxng/searxng/pull/3654
- https://github.com/searxng/searxng/pull/3642#issuecomment-2226884469
- https://github.com/searxng/searxng/pull/3746#issuecomment-2300965005
Why msgspec.Struct
==================
We have already discussed typing based on e.g. `TypeDict` or `dataclass` in the past:
- https://github.com/searxng/searxng/pull/1562/files
- https://gist.github.com/dalf/972eb05e7a9bee161487132a7de244d2
- https://github.com/searxng/searxng/pull/1412/files
- https://github.com/searxng/searxng/pull/1356
In my opinion, TypeDict is unsuitable because the objects are still dictionaries
and not instances of classes / the `dataclass` are classes but ...
The `msgspec.Struct` combine the advantages of typing, runtime behaviour and
also offer the option of (fast) serializing (incl. type check) the objects.
Currently not possible but conceivable with `msgspec`: Outsourcing the engines
into separate processes, what possibilities this opens up in the future is left
to the imagination!
Internally, we have already defined that it is desirable to decouple the
development of the engines from the development of the SearXNG core / The
serialization of the `Result` objects is a prerequisite for this.
HINT: The threads listed above were the template for this PR, even though the
implementation here is based on msgspec. They should also be an inspiration for
the following PRs of typification, as the models and implementations can provide
a good direction.
Why just one commit?
====================
I tried to create several (thematically separated) commits, but gave up at some
point ... there are too many things to tackle at once / The comprehensibility of
the commits would not be improved by a thematic separation. On the contrary, we
would have to make multiple changes at the same places and the goal of a change
would be vaguely recognizable in the fog of the commits.
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2024-12-15 08:59:50 +00:00
|
|
|
from searx.result_types import Answer
|
2022-11-05 14:10:52 +00:00
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
import logging
|
|
|
|
|
|
|
|
logger: logging.Logger
|
2022-10-04 17:20:32 +00:00
|
|
|
|
|
|
|
traits: EngineTraits
|
2013-10-14 21:09:13 +00:00
|
|
|
|
2021-01-13 10:31:25 +00:00
|
|
|
about = {
|
2022-12-22 13:49:58 +00:00
|
|
|
"website": 'https://lite.duckduckgo.com/lite/',
|
2021-01-13 10:31:25 +00:00
|
|
|
"wikidata_id": 'Q12805',
|
|
|
|
"use_official_api": False,
|
|
|
|
"require_api_key": False,
|
|
|
|
"results": 'HTML',
|
|
|
|
}
|
|
|
|
|
2022-11-05 14:10:52 +00:00
|
|
|
send_accept_language_header = True
|
2024-10-09 09:59:31 +00:00
|
|
|
"""DuckDuckGo-Lite tries to guess user's preferred language from the HTTP
|
2022-11-05 14:10:52 +00:00
|
|
|
``Accept-Language``. Optional the user can select a region filter (but not a
|
|
|
|
language).
|
|
|
|
"""
|
|
|
|
|
2014-09-02 15:14:57 +00:00
|
|
|
# engine dependent config
|
2021-12-22 15:58:52 +00:00
|
|
|
categories = ['general', 'web']
|
2021-09-30 14:40:00 +00:00
|
|
|
paging = True
|
2016-07-18 14:15:37 +00:00
|
|
|
time_range_support = True
|
2022-11-05 14:10:52 +00:00
|
|
|
safesearch = True # user can't select but the results are filtered
|
2013-10-14 21:09:13 +00:00
|
|
|
|
2024-10-22 06:49:34 +00:00
|
|
|
url = "https://html.duckduckgo.com/html"
|
2018-03-01 04:30:48 +00:00
|
|
|
|
2021-12-27 08:26:22 +00:00
|
|
|
time_range_dict = {'day': 'd', 'week': 'w', 'month': 'm', 'year': 'y'}
|
2023-09-22 06:53:19 +00:00
|
|
|
form_data = {'v': 'l', 'api': 'd.js', 'o': 'json'}
|
2024-10-22 06:49:34 +00:00
|
|
|
__CACHE = []
|
2014-03-29 15:38:45 +00:00
|
|
|
|
2014-09-02 15:14:57 +00:00
|
|
|
|
2024-11-25 16:00:52 +00:00
|
|
|
def _cache_key(query: str, region: str):
|
|
|
|
return 'SearXNG_ddg_web_vqd' + redislib.secret_hash(f"{query}//{region}")
|
2024-10-22 06:49:34 +00:00
|
|
|
|
|
|
|
|
2024-11-25 16:00:52 +00:00
|
|
|
def cache_vqd(query: str, region: str, value: str):
|
2023-10-10 09:08:14 +00:00
|
|
|
"""Caches a ``vqd`` value from a query."""
|
2022-11-05 14:10:52 +00:00
|
|
|
c = redisdb.client()
|
|
|
|
if c:
|
2024-11-25 16:00:52 +00:00
|
|
|
logger.debug("VALKEY cache vqd value: %s (%s)", value, region)
|
|
|
|
c.set(_cache_key(query, region), value, ex=600)
|
2022-11-05 14:10:52 +00:00
|
|
|
|
2024-10-22 06:49:34 +00:00
|
|
|
else:
|
2024-11-25 16:00:52 +00:00
|
|
|
logger.debug("MEM cache vqd value: %s (%s)", value, region)
|
2024-10-22 06:49:34 +00:00
|
|
|
if len(__CACHE) > 100: # cache vqd from last 100 queries
|
|
|
|
__CACHE.pop(0)
|
2024-11-25 16:00:52 +00:00
|
|
|
__CACHE.append((_cache_key(query, region), value))
|
2022-11-05 14:10:52 +00:00
|
|
|
|
2023-10-10 09:08:14 +00:00
|
|
|
|
2024-11-25 16:00:52 +00:00
|
|
|
def get_vqd(query: str, region: str, force_request: bool = False):
|
|
|
|
"""Returns the ``vqd`` that fits to the *query*.
|
2023-10-10 09:08:14 +00:00
|
|
|
|
2024-11-25 16:00:52 +00:00
|
|
|
:param query: The query term
|
|
|
|
:param region: DDG's region code
|
|
|
|
:param force_request: force a request to get a vqd value from DDG
|
2023-10-10 09:08:14 +00:00
|
|
|
|
|
|
|
TL;DR; the ``vqd`` value is needed to pass DDG's bot protection and is used
|
|
|
|
by all request to DDG:
|
|
|
|
|
|
|
|
- DuckDuckGo Lite: ``https://lite.duckduckgo.com/lite`` (POST form data)
|
|
|
|
- DuckDuckGo Web: ``https://links.duckduckgo.com/d.js?q=...&vqd=...``
|
|
|
|
- DuckDuckGo Images: ``https://duckduckgo.com/i.js??q=...&vqd=...``
|
|
|
|
- DuckDuckGo Videos: ``https://duckduckgo.com/v.js??q=...&vqd=...``
|
|
|
|
- DuckDuckGo News: ``https://duckduckgo.com/news.js??q=...&vqd=...``
|
|
|
|
|
2024-11-25 16:00:52 +00:00
|
|
|
DDG's bot detection is sensitive to the ``vqd`` value. For some search terms
|
|
|
|
(such as extremely long search terms that are often sent by bots), no ``vqd``
|
|
|
|
value can be determined.
|
|
|
|
|
|
|
|
If SearXNG cannot determine a ``vqd`` value, then no request should go out
|
|
|
|
to DDG.
|
|
|
|
|
|
|
|
.. attention::
|
|
|
|
|
|
|
|
A request with a wrong ``vqd`` value leads to DDG temporarily putting
|
|
|
|
SearXNG's IP on a block list.
|
|
|
|
|
|
|
|
Requests from IPs in this block list run into timeouts. Not sure, but it
|
|
|
|
seems the block list is a sliding window: to get my IP rid from the bot list
|
|
|
|
I had to cool down my IP for 1h (send no requests from that IP to DDG).
|
2022-11-05 14:10:52 +00:00
|
|
|
"""
|
2024-11-25 16:00:52 +00:00
|
|
|
key = _cache_key(query, region)
|
2024-10-22 06:49:34 +00:00
|
|
|
|
2022-11-05 14:10:52 +00:00
|
|
|
c = redisdb.client()
|
|
|
|
if c:
|
|
|
|
value = c.get(key)
|
2023-10-10 09:08:14 +00:00
|
|
|
if value or value == b'':
|
2024-11-25 16:00:52 +00:00
|
|
|
value = value.decode('utf-8') # type: ignore
|
2024-10-22 06:49:34 +00:00
|
|
|
logger.debug("re-use CACHED vqd value: %s", value)
|
2022-11-05 14:10:52 +00:00
|
|
|
return value
|
2019-01-06 14:27:46 +00:00
|
|
|
|
2024-11-25 16:00:52 +00:00
|
|
|
for k, value in __CACHE:
|
|
|
|
if k == key:
|
|
|
|
logger.debug("MEM re-use CACHED vqd value: %s", value)
|
|
|
|
return value
|
|
|
|
|
|
|
|
if force_request:
|
|
|
|
resp = get(f'https://duckduckgo.com/?q={quote_plus(query)}')
|
|
|
|
if resp.status_code == 200: # type: ignore
|
|
|
|
value = extr(resp.text, 'vqd="', '"') # type: ignore
|
|
|
|
if value:
|
|
|
|
logger.debug("vqd value from DDG request: %s", value)
|
|
|
|
cache_vqd(query, region, value)
|
2024-10-22 06:49:34 +00:00
|
|
|
return value
|
2024-11-25 16:00:52 +00:00
|
|
|
|
2024-10-22 06:49:34 +00:00
|
|
|
return None
|
2018-03-01 04:30:48 +00:00
|
|
|
|
2022-11-05 14:10:52 +00:00
|
|
|
|
|
|
|
def get_ddg_lang(eng_traits: EngineTraits, sxng_locale, default='en_US'):
|
|
|
|
"""Get DuckDuckGo's language identifier from SearXNG's locale.
|
|
|
|
|
2023-09-15 07:53:03 +00:00
|
|
|
DuckDuckGo defines its languages by region codes (see
|
2022-11-05 14:10:52 +00:00
|
|
|
:py:obj:`fetch_traits`).
|
|
|
|
|
|
|
|
To get region and language of a DDG service use:
|
|
|
|
|
|
|
|
.. code: python
|
|
|
|
|
|
|
|
eng_region = traits.get_region(params['searxng_locale'], traits.all_locale)
|
|
|
|
eng_lang = get_ddg_lang(traits, params['searxng_locale'])
|
|
|
|
|
|
|
|
It might confuse, but the ``l`` value of the cookie is what SearXNG calls
|
|
|
|
the *region*:
|
|
|
|
|
|
|
|
.. code:: python
|
|
|
|
|
|
|
|
# !ddi paris :es-AR --> {'ad': 'es_AR', 'ah': 'ar-es', 'l': 'ar-es'}
|
|
|
|
params['cookies']['ad'] = eng_lang
|
|
|
|
params['cookies']['ah'] = eng_region
|
|
|
|
params['cookies']['l'] = eng_region
|
|
|
|
|
|
|
|
.. hint::
|
|
|
|
|
2024-10-22 06:49:34 +00:00
|
|
|
`DDG-lite <https://lite.duckduckgo.com/lite>`__ and the *no Javascript*
|
|
|
|
page https://html.duckduckgo.com/html do not offer a language selection
|
|
|
|
to the user, only a region can be selected by the user (``eng_region``
|
|
|
|
from the example above). DDG-lite and *no Javascript* store the selected
|
2022-11-05 14:10:52 +00:00
|
|
|
region in a cookie::
|
|
|
|
|
|
|
|
params['cookies']['kl'] = eng_region # 'ar-es'
|
|
|
|
|
|
|
|
"""
|
2023-06-25 10:37:31 +00:00
|
|
|
return eng_traits.custom['lang_region'].get( # type: ignore
|
|
|
|
sxng_locale, eng_traits.get_language(sxng_locale, default)
|
|
|
|
)
|
2022-11-05 14:10:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
ddg_reg_map = {
|
|
|
|
'tw-tzh': 'zh_TW',
|
|
|
|
'hk-tzh': 'zh_HK',
|
|
|
|
'ct-ca': 'skip', # ct-ca and es-ca both map to ca_ES
|
|
|
|
'es-ca': 'ca_ES',
|
|
|
|
'id-en': 'id_ID',
|
|
|
|
'no-no': 'nb_NO',
|
|
|
|
'jp-jp': 'ja_JP',
|
|
|
|
'kr-kr': 'ko_KR',
|
|
|
|
'xa-ar': 'ar_SA',
|
|
|
|
'sl-sl': 'sl_SI',
|
|
|
|
'th-en': 'th_TH',
|
|
|
|
'vn-en': 'vi_VN',
|
|
|
|
}
|
|
|
|
|
|
|
|
ddg_lang_map = {
|
|
|
|
# use ar --> ar_EG (Egypt's arabic)
|
|
|
|
"ar_DZ": 'lang_region',
|
|
|
|
"ar_JO": 'lang_region',
|
|
|
|
"ar_SA": 'lang_region',
|
|
|
|
# use bn --> bn_BD
|
|
|
|
'bn_IN': 'lang_region',
|
|
|
|
# use de --> de_DE
|
|
|
|
'de_CH': 'lang_region',
|
|
|
|
# use en --> en_US,
|
|
|
|
'en_AU': 'lang_region',
|
|
|
|
'en_CA': 'lang_region',
|
|
|
|
'en_GB': 'lang_region',
|
|
|
|
# Esperanto
|
|
|
|
'eo_XX': 'eo',
|
|
|
|
# use es --> es_ES,
|
|
|
|
'es_AR': 'lang_region',
|
|
|
|
'es_CL': 'lang_region',
|
|
|
|
'es_CO': 'lang_region',
|
|
|
|
'es_CR': 'lang_region',
|
|
|
|
'es_EC': 'lang_region',
|
|
|
|
'es_MX': 'lang_region',
|
|
|
|
'es_PE': 'lang_region',
|
|
|
|
'es_UY': 'lang_region',
|
|
|
|
'es_VE': 'lang_region',
|
|
|
|
# use fr --> rf_FR
|
|
|
|
'fr_CA': 'lang_region',
|
|
|
|
'fr_CH': 'lang_region',
|
|
|
|
'fr_BE': 'lang_region',
|
|
|
|
# use nl --> nl_NL
|
|
|
|
'nl_BE': 'lang_region',
|
|
|
|
# use pt --> pt_PT
|
|
|
|
'pt_BR': 'lang_region',
|
|
|
|
# skip these languages
|
|
|
|
'od_IN': 'skip',
|
|
|
|
'io_XX': 'skip',
|
|
|
|
'tokipona_XX': 'skip',
|
|
|
|
}
|
2017-05-21 03:33:08 +00:00
|
|
|
|
|
|
|
|
2024-04-08 07:15:46 +00:00
|
|
|
def quote_ddg_bangs(query):
|
2023-04-03 07:52:16 +00:00
|
|
|
# quote ddg bangs
|
|
|
|
query_parts = []
|
2024-04-08 07:15:46 +00:00
|
|
|
|
2023-04-03 07:52:16 +00:00
|
|
|
# for val in re.split(r'(\s+)', query):
|
|
|
|
for val in re.split(r'(\s+)', query):
|
|
|
|
if not val.strip():
|
|
|
|
continue
|
|
|
|
if val.startswith('!') and external_bang.get_node(external_bang.EXTERNAL_BANGS, val[1:]):
|
|
|
|
val = f"'{val}'"
|
|
|
|
query_parts.append(val)
|
2024-04-08 07:15:46 +00:00
|
|
|
return ' '.join(query_parts)
|
|
|
|
|
|
|
|
|
|
|
|
def request(query, params):
|
|
|
|
|
|
|
|
query = quote_ddg_bangs(query)
|
|
|
|
|
2024-10-22 06:49:34 +00:00
|
|
|
if len(query) >= 500:
|
|
|
|
# DDG does not accept queries with more than 499 chars
|
|
|
|
params["url"] = None
|
|
|
|
return
|
|
|
|
|
|
|
|
# Advanced search syntax ends in CAPTCHA
|
|
|
|
# https://duckduckgo.com/duckduckgo-help-pages/results/syntax/
|
2024-11-14 02:11:22 +00:00
|
|
|
query = " ".join(
|
|
|
|
[
|
|
|
|
x.removeprefix("site:").removeprefix("intitle:").removeprefix("inurl:").removeprefix("filetype:")
|
|
|
|
for x in query.split()
|
|
|
|
]
|
|
|
|
)
|
2024-11-25 16:00:52 +00:00
|
|
|
eng_region: str = traits.get_region(params['searxng_locale'], traits.all_locale) # type: ignore
|
2024-10-22 06:49:34 +00:00
|
|
|
if eng_region == "wt-wt":
|
|
|
|
# https://html.duckduckgo.com/html sets an empty value for "all".
|
|
|
|
eng_region = ""
|
|
|
|
|
|
|
|
params['data']['kl'] = eng_region
|
|
|
|
params['cookies']['kl'] = eng_region
|
|
|
|
|
2022-11-05 14:10:52 +00:00
|
|
|
# eng_lang = get_ddg_lang(traits, params['searxng_locale'])
|
|
|
|
|
2020-10-09 13:01:40 +00:00
|
|
|
params['url'] = url
|
|
|
|
params['method'] = 'POST'
|
2024-11-17 09:02:15 +00:00
|
|
|
params['data']['q'] = query
|
2021-09-30 14:40:00 +00:00
|
|
|
|
|
|
|
# The API is not documented, so we do some reverse engineering and emulate
|
2024-10-22 06:49:34 +00:00
|
|
|
# what https://html.duckduckgo.com/html does when you press "next Page" link
|
|
|
|
# again and again ..
|
2021-09-30 14:40:00 +00:00
|
|
|
|
|
|
|
params['headers']['Content-Type'] = 'application/x-www-form-urlencoded'
|
|
|
|
|
2024-10-22 06:49:34 +00:00
|
|
|
params['headers']['Sec-Fetch-Dest'] = "document"
|
|
|
|
params['headers']['Sec-Fetch-Mode'] = "navigate" # at least this one is used by ddg's bot detection
|
|
|
|
params['headers']['Sec-Fetch-Site'] = "same-origin"
|
|
|
|
params['headers']['Sec-Fetch-User'] = "?1"
|
|
|
|
|
|
|
|
# Form of the initial search page does have empty values in the form
|
|
|
|
if params['pageno'] == 1:
|
|
|
|
|
|
|
|
params['data']['b'] = ""
|
|
|
|
|
|
|
|
params['data']['df'] = ''
|
|
|
|
if params['time_range'] in time_range_dict:
|
|
|
|
|
|
|
|
params['data']['df'] = time_range_dict[params['time_range']]
|
|
|
|
params['cookies']['df'] = time_range_dict[params['time_range']]
|
|
|
|
|
2021-09-30 14:40:00 +00:00
|
|
|
if params['pageno'] == 2:
|
2024-10-22 06:49:34 +00:00
|
|
|
|
2024-03-03 18:00:02 +00:00
|
|
|
# second page does have an offset of 20
|
|
|
|
offset = (params['pageno'] - 1) * 20
|
2021-09-30 14:40:00 +00:00
|
|
|
params['data']['s'] = offset
|
|
|
|
params['data']['dc'] = offset + 1
|
|
|
|
|
|
|
|
elif params['pageno'] > 2:
|
2024-10-22 06:49:34 +00:00
|
|
|
|
2024-03-03 18:00:02 +00:00
|
|
|
# third and following pages do have an offset of 20 + n*50
|
|
|
|
offset = 20 + (params['pageno'] - 2) * 50
|
2021-09-30 14:40:00 +00:00
|
|
|
params['data']['s'] = offset
|
|
|
|
params['data']['dc'] = offset + 1
|
|
|
|
|
|
|
|
if params['pageno'] > 1:
|
|
|
|
|
2024-10-22 06:49:34 +00:00
|
|
|
# initial page does not have these additional data in the input form
|
2023-09-22 06:53:19 +00:00
|
|
|
params['data']['o'] = form_data.get('o', 'json')
|
|
|
|
params['data']['api'] = form_data.get('api', 'd.js')
|
|
|
|
params['data']['nextParams'] = form_data.get('nextParams', '')
|
|
|
|
params['data']['v'] = form_data.get('v', 'l')
|
2024-10-22 06:49:34 +00:00
|
|
|
params['headers']['Referer'] = url
|
2023-10-10 06:13:07 +00:00
|
|
|
|
2024-11-25 16:00:52 +00:00
|
|
|
vqd = get_vqd(query, eng_region, force_request=False)
|
2024-10-22 06:49:34 +00:00
|
|
|
|
|
|
|
# Certain conditions must be met in order to call up one of the
|
|
|
|
# following pages ...
|
|
|
|
|
|
|
|
if vqd:
|
|
|
|
params['data']['vqd'] = vqd # follow up pages / requests needs a vqd argument
|
|
|
|
else:
|
|
|
|
# Don't try to call follow up pages without a vqd value. DDG
|
|
|
|
# recognizes this as a request from a bot. This lowers the
|
|
|
|
# reputation of the SearXNG IP and DDG starts to activate CAPTCHAs.
|
|
|
|
params["url"] = None
|
|
|
|
return
|
|
|
|
|
|
|
|
if params['searxng_locale'].startswith("zh"):
|
|
|
|
# Some locales (at least China) do not have a "next page" button and ddg
|
|
|
|
# will return a HTTP/2 403 Forbidden for a request of such a page.
|
|
|
|
params["url"] = None
|
|
|
|
return
|
2021-02-09 11:07:19 +00:00
|
|
|
|
2021-09-30 14:40:00 +00:00
|
|
|
logger.debug("param data: %s", params['data'])
|
|
|
|
logger.debug("param cookies: %s", params['cookies'])
|
2013-10-14 21:09:13 +00:00
|
|
|
|
2021-12-27 08:26:22 +00:00
|
|
|
|
2024-10-22 06:49:34 +00:00
|
|
|
def is_ddg_captcha(dom):
|
|
|
|
"""In case of CAPTCHA ddg response its own *not a Robot* dialog and is not
|
|
|
|
redirected to a CAPTCHA page."""
|
|
|
|
|
|
|
|
return bool(eval_xpath(dom, "//form[@id='challenge-form']"))
|
2024-10-19 12:19:27 +00:00
|
|
|
|
|
|
|
|
2013-10-14 21:09:13 +00:00
|
|
|
def response(resp):
|
2021-02-09 11:07:19 +00:00
|
|
|
|
2021-09-30 14:40:00 +00:00
|
|
|
if resp.status_code == 303:
|
|
|
|
return []
|
|
|
|
|
2021-02-09 13:36:43 +00:00
|
|
|
results = []
|
2022-11-05 14:10:52 +00:00
|
|
|
doc = lxml.html.fromstring(resp.text)
|
2014-09-02 15:14:57 +00:00
|
|
|
|
2024-10-22 06:49:34 +00:00
|
|
|
if is_ddg_captcha(doc):
|
|
|
|
# set suspend time to zero is OK --> ddg does not block the IP
|
|
|
|
raise SearxEngineCaptchaException(suspended_time=0, message=f"CAPTCHA ({resp.search_params['data'].get('kl')})")
|
2022-11-05 14:10:52 +00:00
|
|
|
|
2024-10-22 06:49:34 +00:00
|
|
|
form = eval_xpath(doc, '//input[@name="vqd"]/..')
|
|
|
|
if len(form):
|
|
|
|
# some locales (at least China) does not have a "next page" button
|
|
|
|
form = form[0]
|
|
|
|
form_vqd = eval_xpath(form, '//input[@name="vqd"]/@value')[0]
|
|
|
|
|
2024-11-25 16:00:52 +00:00
|
|
|
cache_vqd(resp.search_params['data']['q'], resp.search_params['data']['kl'], form_vqd)
|
2023-09-22 06:53:19 +00:00
|
|
|
|
2024-10-22 06:49:34 +00:00
|
|
|
# just select "web-result" and ignore results of class "result--ad result--ad--small"
|
|
|
|
for div_result in eval_xpath(doc, '//div[@id="links"]/div[contains(@class, "web-result")]'):
|
2023-09-22 06:53:19 +00:00
|
|
|
|
2024-10-22 06:49:34 +00:00
|
|
|
item = {}
|
|
|
|
title = eval_xpath(div_result, './/h2/a')
|
|
|
|
if not title:
|
|
|
|
# this is the "No results." item in the result list
|
|
|
|
continue
|
|
|
|
item["title"] = extract_text(title)
|
|
|
|
item["url"] = eval_xpath(div_result, './/h2/a/@href')[0]
|
|
|
|
item["content"] = extract_text(eval_xpath(div_result, './/a[contains(@class, "result__snippet")]')[0])
|
2021-09-30 14:40:00 +00:00
|
|
|
|
2024-10-22 06:49:34 +00:00
|
|
|
results.append(item)
|
2021-09-30 14:40:00 +00:00
|
|
|
|
2024-10-22 06:49:34 +00:00
|
|
|
zero_click_info_xpath = '//div[@id="zero_click_abstract"]'
|
2024-11-25 16:00:52 +00:00
|
|
|
zero_click = extract_text(eval_xpath(doc, zero_click_info_xpath)).strip() # type: ignore
|
2023-09-09 08:56:19 +00:00
|
|
|
|
2024-11-17 09:02:15 +00:00
|
|
|
if zero_click and (
|
|
|
|
"Your IP address is" not in zero_click
|
|
|
|
and "Your user agent:" not in zero_click
|
|
|
|
and "URL Decoded:" not in zero_click
|
|
|
|
):
|
2023-09-09 08:56:19 +00:00
|
|
|
current_query = resp.search_params["data"].get("q")
|
|
|
|
|
[refactor] typification of SearXNG (initial) / result items (part 1)
Typification of SearXNG
=======================
This patch introduces the typing of the results. The why and how is described
in the documentation, please generate the documentation ..
$ make docs.clean docs.live
and read the following articles in the "Developer documentation":
- result types --> http://0.0.0.0:8000/dev/result_types/index.html
The result types are available from the `searx.result_types` module. The
following have been implemented so far:
- base result type: `searx.result_type.Result`
--> http://0.0.0.0:8000/dev/result_types/base_result.html
- answer results
--> http://0.0.0.0:8000/dev/result_types/answer.html
including the type for translations (inspired by #3925). For all other
types (which still need to be set up in subsequent PRs), template documentation
has been created for the transition period.
Doc of the fields used in Templates
===================================
The template documentation is the basis for the typing and is the first complete
documentation of the results (needed for engine development). It is the
"working paper" (the plan) with which further typifications can be implemented
in subsequent PRs.
- https://github.com/searxng/searxng/issues/357
Answer Templates
================
With the new (sub) types for `Answer`, the templates for the answers have also
been revised, `Translation` are now displayed with collapsible entries (inspired
by #3925).
!en-de dog
Plugins & Answerer
==================
The implementation for `Plugin` and `Answer` has been revised, see
documentation:
- Plugin: http://0.0.0.0:8000/dev/plugins/index.html
- Answerer: http://0.0.0.0:8000/dev/answerers/index.html
With `AnswerStorage` and `AnswerStorage` to manage those items (in follow up
PRs, `ArticleStorage`, `InfoStorage` and .. will be implemented)
Autocomplete
============
The autocompletion had a bug where the results from `Answer` had not been shown
in the past. To test activate autocompletion and try search terms for which we
have answerers
- statistics: type `min 1 2 3` .. in the completion list you should find an
entry like `[de] min(1, 2, 3) = 1`
- random: type `random uuid` .. in the completion list, the first item is a
random UUID
Extended Types
==============
SearXNG extends e.g. the request and response types of flask and httpx, a module
has been set up for type extensions:
- Extended Types
--> http://0.0.0.0:8000/dev/extended_types.html
Unit-Tests
==========
The unit tests have been completely revised. In the previous implementation,
the runtime (the global variables such as `searx.settings`) was not initialized
before each test, so the runtime environment with which a test ran was always
determined by the tests that ran before it. This was also the reason why we
sometimes had to observe non-deterministic errors in the tests in the past:
- https://github.com/searxng/searxng/issues/2988 is one example for the Runtime
issues, with non-deterministic behavior ..
- https://github.com/searxng/searxng/pull/3650
- https://github.com/searxng/searxng/pull/3654
- https://github.com/searxng/searxng/pull/3642#issuecomment-2226884469
- https://github.com/searxng/searxng/pull/3746#issuecomment-2300965005
Why msgspec.Struct
==================
We have already discussed typing based on e.g. `TypeDict` or `dataclass` in the past:
- https://github.com/searxng/searxng/pull/1562/files
- https://gist.github.com/dalf/972eb05e7a9bee161487132a7de244d2
- https://github.com/searxng/searxng/pull/1412/files
- https://github.com/searxng/searxng/pull/1356
In my opinion, TypeDict is unsuitable because the objects are still dictionaries
and not instances of classes / the `dataclass` are classes but ...
The `msgspec.Struct` combine the advantages of typing, runtime behaviour and
also offer the option of (fast) serializing (incl. type check) the objects.
Currently not possible but conceivable with `msgspec`: Outsourcing the engines
into separate processes, what possibilities this opens up in the future is left
to the imagination!
Internally, we have already defined that it is desirable to decouple the
development of the engines from the development of the SearXNG core / The
serialization of the `Result` objects is a prerequisite for this.
HINT: The threads listed above were the template for this PR, even though the
implementation here is based on msgspec. They should also be an inspiration for
the following PRs of typification, as the models and implementations can provide
a good direction.
Why just one commit?
====================
I tried to create several (thematically separated) commits, but gave up at some
point ... there are too many things to tackle at once / The comprehensibility of
the commits would not be improved by a thematic separation. On the contrary, we
would have to make multiple changes at the same places and the goal of a change
would be vaguely recognizable in the fog of the commits.
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2024-12-15 08:59:50 +00:00
|
|
|
Answer(results=results, answer=zero_click, url="https://duckduckgo.com/?" + urlencode({"q": current_query}))
|
2023-09-09 08:56:19 +00:00
|
|
|
|
2013-10-15 17:11:43 +00:00
|
|
|
return results
|
2016-11-06 02:51:38 +00:00
|
|
|
|
2021-12-27 08:26:22 +00:00
|
|
|
|
2022-11-05 14:10:52 +00:00
|
|
|
def fetch_traits(engine_traits: EngineTraits):
|
|
|
|
"""Fetch languages & regions from DuckDuckGo.
|
2016-11-06 02:51:38 +00:00
|
|
|
|
2022-11-05 14:10:52 +00:00
|
|
|
SearXNG's ``all`` locale maps DuckDuckGo's "Alle regions" (``wt-wt``).
|
2024-10-09 09:59:31 +00:00
|
|
|
DuckDuckGo's language "Browsers preferred language" (``wt_WT``) makes no
|
2022-11-05 14:10:52 +00:00
|
|
|
sense in a SearXNG request since SearXNG's ``all`` will not add a
|
|
|
|
``Accept-Language`` HTTP header. The value in ``engine_traits.all_locale``
|
|
|
|
is ``wt-wt`` (the region).
|
2022-10-04 17:20:32 +00:00
|
|
|
|
2023-09-15 07:53:03 +00:00
|
|
|
Beside regions DuckDuckGo also defines its languages by region codes. By
|
2022-11-05 14:10:52 +00:00
|
|
|
example these are the english languages in DuckDuckGo:
|
2022-10-04 17:20:32 +00:00
|
|
|
|
2022-11-05 14:10:52 +00:00
|
|
|
- en_US
|
|
|
|
- en_AU
|
|
|
|
- en_CA
|
|
|
|
- en_GB
|
2022-10-04 17:20:32 +00:00
|
|
|
|
2022-11-05 14:10:52 +00:00
|
|
|
The function :py:obj:`get_ddg_lang` evaluates DuckDuckGo's language from
|
|
|
|
SearXNG's locale.
|
2022-10-04 17:20:32 +00:00
|
|
|
|
2022-11-05 14:10:52 +00:00
|
|
|
"""
|
2024-05-23 23:21:58 +00:00
|
|
|
# pylint: disable=too-many-branches, too-many-statements, disable=import-outside-toplevel
|
2024-06-14 12:39:22 +00:00
|
|
|
from searx.utils import js_variable_to_python
|
2024-05-23 23:21:58 +00:00
|
|
|
|
2022-11-05 14:10:52 +00:00
|
|
|
# fetch regions
|
2022-10-04 17:20:32 +00:00
|
|
|
|
|
|
|
engine_traits.all_locale = 'wt-wt'
|
|
|
|
|
2024-03-10 09:23:25 +00:00
|
|
|
# updated from u661.js to u.7669f071a13a7daa57cb / should be updated automatically?
|
|
|
|
resp = get('https://duckduckgo.com/dist/util/u.7669f071a13a7daa57cb.js')
|
2022-11-05 14:10:52 +00:00
|
|
|
|
2023-06-25 10:37:31 +00:00
|
|
|
if not resp.ok: # type: ignore
|
2022-10-04 17:20:32 +00:00
|
|
|
print("ERROR: response from DuckDuckGo is not OK.")
|
|
|
|
|
2024-11-25 16:00:52 +00:00
|
|
|
js_code = extr(resp.text, 'regions:', ',snippetLengths') # type: ignore
|
2022-10-04 17:20:32 +00:00
|
|
|
|
2024-05-23 23:21:58 +00:00
|
|
|
regions = json.loads(js_code)
|
2022-10-04 17:20:32 +00:00
|
|
|
for eng_tag, name in regions.items():
|
|
|
|
|
|
|
|
if eng_tag == 'wt-wt':
|
|
|
|
engine_traits.all_locale = 'wt-wt'
|
|
|
|
continue
|
|
|
|
|
2022-11-05 14:10:52 +00:00
|
|
|
region = ddg_reg_map.get(eng_tag)
|
2022-10-04 17:20:32 +00:00
|
|
|
if region == 'skip':
|
|
|
|
continue
|
|
|
|
|
|
|
|
if not region:
|
|
|
|
eng_territory, eng_lang = eng_tag.split('-')
|
|
|
|
region = eng_lang + '_' + eng_territory.upper()
|
|
|
|
|
|
|
|
try:
|
2022-11-05 14:10:52 +00:00
|
|
|
sxng_tag = locales.region_tag(babel.Locale.parse(region))
|
2022-10-04 17:20:32 +00:00
|
|
|
except babel.UnknownLocaleError:
|
|
|
|
print("ERROR: %s (%s) -> %s is unknown by babel" % (name, eng_tag, region))
|
|
|
|
continue
|
|
|
|
|
|
|
|
conflict = engine_traits.regions.get(sxng_tag)
|
|
|
|
if conflict:
|
|
|
|
if conflict != eng_tag:
|
|
|
|
print("CONFLICT: babel %s --> %s, %s" % (sxng_tag, conflict, eng_tag))
|
|
|
|
continue
|
|
|
|
engine_traits.regions[sxng_tag] = eng_tag
|
2022-11-05 14:10:52 +00:00
|
|
|
|
|
|
|
# fetch languages
|
|
|
|
|
|
|
|
engine_traits.custom['lang_region'] = {}
|
|
|
|
|
2024-11-25 16:00:52 +00:00
|
|
|
js_code = extr(resp.text, 'languages:', ',regions') # type: ignore
|
2022-11-05 14:10:52 +00:00
|
|
|
|
2024-05-23 23:21:58 +00:00
|
|
|
languages = js_variable_to_python(js_code)
|
2022-11-05 14:10:52 +00:00
|
|
|
for eng_lang, name in languages.items():
|
|
|
|
|
|
|
|
if eng_lang == 'wt_WT':
|
|
|
|
continue
|
|
|
|
|
|
|
|
babel_tag = ddg_lang_map.get(eng_lang, eng_lang)
|
|
|
|
if babel_tag == 'skip':
|
|
|
|
continue
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
if babel_tag == 'lang_region':
|
|
|
|
sxng_tag = locales.region_tag(babel.Locale.parse(eng_lang))
|
|
|
|
engine_traits.custom['lang_region'][sxng_tag] = eng_lang
|
|
|
|
continue
|
|
|
|
|
|
|
|
sxng_tag = locales.language_tag(babel.Locale.parse(babel_tag))
|
|
|
|
|
|
|
|
except babel.UnknownLocaleError:
|
|
|
|
print("ERROR: language %s (%s) is unknown by babel" % (name, eng_lang))
|
|
|
|
continue
|
|
|
|
|
|
|
|
conflict = engine_traits.languages.get(sxng_tag)
|
|
|
|
if conflict:
|
|
|
|
if conflict != eng_lang:
|
|
|
|
print("CONFLICT: babel %s --> %s, %s" % (sxng_tag, conflict, eng_lang))
|
|
|
|
continue
|
|
|
|
engine_traits.languages[sxng_tag] = eng_lang
|