.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
solr.py
Go to the documentation of this file.
1# SPDX-License-Identifier: AGPL-3.0-or-later
2""".. sidebar:: info
3
4 - :origin:`solr.py <searx/engines/solr.py>`
5 - `Solr <https://solr.apache.org>`_
6 - `Solr Resources <https://solr.apache.org/resources.html>`_
7 - `Install Solr <https://solr.apache.org/guide/installing-solr.html>`_
8
9Solr_ is a popular search engine based on Lucene, just like Elasticsearch_. But
10instead of searching in indices, you can search in collections.
11
12Example
13=======
14
15This is an example configuration for searching in the collection
16``my-collection`` and get the results in ascending order.
17
18.. code:: yaml
19
20 - name: solr
21 engine: solr
22 shortcut: slr
23 base_url: http://localhost:8983
24 collection: my-collection
25 sort: asc
26 enable_http: true
27
28"""
29
30# pylint: disable=global-statement
31
32from urllib.parse import urlencode
33from searx.exceptions import SearxEngineAPIException
34from searx.result_types import EngineResults
35from searx.extended_types import SXNG_Response
36
37
38base_url = 'http://localhost:8983'
39collection = ''
40rows = 10
41sort = '' # sorting: asc or desc
42field_list = 'name' # list of field names to display on the UI
43default_fields = '' # default field to query
44query_fields = '' # query fields
45_search_url = ''
46paging = True
47
48
49def init(_):
50 if collection == '':
51 raise ValueError('collection cannot be empty')
52
53 global _search_url
54 _search_url = base_url + '/solr/' + collection + '/select?{params}'
55
56
57def request(query, params):
58 query_params = {'q': query, 'rows': rows}
59 if field_list != '':
60 query_params['fl'] = field_list
61 if query_fields != '':
62 query_params['qf'] = query_fields
63 if default_fields != '':
64 query_params['df'] = default_fields
65 if sort != '':
66 query_params['sort'] = sort
67
68 if 'pageno' in params:
69 query_params['start'] = rows * (params['pageno'] - 1)
70
71 params['url'] = _search_url.format(params=urlencode(query_params))
72
73 return params
74
75
76def response(resp: SXNG_Response) -> EngineResults:
77 try:
78 resp_json = resp.json()
79 except Exception as e:
80 raise SearxEngineAPIException("failed to parse response") from e
81
82 if "error" in resp_json:
83 raise SearxEngineAPIException(resp_json["error"]["msg"])
84
85 res = EngineResults()
86
87 for result in resp_json["response"]["docs"]:
88 kvmap = {key: str(value) for key, value in result.items()}
89 if not kvmap:
90 continue
91 res.add(res.types.KeyValue(kvmap=kvmap))
92
93 return res
request(query, params)
Definition solr.py:57
EngineResults response(SXNG_Response resp)
Definition solr.py:76