2022-01-19 16:25:24 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
# lint: pylint
|
|
|
|
"""This module implements functions needed for the autocompleter.
|
2014-09-13 16:47:28 +00:00
|
|
|
|
2022-01-19 16:25:24 +00:00
|
|
|
"""
|
2014-09-13 16:47:28 +00:00
|
|
|
|
2014-03-29 15:30:49 +00:00
|
|
|
from json import loads
|
2020-08-06 15:42:46 +00:00
|
|
|
from urllib.parse import urlencode
|
|
|
|
|
2022-01-19 16:25:24 +00:00
|
|
|
from lxml import etree
|
2021-03-18 18:59:01 +00:00
|
|
|
from httpx import HTTPError
|
|
|
|
|
2015-04-09 22:59:25 +00:00
|
|
|
from searx import settings
|
2021-11-13 12:26:47 +00:00
|
|
|
from searx.data import ENGINES_LANGUAGES
|
[httpx] replace searx.poolrequests by searx.network
settings.yml:
* outgoing.networks:
* can contains network definition
* propertiers: enable_http, verify, http2, max_connections, max_keepalive_connections,
keepalive_expiry, local_addresses, support_ipv4, support_ipv6, proxies, max_redirects, retries
* retries: 0 by default, number of times searx retries to send the HTTP request (using different IP & proxy each time)
* local_addresses can be "192.168.0.1/24" (it supports IPv6)
* support_ipv4 & support_ipv6: both True by default
see https://github.com/searx/searx/pull/1034
* each engine can define a "network" section:
* either a full network description
* either reference an existing network
* all HTTP requests of engine use the same HTTP configuration (it was not the case before, see proxy configuration in master)
2021-04-05 08:43:33 +00:00
|
|
|
from searx.network import get as http_get
|
2021-02-22 17:13:50 +00:00
|
|
|
from searx.exceptions import SearxEngineResponseException
|
2018-01-19 02:51:27 +00:00
|
|
|
|
2022-01-19 16:25:24 +00:00
|
|
|
# a fetch_supported_languages() for XPath engines isn't available right now
|
|
|
|
# _brave = ENGINES_LANGUAGES['brave'].keys()
|
|
|
|
|
2015-04-09 22:59:25 +00:00
|
|
|
|
|
|
|
def get(*args, **kwargs):
|
2015-05-02 13:45:17 +00:00
|
|
|
if 'timeout' not in kwargs:
|
2015-08-02 17:38:27 +00:00
|
|
|
kwargs['timeout'] = settings['outgoing']['request_timeout']
|
2021-02-22 17:13:50 +00:00
|
|
|
kwargs['raise_for_httperror'] = True
|
2015-04-09 22:59:25 +00:00
|
|
|
return http_get(*args, **kwargs)
|
2015-01-10 15:42:57 +00:00
|
|
|
|
|
|
|
|
2022-01-19 16:25:24 +00:00
|
|
|
def brave(query, _lang):
|
2022-01-02 22:05:49 +00:00
|
|
|
# brave search autocompleter
|
2022-01-19 16:25:24 +00:00
|
|
|
url = 'https://search.brave.com/api/suggest?'
|
|
|
|
url += urlencode({'q': query})
|
|
|
|
country = 'all'
|
|
|
|
# if lang in _brave:
|
|
|
|
# country = lang
|
|
|
|
kwargs = {'cookies': {'country': country}}
|
|
|
|
resp = get(url, **kwargs)
|
2022-01-02 22:05:49 +00:00
|
|
|
|
|
|
|
results = []
|
|
|
|
|
|
|
|
if resp.ok:
|
2022-01-23 16:22:13 +00:00
|
|
|
data = resp.json()
|
2022-01-02 22:05:49 +00:00
|
|
|
for item in data[1]:
|
|
|
|
results.append(item)
|
|
|
|
return results
|
|
|
|
|
|
|
|
|
2022-01-19 16:25:24 +00:00
|
|
|
def dbpedia(query, _lang):
|
2015-05-02 09:43:12 +00:00
|
|
|
# dbpedia autocompleter, no HTTPS
|
2020-12-04 15:47:43 +00:00
|
|
|
autocomplete_url = 'https://lookup.dbpedia.org/api/search.asmx/KeywordSearch?'
|
2014-03-29 15:30:49 +00:00
|
|
|
|
2016-01-18 11:47:31 +00:00
|
|
|
response = get(autocomplete_url + urlencode(dict(QueryString=query)))
|
2014-03-29 15:30:49 +00:00
|
|
|
|
|
|
|
results = []
|
|
|
|
|
|
|
|
if response.ok:
|
|
|
|
dom = etree.fromstring(response.content)
|
2020-12-04 15:47:43 +00:00
|
|
|
results = dom.xpath('//Result/Label//text()')
|
2014-03-29 15:30:49 +00:00
|
|
|
|
|
|
|
return results
|
|
|
|
|
|
|
|
|
2022-01-19 16:25:24 +00:00
|
|
|
def duckduckgo(query, _lang):
|
2014-09-13 16:47:28 +00:00
|
|
|
# duckduckgo autocompleter
|
2014-09-07 21:56:06 +00:00
|
|
|
url = 'https://ac.duckduckgo.com/ac/?{0}&type=list'
|
|
|
|
|
|
|
|
resp = loads(get(url.format(urlencode(dict(q=query)))).text)
|
|
|
|
if len(resp) > 1:
|
|
|
|
return resp[1]
|
|
|
|
return []
|
|
|
|
|
|
|
|
|
2016-03-30 00:53:31 +00:00
|
|
|
def google(query, lang):
|
2014-03-29 15:30:49 +00:00
|
|
|
# google autocompleter
|
2015-06-01 18:45:18 +00:00
|
|
|
autocomplete_url = 'https://suggestqueries.google.com/complete/search?client=toolbar&'
|
2014-03-29 15:30:49 +00:00
|
|
|
|
2016-03-30 00:53:31 +00:00
|
|
|
response = get(autocomplete_url + urlencode(dict(hl=lang, q=query)))
|
2014-03-29 15:30:49 +00:00
|
|
|
|
|
|
|
results = []
|
|
|
|
|
|
|
|
if response.ok:
|
2014-03-29 16:04:33 +00:00
|
|
|
dom = etree.fromstring(response.text)
|
2014-03-29 15:30:49 +00:00
|
|
|
results = dom.xpath('//suggestion/@data')
|
|
|
|
|
|
|
|
return results
|
|
|
|
|
|
|
|
|
2022-04-14 01:02:05 +00:00
|
|
|
def seznam(query, _lang):
|
|
|
|
# seznam search autocompleter
|
|
|
|
url = 'https://suggest.seznam.cz/fulltext/cs?{query}'
|
|
|
|
|
|
|
|
resp = get(url.format(query=urlencode(
|
|
|
|
{'phrase': query, 'cursorPosition': len(query), 'format': 'json-2', 'highlight': '1', 'count': '6'}
|
|
|
|
)))
|
|
|
|
|
|
|
|
if not resp.ok:
|
|
|
|
return []
|
|
|
|
|
|
|
|
data = resp.json()
|
|
|
|
return [''.join(
|
|
|
|
[part.get('text', '') for part in item.get('text', [])]
|
|
|
|
) for item in data.get('result', []) if item.get('itemType', None) == 'ItemType.TEXT']
|
|
|
|
|
2016-03-30 00:53:31 +00:00
|
|
|
def startpage(query, lang):
|
|
|
|
# startpage autocompleter
|
2021-11-13 12:26:47 +00:00
|
|
|
lui = ENGINES_LANGUAGES['startpage'].get(lang, 'english')
|
|
|
|
url = 'https://startpage.com/suggestions?{query}'
|
|
|
|
resp = get(url.format(query=urlencode({'q': query, 'segment': 'startpage.udog', 'lui': lui})))
|
|
|
|
data = resp.json()
|
|
|
|
return [e['text'] for e in data.get('suggestions', []) if 'text' in e]
|
2015-06-01 18:45:18 +00:00
|
|
|
|
|
|
|
|
2022-01-19 16:25:24 +00:00
|
|
|
def swisscows(query, _lang):
|
2020-02-14 18:19:24 +00:00
|
|
|
# swisscows autocompleter
|
|
|
|
url = 'https://swisscows.ch/api/suggest?{query}&itemsCount=5'
|
|
|
|
|
|
|
|
resp = loads(get(url.format(query=urlencode({'query': query}))).text)
|
|
|
|
return resp
|
|
|
|
|
|
|
|
|
2016-03-30 00:53:31 +00:00
|
|
|
def qwant(query, lang):
|
2016-03-02 11:54:06 +00:00
|
|
|
# qwant autocompleter (additional parameter : lang=en_en&count=xxx )
|
|
|
|
url = 'https://api.qwant.com/api/suggest?{query}'
|
|
|
|
|
2016-03-30 00:53:31 +00:00
|
|
|
resp = get(url.format(query=urlencode({'q': query, 'lang': lang})))
|
2016-03-02 11:54:06 +00:00
|
|
|
|
|
|
|
results = []
|
|
|
|
|
|
|
|
if resp.ok:
|
|
|
|
data = loads(resp.text)
|
|
|
|
if data['status'] == 'success':
|
|
|
|
for item in data['data']['items']:
|
|
|
|
results.append(item['value'])
|
|
|
|
|
|
|
|
return results
|
|
|
|
|
|
|
|
|
2016-03-30 00:53:31 +00:00
|
|
|
def wikipedia(query, lang):
|
2014-03-29 15:30:49 +00:00
|
|
|
# wikipedia autocompleter
|
2016-03-30 00:53:31 +00:00
|
|
|
url = 'https://' + lang + '.wikipedia.org/w/api.php?action=opensearch&{0}&limit=10&namespace=0&format=json'
|
2014-03-29 15:30:49 +00:00
|
|
|
|
2014-11-04 18:53:42 +00:00
|
|
|
resp = loads(get(url.format(urlencode(dict(search=query)))).text)
|
2014-03-29 16:15:59 +00:00
|
|
|
if len(resp) > 1:
|
|
|
|
return resp[1]
|
|
|
|
return []
|
2014-03-29 15:30:49 +00:00
|
|
|
|
|
|
|
|
2021-12-27 08:26:22 +00:00
|
|
|
backends = {
|
|
|
|
'dbpedia': dbpedia,
|
|
|
|
'duckduckgo': duckduckgo,
|
|
|
|
'google': google,
|
2022-04-14 01:02:05 +00:00
|
|
|
'seznam': seznam,
|
2021-12-27 08:26:22 +00:00
|
|
|
'startpage': startpage,
|
|
|
|
'swisscows': swisscows,
|
|
|
|
'qwant': qwant,
|
|
|
|
'wikipedia': wikipedia,
|
2022-01-02 22:05:49 +00:00
|
|
|
'brave': brave,
|
2021-12-27 08:26:22 +00:00
|
|
|
}
|
2021-02-22 17:13:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
def search_autocomplete(backend_name, query, lang):
|
|
|
|
backend = backends.get(backend_name)
|
|
|
|
if backend is None:
|
|
|
|
return []
|
|
|
|
|
|
|
|
try:
|
|
|
|
return backend(query, lang)
|
2021-03-18 18:59:01 +00:00
|
|
|
except (HTTPError, SearxEngineResponseException):
|
2021-02-22 17:13:50 +00:00
|
|
|
return []
|