.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
searx.engines.elasticsearch Namespace Reference

Functions

 init (engine_settings)
 
 request (query, params)
 
 _match_query (query)
 
 _simple_query_string_query (query)
 
 _term_query (query)
 
 _terms_query (query)
 
 _custom_query (query)
 
EngineResults response (SXNG_Response resp)
 

Variables

list categories = ['general']
 
bool paging = True
 
dict about
 
str base_url = 'http://localhost:9200'
 
str username = ''
 
str password = ''
 
str index = ''
 
str query_type = 'match'
 
dict custom_query_json = {}
 
bool show_metadata = False
 
int page_size = 10
 
dict _available_query_types
 

Detailed Description

.. sidebar:: info

   - :origin:`elasticsearch.py <searx/engines/elasticsearch.py>`
   - `Elasticsearch <https://www.elastic.co/elasticsearch/>`_
   - `Elasticsearch Guide
     <https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html>`_
   - `Install Elasticsearch
     <https://www.elastic.co/guide/en/elasticsearch/reference/current/install-elasticsearch.html>`_

Elasticsearch_ supports numerous ways to query the data it is storing.  At the
moment the engine supports the most popular search methods (``query_type``):

- ``match``,
- ``simple_query_string``,
- ``term`` and
- ``terms``.

If none of the methods fit your use case, you can select ``custom`` query type
and provide the JSON payload to submit to Elasticsearch in
``custom_query_json``.

Example
=======

The following is an example configuration for an Elasticsearch_ instance with
authentication configured to read from ``my-index`` index.

.. code:: yaml

  - name: elasticsearch
    shortcut: els
    engine: elasticsearch
    base_url: http://localhost:9200
    username: elastic
    password: changeme
    index: my-index
    query_type: match
    # custom_query_json: '{ ... }'
    enable_http: true

Function Documentation

◆ _custom_query()

searx.engines.elasticsearch._custom_query ( query)
protected

Definition at line 156 of file elasticsearch.py.

156def _custom_query(query):
157 key, value = query.split(':')
158 custom_query = custom_query_json
159 for query_key, query_value in custom_query.items():
160 if query_key == '{{KEY}}':
161 custom_query[key] = custom_query.pop(query_key)
162 if query_value == '{{VALUE}}':
163 custom_query[query_key] = value
164 return custom_query
165
166

◆ _match_query()

searx.engines.elasticsearch._match_query ( query)
protected
The standard for full text queries.
searx format: "key:value" e.g. city:berlin
REF: https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-match-query.html

Definition at line 101 of file elasticsearch.py.

101def _match_query(query):
102 """
103 The standard for full text queries.
104 searx format: "key:value" e.g. city:berlin
105 REF: https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-match-query.html
106 """
107
108 try:
109 key, value = query.split(':')
110 except Exception as e:
111 raise ValueError('query format must be "key:value"') from e
112
113 return {"query": {"match": {key: {'query': value}}}}
114
115

◆ _simple_query_string_query()

searx.engines.elasticsearch._simple_query_string_query ( query)
protected
Accepts query strings, but it is less strict than query_string
The field used can be specified in index.query.default_field in Elasticsearch.
REF: https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-simple-query-string-query.html

Definition at line 116 of file elasticsearch.py.

116def _simple_query_string_query(query):
117 """
118 Accepts query strings, but it is less strict than query_string
119 The field used can be specified in index.query.default_field in Elasticsearch.
120 REF: https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-simple-query-string-query.html
121 """
122
123 return {'query': {'simple_query_string': {'query': query}}}
124
125

◆ _term_query()

searx.engines.elasticsearch._term_query ( query)
protected
Accepts one term and the name of the field.
searx format: "key:value" e.g. city:berlin
REF: https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-term-query.html

Definition at line 126 of file elasticsearch.py.

126def _term_query(query):
127 """
128 Accepts one term and the name of the field.
129 searx format: "key:value" e.g. city:berlin
130 REF: https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-term-query.html
131 """
132
133 try:
134 key, value = query.split(':')
135 except Exception as e:
136 raise ValueError('query format must be key:value') from e
137
138 return {'query': {'term': {key: value}}}
139
140

◆ _terms_query()

searx.engines.elasticsearch._terms_query ( query)
protected
Accepts multiple terms and the name of the field.
searx format: "key:value1,value2" e.g. city:berlin,paris
REF: https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-terms-query.html

Definition at line 141 of file elasticsearch.py.

141def _terms_query(query):
142 """
143 Accepts multiple terms and the name of the field.
144 searx format: "key:value1,value2" e.g. city:berlin,paris
145 REF: https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-terms-query.html
146 """
147
148 try:
149 key, values = query.split(':')
150 except Exception as e:
151 raise ValueError('query format must be key:value1,value2') from e
152
153 return {'query': {'terms': {key: values.split(',')}}}
154
155

◆ init()

searx.engines.elasticsearch.init ( engine_settings)

Definition at line 71 of file elasticsearch.py.

71def init(engine_settings):
72 if 'query_type' in engine_settings and engine_settings['query_type'] not in _available_query_types:
73 raise ValueError('unsupported query type', engine_settings['query_type'])
74
75 if index == '':
76 raise ValueError('index cannot be empty')
77
78

◆ request()

searx.engines.elasticsearch.request ( query,
params )

Definition at line 79 of file elasticsearch.py.

79def request(query, params):
80 if query_type not in _available_query_types:
81 return params
82
83 if username and password:
84 params['auth'] = (username, password)
85
86 args = {
87 'from': (params['pageno'] - 1) * page_size,
88 'size': page_size,
89 }
90 data = _available_query_types[query_type](query)
91 data.update(args)
92
93 params['url'] = f"{base_url}/{index}/_search"
94 params['method'] = 'GET'
95 params['data'] = dumps(data)
96 params['headers']['Content-Type'] = 'application/json'
97
98 return params
99
100

◆ response()

EngineResults searx.engines.elasticsearch.response ( SXNG_Response resp)

Definition at line 167 of file elasticsearch.py.

167def response(resp: SXNG_Response) -> EngineResults:
168 res = EngineResults()
169
170 resp_json = loads(resp.text)
171 if 'error' in resp_json:
172 raise SearxEngineAPIException(resp_json["error"])
173
174 for result in resp_json["hits"]["hits"]:
175 kvmap = {key: str(value) if not key.startswith("_") else value for key, value in result["_source"].items()}
176 if show_metadata:
177 kvmap["metadata"] = {"index": result["_index"], "id": result["_id"], "score": result["_score"]}
178 res.add(res.types.KeyValue(kvmap=kvmap))
179
180 return res
181
182

Variable Documentation

◆ _available_query_types

dict searx.engines.elasticsearch._available_query_types
protected
Initial value:
1= {
2 # Full text queries
3 # https://www.elastic.co/guide/en/elasticsearch/reference/current/full-text-queries.html
4 'match': _match_query,
5 'simple_query_string': _simple_query_string_query,
6 # Term-level queries
7 # https://www.elastic.co/guide/en/elasticsearch/reference/current/term-level-queries.html
8 'term': _term_query,
9 'terms': _terms_query,
10 # Query JSON defined by the instance administrator.
11 'custom': _custom_query,
12}

Definition at line 183 of file elasticsearch.py.

◆ about

dict searx.engines.elasticsearch.about
Initial value:
1= {
2 'website': 'https://www.elastic.co',
3 'wikidata_id': 'Q3050461',
4 'official_api_documentation': 'https://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html',
5 'use_official_api': True,
6 'require_api_key': False,
7 'format': 'JSON',
8}

Definition at line 52 of file elasticsearch.py.

◆ base_url

str searx.engines.elasticsearch.base_url = 'http://localhost:9200'

Definition at line 61 of file elasticsearch.py.

◆ categories

list searx.engines.elasticsearch.categories = ['general']

Definition at line 49 of file elasticsearch.py.

◆ custom_query_json

dict searx.engines.elasticsearch.custom_query_json = {}

Definition at line 66 of file elasticsearch.py.

◆ index

str searx.engines.elasticsearch.index = ''

Definition at line 64 of file elasticsearch.py.

◆ page_size

int searx.engines.elasticsearch.page_size = 10

Definition at line 68 of file elasticsearch.py.

◆ paging

bool searx.engines.elasticsearch.paging = True

Definition at line 50 of file elasticsearch.py.

◆ password

str searx.engines.elasticsearch.password = ''

Definition at line 63 of file elasticsearch.py.

◆ query_type

str searx.engines.elasticsearch.query_type = 'match'

Definition at line 65 of file elasticsearch.py.

◆ show_metadata

bool searx.engines.elasticsearch.show_metadata = False

Definition at line 67 of file elasticsearch.py.

◆ username

str searx.engines.elasticsearch.username = ''

Definition at line 62 of file elasticsearch.py.