.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
mariadb_server.py
Go to the documentation of this file.
1# SPDX-License-Identifier: AGPL-3.0-or-later
2"""MariaDB is a community driven fork of MySQL. Before enabling MariaDB engine,
3you must the install the pip package ``mariadb`` along with the necessary
4prerequities.
5
6`See the following documentation for more details
7<https://mariadb.com/docs/server/connect/programming-languages/c/install/>`_
8
9Example
10=======
11
12This is an example configuration for querying a MariaDB server:
13
14.. code:: yaml
15
16 - name: my_database
17 engine: mariadb_server
18 database: my_database
19 username: searxng
20 password: password
21 limit: 5
22 query_str: 'SELECT * from my_table WHERE my_column=%(query)s'
23
24Implementations
25===============
26
27"""
28
29from typing import TYPE_CHECKING
30
31try:
32 import mariadb # pyright: ignore [reportMissingImports]
33except ImportError:
34 # import error is ignored because the admin has to install mysql manually to use
35 # the engine
36 pass
37
38from searx.result_types import EngineResults
39
40if TYPE_CHECKING:
41 import logging
42
43 logger = logging.getLogger()
44
45
46engine_type = 'offline'
47
48host = "127.0.0.1"
49"""Hostname of the DB connector"""
50
51port = 3306
52"""Port of the DB connector"""
53
54database = ""
55"""Name of the database."""
56
57username = ""
58"""Username for the DB connection."""
59
60password = ""
61"""Password for the DB connection."""
62
63query_str = ""
64"""SQL query that returns the result items."""
65
66limit = 10
67paging = True
68_connection = None
69
70
71def init(engine_settings):
72 global _connection # pylint: disable=global-statement
73
74 if 'query_str' not in engine_settings:
75 raise ValueError('query_str cannot be empty')
76
77 if not engine_settings['query_str'].lower().startswith('select '):
78 raise ValueError('only SELECT query is supported')
79
80 _connection = mariadb.connect(database=database, user=username, password=password, host=host, port=port)
81
82
83def search(query, params) -> EngineResults:
84 query_params = {'query': query}
85 query_to_run = query_str + ' LIMIT {0} OFFSET {1}'.format(limit, (params['pageno'] - 1) * limit)
86 logger.debug("SQL Query: %s", query_to_run)
87 res = EngineResults()
88
89 with _connection.cursor() as cur:
90 cur.execute(query_to_run, query_params)
91 col_names = [i[0] for i in cur.description]
92 for row in cur:
93 kvmap = dict(zip(col_names, map(str, row)))
94 res.add(res.types.KeyValue(kvmap=kvmap))
95 return res