2021-01-13 10:31:25 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
2024-03-11 06:45:08 +00:00
|
|
|
"""The JSON engine is a *generic* engine with which it is possible to configure
|
|
|
|
engines in the settings.
|
|
|
|
|
2025-01-11 00:51:33 +00:00
|
|
|
Configuration
|
|
|
|
=============
|
2024-03-11 06:45:08 +00:00
|
|
|
|
2025-01-11 00:51:33 +00:00
|
|
|
Request:
|
2024-03-11 06:45:08 +00:00
|
|
|
|
2025-01-11 00:51:33 +00:00
|
|
|
- :py:obj:`search_url`
|
|
|
|
- :py:obj:`method`
|
|
|
|
- :py:obj:`request_body`
|
|
|
|
- :py:obj:`cookies`
|
|
|
|
- :py:obj:`headers`
|
|
|
|
|
|
|
|
Paging:
|
|
|
|
|
|
|
|
- :py:obj:`paging`
|
|
|
|
- :py:obj:`page_size`
|
|
|
|
- :py:obj:`first_page_num`
|
|
|
|
|
|
|
|
Response:
|
|
|
|
|
|
|
|
- :py:obj:`title_html_to_text`
|
|
|
|
- :py:obj:`content_html_to_text`
|
|
|
|
|
|
|
|
JSON query:
|
|
|
|
|
|
|
|
- :py:obj:`results_query`
|
|
|
|
- :py:obj:`url_query`
|
|
|
|
- :py:obj:`url_prefix`
|
|
|
|
- :py:obj:`title_query`
|
|
|
|
- :py:obj:`content_query`
|
|
|
|
- :py:obj:`suggestion_query`
|
|
|
|
|
|
|
|
|
|
|
|
Example
|
|
|
|
=======
|
|
|
|
|
|
|
|
Here is a simple example of a JSON engine configure in the :ref:`settings
|
|
|
|
engine` section, further read :ref:`engines-dev`.
|
|
|
|
|
|
|
|
.. code:: yaml
|
|
|
|
|
|
|
|
- name : mdn
|
|
|
|
engine : json_engine
|
|
|
|
paging : True
|
|
|
|
search_url : https://developer.mozilla.org/api/v1/search?q={query}&page={pageno}
|
|
|
|
results_query : documents
|
|
|
|
url_query : mdn_url
|
|
|
|
url_prefix : https://developer.mozilla.org
|
|
|
|
title_query : title
|
|
|
|
content_query : summary
|
|
|
|
|
|
|
|
Implementations
|
|
|
|
===============
|
2024-03-11 06:45:08 +00:00
|
|
|
|
|
|
|
"""
|
2021-01-13 10:31:25 +00:00
|
|
|
|
2020-10-05 10:52:08 +00:00
|
|
|
from collections.abc import Iterable
|
2016-11-30 17:43:03 +00:00
|
|
|
from json import loads
|
2020-08-06 15:42:46 +00:00
|
|
|
from urllib.parse import urlencode
|
2021-02-10 15:40:03 +00:00
|
|
|
from searx.utils import to_string, html_to_text
|
2016-11-30 17:43:03 +00:00
|
|
|
|
2014-01-20 01:31:20 +00:00
|
|
|
search_url = None
|
2025-01-11 00:51:33 +00:00
|
|
|
"""
|
|
|
|
Search URL of the engine. Example::
|
|
|
|
|
|
|
|
https://example.org/?search={query}&page={pageno}
|
|
|
|
|
|
|
|
Replacements are:
|
|
|
|
|
|
|
|
``{query}``:
|
|
|
|
Search terms from user.
|
|
|
|
|
|
|
|
``{pageno}``:
|
|
|
|
Page number if engine supports paging :py:obj:`paging`
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2024-11-27 13:13:23 +00:00
|
|
|
method = 'GET'
|
2025-01-11 00:51:33 +00:00
|
|
|
'''Some engines might require to do POST requests for search.'''
|
|
|
|
|
2024-11-27 13:13:23 +00:00
|
|
|
request_body = ''
|
2025-01-11 00:51:33 +00:00
|
|
|
'''The body of the request. This can only be used if different :py:obj:`method`
|
|
|
|
is set, e.g. ``POST``. For formatting see the documentation of :py:obj:`search_url`.
|
|
|
|
|
|
|
|
Note: Curly brackets which aren't encapsulating a replacement placeholder
|
|
|
|
must be escaped by doubling each ``{`` and ``}``.
|
|
|
|
|
|
|
|
.. code:: yaml
|
|
|
|
|
|
|
|
request_body: >-
|
|
|
|
{{
|
|
|
|
"search": "{query}",
|
|
|
|
"page": {pageno},
|
|
|
|
"extra": {{
|
|
|
|
"time_range": {time_range},
|
|
|
|
"rating": "{safe_search}"
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
'''
|
2013-11-19 14:49:52 +00:00
|
|
|
|
2022-06-10 21:26:55 +00:00
|
|
|
cookies = {}
|
2025-01-11 00:51:33 +00:00
|
|
|
'''Some engines might offer different result based on cookies.
|
|
|
|
Possible use-case: To set safesearch cookie.'''
|
|
|
|
|
2022-06-10 21:26:55 +00:00
|
|
|
headers = {}
|
|
|
|
'''Some engines might offer different result based on cookies or headers.
|
|
|
|
Possible use-case: To set safesearch cookie or header to moderate.'''
|
|
|
|
|
2024-11-27 13:13:23 +00:00
|
|
|
paging = False
|
2025-01-11 00:51:33 +00:00
|
|
|
'''Engine supports paging [True or False].'''
|
|
|
|
|
2016-07-16 09:26:29 +00:00
|
|
|
page_size = 1
|
2025-01-11 00:51:33 +00:00
|
|
|
'''Number of results on each page. Only needed if the site requires not a page
|
|
|
|
number, but an offset.'''
|
|
|
|
|
2016-07-16 09:26:29 +00:00
|
|
|
first_page_num = 1
|
2025-01-11 00:51:33 +00:00
|
|
|
'''Number of the first page (usually 0 or 1).'''
|
2016-07-16 09:26:29 +00:00
|
|
|
|
2024-11-27 13:13:23 +00:00
|
|
|
results_query = ''
|
2025-01-11 00:51:33 +00:00
|
|
|
'''JSON query for the list of result items.
|
|
|
|
|
|
|
|
The query string is a slash `/` separated path of JSON key names.
|
|
|
|
Array entries can be specified using the index or can be omitted entirely,
|
|
|
|
in which case each entry is considered -
|
|
|
|
most implementations will default to the first entry in this case.
|
|
|
|
'''
|
|
|
|
|
2024-11-27 13:13:23 +00:00
|
|
|
url_query = None
|
2025-01-11 00:51:33 +00:00
|
|
|
'''JSON query of result's ``url``. For the query string documentation see :py:obj:`results_query`'''
|
|
|
|
|
2024-11-27 13:13:23 +00:00
|
|
|
url_prefix = ""
|
2025-01-11 00:51:33 +00:00
|
|
|
'''String to prepend to the result's ``url``.'''
|
|
|
|
|
2024-11-27 13:13:23 +00:00
|
|
|
title_query = None
|
2025-01-11 00:51:33 +00:00
|
|
|
'''JSON query of result's ``title``. For the query string documentation see :py:obj:`results_query`'''
|
|
|
|
|
2024-11-27 13:13:23 +00:00
|
|
|
content_query = None
|
2025-01-11 00:51:33 +00:00
|
|
|
'''JSON query of result's ``content``. For the query string documentation see :py:obj:`results_query`'''
|
|
|
|
|
2024-11-27 13:13:23 +00:00
|
|
|
suggestion_query = ''
|
2025-01-11 00:51:33 +00:00
|
|
|
'''JSON query of result's ``suggestion``. For the query string documentation see :py:obj:`results_query`'''
|
|
|
|
|
2024-11-27 13:13:23 +00:00
|
|
|
title_html_to_text = False
|
2025-01-11 00:51:33 +00:00
|
|
|
'''Extract text from a HTML title string'''
|
|
|
|
|
2024-11-27 13:13:23 +00:00
|
|
|
content_html_to_text = False
|
2025-01-11 00:51:33 +00:00
|
|
|
'''Extract text from a HTML content string'''
|
2024-11-27 13:13:23 +00:00
|
|
|
|
2014-01-20 01:31:20 +00:00
|
|
|
|
2013-11-19 14:49:52 +00:00
|
|
|
def iterate(iterable):
|
2024-03-11 06:45:08 +00:00
|
|
|
if isinstance(iterable, dict):
|
|
|
|
items = iterable.items()
|
2013-11-19 14:49:52 +00:00
|
|
|
|
|
|
|
else:
|
2024-03-11 06:45:08 +00:00
|
|
|
items = enumerate(iterable)
|
|
|
|
for index, value in items:
|
2013-11-19 14:49:52 +00:00
|
|
|
yield str(index), value
|
|
|
|
|
2014-01-20 01:31:20 +00:00
|
|
|
|
2013-11-19 14:49:52 +00:00
|
|
|
def is_iterable(obj):
|
2024-03-11 06:45:08 +00:00
|
|
|
if isinstance(obj, str):
|
2014-01-20 01:31:20 +00:00
|
|
|
return False
|
2013-11-19 14:49:52 +00:00
|
|
|
return isinstance(obj, Iterable)
|
|
|
|
|
2014-01-20 01:31:20 +00:00
|
|
|
|
2024-03-11 06:45:08 +00:00
|
|
|
def parse(query): # pylint: disable=redefined-outer-name
|
|
|
|
q = [] # pylint: disable=invalid-name
|
2013-11-19 14:49:52 +00:00
|
|
|
for part in query.split('/'):
|
|
|
|
if part == '':
|
|
|
|
continue
|
2024-03-11 06:45:08 +00:00
|
|
|
q.append(part)
|
2013-11-19 14:49:52 +00:00
|
|
|
return q
|
|
|
|
|
2014-01-20 01:31:20 +00:00
|
|
|
|
2024-03-11 06:45:08 +00:00
|
|
|
def do_query(data, q): # pylint: disable=invalid-name
|
2013-11-19 14:49:52 +00:00
|
|
|
ret = []
|
2014-02-11 12:13:51 +00:00
|
|
|
if not q:
|
2013-11-19 14:49:52 +00:00
|
|
|
return ret
|
|
|
|
|
|
|
|
qkey = q[0]
|
|
|
|
|
2014-01-20 01:31:20 +00:00
|
|
|
for key, value in iterate(data):
|
2013-11-19 14:49:52 +00:00
|
|
|
|
|
|
|
if len(q) == 1:
|
|
|
|
if key == qkey:
|
|
|
|
ret.append(value)
|
|
|
|
elif is_iterable(value):
|
|
|
|
ret.extend(do_query(value, q))
|
|
|
|
else:
|
|
|
|
if not is_iterable(value):
|
|
|
|
continue
|
|
|
|
if key == qkey:
|
|
|
|
ret.extend(do_query(value, q[1:]))
|
|
|
|
else:
|
|
|
|
ret.extend(do_query(value, q))
|
|
|
|
return ret
|
|
|
|
|
2014-01-20 01:31:20 +00:00
|
|
|
|
2013-11-19 14:49:52 +00:00
|
|
|
def query(data, query_string):
|
|
|
|
q = parse(query_string)
|
|
|
|
|
|
|
|
return do_query(data, q)
|
|
|
|
|
2014-01-20 01:31:20 +00:00
|
|
|
|
2024-03-11 06:45:08 +00:00
|
|
|
def request(query, params): # pylint: disable=redefined-outer-name
|
2025-01-11 00:51:33 +00:00
|
|
|
'''Build request parameters (see :ref:`engine request`).'''
|
2024-11-27 13:13:23 +00:00
|
|
|
fp = {'query': urlencode({'q': query})[2:]} # pylint: disable=invalid-name
|
2016-07-16 09:26:29 +00:00
|
|
|
|
|
|
|
if paging and search_url.find('{pageno}') >= 0:
|
2016-08-14 11:46:54 +00:00
|
|
|
fp['pageno'] = (params['pageno'] - 1) * page_size + first_page_num
|
2016-07-16 09:26:29 +00:00
|
|
|
|
2022-06-10 21:26:55 +00:00
|
|
|
params['cookies'].update(cookies)
|
|
|
|
params['headers'].update(headers)
|
|
|
|
|
2016-07-16 09:26:29 +00:00
|
|
|
params['url'] = search_url.format(**fp)
|
2024-11-27 13:13:23 +00:00
|
|
|
params['method'] = method
|
|
|
|
|
|
|
|
if request_body:
|
|
|
|
# don't url-encode the query if it's in the request body
|
|
|
|
fp['query'] = query
|
|
|
|
params['data'] = request_body.format(**fp)
|
2016-07-16 09:26:29 +00:00
|
|
|
|
2013-11-19 14:49:52 +00:00
|
|
|
return params
|
|
|
|
|
|
|
|
|
2021-02-10 15:40:03 +00:00
|
|
|
def identity(arg):
|
|
|
|
return arg
|
|
|
|
|
|
|
|
|
2013-11-19 14:49:52 +00:00
|
|
|
def response(resp):
|
2025-01-11 00:51:33 +00:00
|
|
|
'''Scrap *results* from the response (see :ref:`engine results`).'''
|
2013-11-19 14:49:52 +00:00
|
|
|
results = []
|
2025-01-11 00:51:33 +00:00
|
|
|
|
|
|
|
if not resp.text:
|
|
|
|
return results
|
|
|
|
|
2013-11-19 14:49:52 +00:00
|
|
|
json = loads(resp.text)
|
2021-02-10 15:40:03 +00:00
|
|
|
|
|
|
|
title_filter = html_to_text if title_html_to_text else identity
|
|
|
|
content_filter = html_to_text if content_html_to_text else identity
|
|
|
|
|
2016-08-12 10:15:27 +00:00
|
|
|
if results_query:
|
2024-03-11 06:45:08 +00:00
|
|
|
rs = query(json, results_query) # pylint: disable=invalid-name
|
|
|
|
if not rs:
|
2017-11-01 23:43:29 +00:00
|
|
|
return results
|
|
|
|
for result in rs[0]:
|
2017-11-02 00:08:15 +00:00
|
|
|
try:
|
|
|
|
url = query(result, url_query)[0]
|
|
|
|
title = query(result, title_query)[0]
|
2024-03-11 06:45:08 +00:00
|
|
|
except: # pylint: disable=bare-except
|
2017-11-02 00:08:15 +00:00
|
|
|
continue
|
2017-11-01 23:43:29 +00:00
|
|
|
try:
|
|
|
|
content = query(result, content_query)[0]
|
2024-03-11 06:45:08 +00:00
|
|
|
except: # pylint: disable=bare-except
|
2017-11-01 23:43:29 +00:00
|
|
|
content = ""
|
2021-12-27 08:26:22 +00:00
|
|
|
results.append(
|
|
|
|
{
|
2023-10-20 09:26:28 +00:00
|
|
|
'url': url_prefix + to_string(url),
|
2021-12-27 08:26:22 +00:00
|
|
|
'title': title_filter(to_string(title)),
|
|
|
|
'content': content_filter(to_string(content)),
|
|
|
|
}
|
|
|
|
)
|
2016-08-12 10:15:27 +00:00
|
|
|
else:
|
2024-09-12 08:10:20 +00:00
|
|
|
for result in json:
|
|
|
|
url = query(result, url_query)[0]
|
|
|
|
title = query(result, title_query)[0]
|
|
|
|
content = query(result, content_query)[0]
|
|
|
|
|
2021-12-27 08:26:22 +00:00
|
|
|
results.append(
|
|
|
|
{
|
2023-10-20 09:26:28 +00:00
|
|
|
'url': url_prefix + to_string(url),
|
2021-12-27 08:26:22 +00:00
|
|
|
'title': title_filter(to_string(title)),
|
|
|
|
'content': content_filter(to_string(content)),
|
|
|
|
}
|
|
|
|
)
|
2016-08-12 10:15:27 +00:00
|
|
|
|
|
|
|
if not suggestion_query:
|
|
|
|
return results
|
|
|
|
for suggestion in query(json, suggestion_query):
|
|
|
|
results.append({'suggestion': suggestion})
|
2013-11-19 14:49:52 +00:00
|
|
|
return results
|