.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
autocomplete.py
Go to the documentation of this file.
1# SPDX-License-Identifier: AGPL-3.0-or-later
2"""This module implements functions needed for the autocompleter.
3
4"""
5# pylint: disable=use-dict-literal
6
7import json
8import html
9from urllib.parse import urlencode, quote_plus
10
11import lxml.etree
12import lxml.html
13from httpx import HTTPError
14
15from searx.extended_types import SXNG_Response
16from searx import settings
17from searx.engines import (
18 engines,
19 google,
20)
21from searx.network import get as http_get, post as http_post
22from searx.exceptions import SearxEngineResponseException
23from searx.utils import extr
24
25
26def update_kwargs(**kwargs):
27 if 'timeout' not in kwargs:
28 kwargs['timeout'] = settings['outgoing']['request_timeout']
29 kwargs['raise_for_httperror'] = True
30
31
32def get(*args, **kwargs) -> SXNG_Response:
33 update_kwargs(**kwargs)
34 return http_get(*args, **kwargs)
35
36
37def post(*args, **kwargs) -> SXNG_Response:
38 update_kwargs(**kwargs)
39 return http_post(*args, **kwargs)
40
41
42def baidu(query, _lang):
43 # baidu search autocompleter
44 base_url = "https://www.baidu.com/sugrec?"
45 response = get(base_url + urlencode({'ie': 'utf-8', 'json': 1, 'prod': 'pc', 'wd': query}))
46
47 results = []
48
49 if response.ok:
50 data = response.json()
51 if 'g' in data:
52 for item in data['g']:
53 results.append(item['q'])
54 return results
55
56
57def brave(query, _lang):
58 # brave search autocompleter
59 url = 'https://search.brave.com/api/suggest?'
60 url += urlencode({'q': query})
61 country = 'all'
62 # if lang in _brave:
63 # country = lang
64 kwargs = {'cookies': {'country': country}}
65 resp = get(url, **kwargs)
66
67 results = []
68
69 if resp.ok:
70 data = resp.json()
71 for item in data[1]:
72 results.append(item)
73 return results
74
75
76def dbpedia(query, _lang):
77 # dbpedia autocompleter, no HTTPS
78 autocomplete_url = 'https://lookup.dbpedia.org/api/search.asmx/KeywordSearch?'
79
80 response = get(autocomplete_url + urlencode(dict(QueryString=query)))
81
82 results = []
83
84 if response.ok:
85 dom = lxml.etree.fromstring(response.content)
86 results = dom.xpath('//Result/Label//text()')
87
88 return results
89
90
91def duckduckgo(query, sxng_locale):
92 """Autocomplete from DuckDuckGo. Supports DuckDuckGo's languages"""
93
94 traits = engines['duckduckgo'].traits
95 args = {
96 'q': query,
97 'kl': traits.get_region(sxng_locale, traits.all_locale),
98 }
99
100 url = 'https://duckduckgo.com/ac/?type=list&' + urlencode(args)
101 resp = get(url)
102
103 ret_val = []
104 if resp.ok:
105 j = resp.json()
106 if len(j) > 1:
107 ret_val = j[1]
108 return ret_val
109
110
111def google_complete(query, sxng_locale):
112 """Autocomplete from Google. Supports Google's languages and subdomains
113 (:py:obj:`searx.engines.google.get_google_info`) by using the async REST
114 API::
115
116 https://{subdomain}/complete/search?{args}
117
118 """
119
120 google_info = google.get_google_info({'searxng_locale': sxng_locale}, engines['google'].traits)
121
122 url = 'https://{subdomain}/complete/search?{args}'
123 args = urlencode(
124 {
125 'q': query,
126 'client': 'gws-wiz',
127 'hl': google_info['params']['hl'],
128 }
129 )
130 results = []
131 resp = get(url.format(subdomain=google_info['subdomain'], args=args))
132 if resp and resp.ok:
133 json_txt = resp.text[resp.text.find('[') : resp.text.find(']', -3) + 1]
134 data = json.loads(json_txt)
135 for item in data[0]:
136 results.append(lxml.html.fromstring(item[0]).text_content())
137 return results
138
139
140def mwmbl(query, _lang):
141 """Autocomplete from Mwmbl_."""
142
143 # mwmbl autocompleter
144 url = 'https://api.mwmbl.org/search/complete?{query}'
145
146 results = get(url.format(query=urlencode({'q': query}))).json()[1]
147
148 # results starting with `go:` are direct urls and not useful for auto completion
149 return [result for result in results if not result.startswith("go: ") and not result.startswith("search: ")]
150
151
152def qihu360search(query, _lang):
153 # 360Search search autocompleter
154 url = f"https://sug.so.360.cn/suggest?{urlencode({'format': 'json', 'word': query})}"
155 response = get(url)
156
157 results = []
158
159 if response.ok:
160 data = response.json()
161 if 'result' in data:
162 for item in data['result']:
163 results.append(item['word'])
164 return results
165
166
167def quark(query, _lang):
168 # Quark search autocompleter
169 url = f"https://sugs.m.sm.cn/web?{urlencode({'q': query})}"
170 response = get(url)
171
172 results = []
173
174 if response.ok:
175 data = response.json()
176 for item in data.get('r', []):
177 results.append(item['w'])
178 return results
179
180
181def seznam(query, _lang):
182 # seznam search autocompleter
183 url = 'https://suggest.seznam.cz/fulltext/cs?{query}'
184
185 resp = get(
186 url.format(
187 query=urlencode(
188 {'phrase': query, 'cursorPosition': len(query), 'format': 'json-2', 'highlight': '1', 'count': '6'}
189 )
190 )
191 )
192
193 if not resp.ok:
194 return []
195
196 data = resp.json()
197 return [
198 ''.join([part.get('text', '') for part in item.get('text', [])])
199 for item in data.get('result', [])
200 if item.get('itemType', None) == 'ItemType.TEXT'
201 ]
202
203
204def sogou(query, _lang):
205 # Sogou search autocompleter
206 base_url = "https://sor.html5.qq.com/api/getsug?"
207 response = get(base_url + urlencode({'m': 'searxng', 'key': query}))
208
209 if response.ok:
210 raw_json = extr(response.text, "[", "]", default="")
211
212 try:
213 data = json.loads(f"[{raw_json}]]")
214 return data[1]
215 except json.JSONDecodeError:
216 return []
217
218 return []
219
220
221def stract(query, _lang):
222 # stract autocompleter (beta)
223 url = f"https://stract.com/beta/api/autosuggest?q={quote_plus(query)}"
224
225 resp = post(url)
226
227 if not resp.ok:
228 return []
229
230 return [html.unescape(suggestion['raw']) for suggestion in resp.json()]
231
232
233def swisscows(query, _lang):
234 # swisscows autocompleter
235 url = 'https://swisscows.ch/api/suggest?{query}&itemsCount=5'
236
237 resp = json.loads(get(url.format(query=urlencode({'query': query}))).text)
238 return resp
239
240
241def qwant(query, sxng_locale):
242 """Autocomplete from Qwant. Supports Qwant's regions."""
243 results = []
244
245 locale = engines['qwant'].traits.get_region(sxng_locale, 'en_US')
246 url = 'https://api.qwant.com/v3/suggest?{query}'
247 resp = get(url.format(query=urlencode({'q': query, 'locale': locale, 'version': '2'})))
248
249 if resp.ok:
250 data = resp.json()
251 if data['status'] == 'success':
252 for item in data['data']['items']:
253 results.append(item['value'])
254
255 return results
256
257
258def wikipedia(query, sxng_locale):
259 """Autocomplete from Wikipedia. Supports Wikipedia's languages (aka netloc)."""
260 results = []
261 eng_traits = engines['wikipedia'].traits
262 wiki_lang = eng_traits.get_language(sxng_locale, 'en')
263 wiki_netloc = eng_traits.custom['wiki_netloc'].get(wiki_lang, 'en.wikipedia.org') # type: ignore
264
265 url = 'https://{wiki_netloc}/w/api.php?{args}'
266 args = urlencode(
267 {
268 'action': 'opensearch',
269 'format': 'json',
270 'formatversion': '2',
271 'search': query,
272 'namespace': '0',
273 'limit': '10',
274 }
275 )
276 resp = get(url.format(args=args, wiki_netloc=wiki_netloc))
277 if resp.ok:
278 data = resp.json()
279 if len(data) > 1:
280 results = data[1]
281
282 return results
283
284
285def yandex(query, _lang):
286 # yandex autocompleter
287 url = "https://suggest.yandex.com/suggest-ff.cgi?{0}"
288
289 resp = json.loads(get(url.format(urlencode(dict(part=query)))).text)
290 if len(resp) > 1:
291 return resp[1]
292 return []
293
294
295backends = {
296 '360search': qihu360search,
297 'baidu': baidu,
298 'brave': brave,
299 'dbpedia': dbpedia,
300 'duckduckgo': duckduckgo,
301 'google': google_complete,
302 'mwmbl': mwmbl,
303 'quark': quark,
304 'qwant': qwant,
305 'seznam': seznam,
306 'sogou': sogou,
307 'stract': stract,
308 'swisscows': swisscows,
309 'wikipedia': wikipedia,
310 'yandex': yandex,
311}
312
313
314def search_autocomplete(backend_name, query, sxng_locale):
315 backend = backends.get(backend_name)
316 if backend is None:
317 return []
318 try:
319 return backend(query, sxng_locale)
320 except (HTTPError, SearxEngineResponseException):
321 return []
search_autocomplete(backend_name, query, sxng_locale)
qwant(query, sxng_locale)
seznam(query, _lang)
sogou(query, _lang)
yandex(query, _lang)
wikipedia(query, sxng_locale)
quark(query, _lang)
google_complete(query, sxng_locale)
dbpedia(query, _lang)
stract(query, _lang)
SXNG_Response get(*args, **kwargs)
brave(query, _lang)
qihu360search(query, _lang)
update_kwargs(**kwargs)
swisscows(query, _lang)
duckduckgo(query, sxng_locale)
mwmbl(query, _lang)
baidu(query, _lang)
SXNG_Response post(*args, **kwargs)
::1337x
Definition 1337x.py:1