| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							|  |  |  | # lint: pylint | 
					
						
							| 
									
										
										
										
											2023-06-30 18:07:02 +02:00
										 |  |  | """Load and initialize the ``engines``, see :py:func:`load_engines` and register
 | 
					
						
							| 
									
										
										
										
											2021-06-01 13:34:41 +02:00
										 |  |  | :py:obj:`engine_shortcuts`. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | usage:: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     load_engines( settings['engines'] ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2013-10-17 00:32:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-29 20:54:46 +02:00
										 |  |  | from __future__ import annotations | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-05 20:24:31 +01:00
										 |  |  | import sys | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  | import copy | 
					
						
							| 
									
										
										
										
											2017-06-06 22:20:20 +02:00
										 |  |  | from os.path import realpath, dirname | 
					
						
							| 
									
										
										
										
											2022-09-29 20:54:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  | from typing import TYPE_CHECKING, Dict | 
					
						
							|  |  |  | import types | 
					
						
							|  |  |  | import inspect | 
					
						
							| 
									
										
										
										
											2022-09-29 20:54:46 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  | from searx import logger, settings | 
					
						
							| 
									
										
										
										
											2022-09-29 20:54:46 +02:00
										 |  |  | from searx.utils import load_module | 
					
						
							| 
									
										
										
										
											2015-01-09 04:13:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-29 20:54:46 +02:00
										 |  |  | if TYPE_CHECKING: | 
					
						
							|  |  |  |     from searx.enginelib import Engine | 
					
						
							| 
									
										
										
										
											2015-01-09 04:13:05 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | logger = logger.getChild('engines') | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  | ENGINE_DIR = dirname(realpath(__file__)) | 
					
						
							|  |  |  | ENGINE_DEFAULT_ARGS = { | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  |     # Common options in the engine module | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |     "engine_type": "online", | 
					
						
							|  |  |  |     "paging": False, | 
					
						
							|  |  |  |     "time_range_support": False, | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  |     "safesearch": False, | 
					
						
							|  |  |  |     # settings.yml | 
					
						
							|  |  |  |     "categories": ["general"], | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |     "enable_http": False, | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  |     "shortcut": "-", | 
					
						
							|  |  |  |     "timeout": settings["outgoing"]["request_timeout"], | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |     "display_error_messages": True, | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  |     "disabled": False, | 
					
						
							|  |  |  |     "inactive": False, | 
					
						
							|  |  |  |     "about": {}, | 
					
						
							|  |  |  |     "using_tor_proxy": False, | 
					
						
							| 
									
										
										
										
											2022-08-01 17:01:59 +02:00
										 |  |  |     "send_accept_language_header": False, | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |     "tokens": [], | 
					
						
							| 
									
										
										
										
											2023-11-13 19:12:50 +01:00
										 |  |  |     "max_page": 0, | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-12-28 16:12:54 +01:00
										 |  |  | # set automatically when an engine does not have any tab category | 
					
						
							| 
									
										
										
										
											2022-07-24 09:32:05 +02:00
										 |  |  | DEFAULT_CATEGORY = 'other' | 
					
						
							| 
									
										
										
										
											2021-12-28 16:12:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-04 15:28:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-04 11:53:42 +01:00
										 |  |  | # Defaults for the namespace of an engine module, see :py:func:`load_engine` | 
					
						
							| 
									
										
										
										
											2021-06-01 13:34:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  | categories = {'general': []} | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  | engines: Dict[str, Engine | types.ModuleType] = {} | 
					
						
							| 
									
										
										
										
											2014-01-31 15:45:18 +01:00
										 |  |  | engine_shortcuts = {} | 
					
						
							| 
									
										
										
										
											2021-06-01 13:34:41 +02:00
										 |  |  | """Simple map of registered *shortcuts* to name of the engine (or ``None``).
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | :: | 
					
						
							| 
									
										
										
										
											2014-01-31 15:45:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-01 13:34:41 +02:00
										 |  |  |     engine_shortcuts[engine.shortcut] = engine.name | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-18 12:44:12 +02:00
										 |  |  | :meta hide-value: | 
					
						
							| 
									
										
										
										
											2021-06-01 13:34:41 +02:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  | def check_engine_module(module: types.ModuleType): | 
					
						
							|  |  |  |     # probe unintentional name collisions / for example name collisions caused | 
					
						
							|  |  |  |     # by import statements in the engine module .. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # network: https://github.com/searxng/searxng/issues/762#issuecomment-1605323861 | 
					
						
							|  |  |  |     obj = getattr(module, 'network', None) | 
					
						
							|  |  |  |     if obj and inspect.ismodule(obj): | 
					
						
							|  |  |  |         msg = f'type of {module.__name__}.network is a module ({obj.__name__}), expected a string' | 
					
						
							|  |  |  |         # logger.error(msg) | 
					
						
							|  |  |  |         raise TypeError(msg) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def load_engine(engine_data: dict) -> Engine | types.ModuleType | None: | 
					
						
							| 
									
										
										
										
											2021-06-01 13:34:41 +02:00
										 |  |  |     """Load engine from ``engine_data``.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     :param dict engine_data:  Attributes from YAML ``settings:engines/<engine>`` | 
					
						
							|  |  |  |     :return: initialized namespace of the ``<engine>``. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     1. create a namespace and load module of the ``<engine>`` | 
					
						
							|  |  |  |     2. update namespace with the defaults from :py:obj:`ENGINE_DEFAULT_ARGS` | 
					
						
							|  |  |  |     3. update namespace with values from ``engine_data`` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     If engine *is active*, return namespace of the engine, otherwise return | 
					
						
							|  |  |  |     ``None``. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     This function also returns ``None`` if initialization of the namespace fails | 
					
						
							|  |  |  |     for one of the following reasons: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     - engine name contains underscore | 
					
						
							|  |  |  |     - engine name is not lowercase | 
					
						
							|  |  |  |     - required attribute is not set :py:func:`is_missing_required_attributes` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2022-12-04 23:43:59 +01:00
										 |  |  |     # pylint: disable=too-many-return-statements | 
					
						
							| 
									
										
										
										
											2021-06-01 13:34:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-04 23:43:59 +01:00
										 |  |  |     engine_name = engine_data.get('name') | 
					
						
							|  |  |  |     if engine_name is None: | 
					
						
							|  |  |  |         logger.error('An engine does not have a "name" field') | 
					
						
							|  |  |  |         return None | 
					
						
							| 
									
										
										
										
											2019-07-26 09:04:00 +02:00
										 |  |  |     if '_' in engine_name: | 
					
						
							|  |  |  |         logger.error('Engine name contains underscore: "{}"'.format(engine_name)) | 
					
						
							| 
									
										
										
										
											2021-06-01 13:34:41 +02:00
										 |  |  |         return None | 
					
						
							| 
									
										
										
										
											2016-09-28 22:30:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-26 09:04:00 +02:00
										 |  |  |     if engine_name.lower() != engine_name: | 
					
						
							| 
									
										
										
										
											2023-05-19 16:05:29 +02:00
										 |  |  |         logger.warning('Engine name is not lowercase: "{}", converting to lowercase'.format(engine_name)) | 
					
						
							| 
									
										
										
										
											2019-07-26 09:04:00 +02:00
										 |  |  |         engine_name = engine_name.lower() | 
					
						
							|  |  |  |         engine_data['name'] = engine_name | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |     # load_module | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  |     module_name = engine_data.get('engine') | 
					
						
							|  |  |  |     if module_name is None: | 
					
						
							| 
									
										
										
										
											2022-12-04 23:43:59 +01:00
										 |  |  |         logger.error('The "engine" field is missing for the engine named "{}"'.format(engine_name)) | 
					
						
							|  |  |  |         return None | 
					
						
							| 
									
										
										
										
											2020-08-31 18:59:27 +02:00
										 |  |  |     try: | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  |         engine = load_module(module_name + '.py', ENGINE_DIR) | 
					
						
							| 
									
										
										
										
											2020-11-16 09:37:13 +01:00
										 |  |  |     except (SyntaxError, KeyboardInterrupt, SystemExit, SystemError, ImportError, RuntimeError): | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  |         logger.exception('Fatal exception in engine "{}"'.format(module_name)) | 
					
						
							| 
									
										
										
										
											2020-09-07 15:39:26 +02:00
										 |  |  |         sys.exit(1) | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |     except BaseException: | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  |         logger.exception('Cannot load engine "{}"'.format(module_name)) | 
					
						
							| 
									
										
										
										
											2020-08-31 18:59:27 +02:00
										 |  |  |         return None | 
					
						
							| 
									
										
										
										
											2014-01-31 04:35:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  |     check_engine_module(engine) | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |     update_engine_attributes(engine, engine_data) | 
					
						
							|  |  |  |     update_attributes_for_tor(engine) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-29 20:54:46 +02:00
										 |  |  |     # avoid cyclic imports | 
					
						
							|  |  |  |     # pylint: disable=import-outside-toplevel | 
					
						
							|  |  |  |     from searx.enginelib.traits import EngineTraitsMap | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     trait_map = EngineTraitsMap.from_data() | 
					
						
							|  |  |  |     trait_map.set_traits(engine) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |     if not is_engine_active(engine): | 
					
						
							|  |  |  |         return None | 
					
						
							| 
									
										
										
										
											2021-06-01 13:34:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if is_missing_required_attributes(engine): | 
					
						
							|  |  |  |         return None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-09 17:21:48 +02:00
										 |  |  |     set_loggers(engine, engine_name) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-28 16:12:54 +01:00
										 |  |  |     if not any(cat in settings['categories_as_tabs'] for cat in engine.categories): | 
					
						
							| 
									
										
										
										
											2022-07-24 09:32:05 +02:00
										 |  |  |         engine.categories.append(DEFAULT_CATEGORY) | 
					
						
							| 
									
										
										
										
											2021-12-28 16:12:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |     return engine | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-09 17:21:48 +02:00
										 |  |  | def set_loggers(engine, engine_name): | 
					
						
							|  |  |  |     # set the logger for engine | 
					
						
							|  |  |  |     engine.logger = logger.getChild(engine_name) | 
					
						
							|  |  |  |     # the engine may have load some other engines | 
					
						
							|  |  |  |     # may sure the logger is initialized | 
					
						
							| 
									
										
										
										
											2022-06-18 07:38:36 +02:00
										 |  |  |     # use sys.modules.copy() to avoid "RuntimeError: dictionary changed size during iteration" | 
					
						
							|  |  |  |     # see https://github.com/python/cpython/issues/89516 | 
					
						
							|  |  |  |     # and https://docs.python.org/3.10/library/sys.html#sys.modules | 
					
						
							|  |  |  |     modules = sys.modules.copy() | 
					
						
							|  |  |  |     for module_name, module in modules.items(): | 
					
						
							| 
									
										
										
										
											2021-09-09 17:21:48 +02:00
										 |  |  |         if ( | 
					
						
							|  |  |  |             module_name.startswith("searx.engines") | 
					
						
							|  |  |  |             and module_name != "searx.engines.__init__" | 
					
						
							|  |  |  |             and not hasattr(module, "logger") | 
					
						
							|  |  |  |         ): | 
					
						
							|  |  |  |             module_engine_name = module_name.split(".")[-1] | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  |             module.logger = logger.getChild(module_engine_name)  # type: ignore | 
					
						
							| 
									
										
										
										
											2021-09-09 17:21:48 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  | def update_engine_attributes(engine: Engine | types.ModuleType, engine_data): | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |     # set engine attributes from engine_data | 
					
						
							| 
									
										
										
										
											2020-11-16 12:44:07 +01:00
										 |  |  |     for param_name, param_value in engine_data.items(): | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |         if param_name == 'categories': | 
					
						
							|  |  |  |             if isinstance(param_value, str): | 
					
						
							|  |  |  |                 param_value = list(map(str.strip, param_value.split(','))) | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  |             engine.categories = param_value  # type: ignore | 
					
						
							| 
									
										
										
										
											2021-12-22 09:13:23 +01:00
										 |  |  |         elif hasattr(engine, 'about') and param_name == 'about': | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  |             engine.about = {**engine.about, **engine_data['about']}  # type: ignore | 
					
						
							| 
									
										
										
										
											2021-10-06 18:02:29 +02:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2020-11-16 12:44:07 +01:00
										 |  |  |             setattr(engine, param_name, param_value) | 
					
						
							| 
									
										
										
										
											2014-01-31 15:45:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |     # set default attributes | 
					
						
							|  |  |  |     for arg_name, arg_value in ENGINE_DEFAULT_ARGS.items(): | 
					
						
							| 
									
										
										
										
											2016-02-19 15:13:01 +01:00
										 |  |  |         if not hasattr(engine, arg_name): | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |             setattr(engine, arg_name, copy.deepcopy(arg_value)) | 
					
						
							| 
									
										
										
										
											2015-01-31 23:11:45 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-31 15:45:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  | def update_attributes_for_tor(engine: Engine | types.ModuleType): | 
					
						
							| 
									
										
										
										
											2022-01-22 19:51:40 +01:00
										 |  |  |     if using_tor_proxy(engine) and hasattr(engine, 'onion_url'): | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  |         engine.search_url = engine.onion_url + getattr(engine, 'search_path', '')  # type: ignore | 
					
						
							|  |  |  |         engine.timeout += settings['outgoing'].get('extra_proxy_timeout', 0)  # type: ignore | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def is_missing_required_attributes(engine): | 
					
						
							| 
									
										
										
										
											2021-06-01 13:34:41 +02:00
										 |  |  |     """An attribute is required when its name doesn't start with ``_`` (underline).
 | 
					
						
							|  |  |  |     Required attributes must not be ``None``. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |     """
 | 
					
						
							|  |  |  |     missing = False | 
					
						
							|  |  |  |     for engine_attr in dir(engine): | 
					
						
							|  |  |  |         if not engine_attr.startswith('_') and getattr(engine, engine_attr) is None: | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |             logger.error('Missing engine config attribute: "{0}.{1}"'.format(engine.name, engine_attr)) | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |             missing = True | 
					
						
							|  |  |  |     return missing | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  | def using_tor_proxy(engine: Engine | types.ModuleType): | 
					
						
							| 
									
										
										
										
											2022-01-22 19:51:40 +01:00
										 |  |  |     """Return True if the engine configuration declares to use Tor.""" | 
					
						
							|  |  |  |     return settings['outgoing'].get('using_tor_proxy') or getattr(engine, 'using_tor_proxy', False) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  | def is_engine_active(engine: Engine | types.ModuleType): | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |     # check if engine is inactive | 
					
						
							|  |  |  |     if engine.inactive is True: | 
					
						
							|  |  |  |         return False | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # exclude onion engines if not using tor | 
					
						
							| 
									
										
										
										
											2022-01-22 19:51:40 +01:00
										 |  |  |     if 'onions' in engine.categories and not using_tor_proxy(engine): | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |         return False | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return True | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-19 15:13:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-25 12:37:31 +02:00
										 |  |  | def register_engine(engine: Engine | types.ModuleType): | 
					
						
							| 
									
										
										
										
											2021-06-01 16:24:31 +02:00
										 |  |  |     if engine.name in engines: | 
					
						
							| 
									
										
										
										
											2022-09-27 17:01:00 +02:00
										 |  |  |         logger.error('Engine config error: ambiguous name: {0}'.format(engine.name)) | 
					
						
							| 
									
										
										
										
											2021-06-01 16:24:31 +02:00
										 |  |  |         sys.exit(1) | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |     engines[engine.name] = engine | 
					
						
							| 
									
										
										
										
											2021-06-01 16:24:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-19 15:13:01 +01:00
										 |  |  |     if engine.shortcut in engine_shortcuts: | 
					
						
							| 
									
										
										
										
											2022-09-27 17:01:00 +02:00
										 |  |  |         logger.error('Engine config error: ambiguous shortcut: {0}'.format(engine.shortcut)) | 
					
						
							| 
									
										
										
										
											2016-02-19 15:13:01 +01:00
										 |  |  |         sys.exit(1) | 
					
						
							|  |  |  |     engine_shortcuts[engine.shortcut] = engine.name | 
					
						
							| 
									
										
										
										
											2021-06-01 16:24:31 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |     for category_name in engine.categories: | 
					
						
							|  |  |  |         categories.setdefault(category_name, []).append(engine) | 
					
						
							| 
									
										
										
										
											2014-01-31 15:45:18 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-21 14:27:25 +02:00
										 |  |  | def load_engines(engine_list): | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |     """usage: ``engine_list = settings['engines']``""" | 
					
						
							| 
									
										
										
										
											2017-07-21 14:27:25 +02:00
										 |  |  |     engines.clear() | 
					
						
							| 
									
										
										
										
											2016-05-19 07:38:43 +02:00
										 |  |  |     engine_shortcuts.clear() | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |     categories.clear() | 
					
						
							|  |  |  |     categories['general'] = [] | 
					
						
							| 
									
										
										
										
											2016-12-27 17:25:19 +01:00
										 |  |  |     for engine_data in engine_list: | 
					
						
							| 
									
										
										
										
											2020-08-31 18:59:27 +02:00
										 |  |  |         engine = load_engine(engine_data) | 
					
						
							| 
									
										
										
										
											2021-05-29 09:35:10 +02:00
										 |  |  |         if engine: | 
					
						
							|  |  |  |             register_engine(engine) | 
					
						
							| 
									
										
										
										
											2017-07-21 14:27:25 +02:00
										 |  |  |     return engines |