| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							|  |  |  | # lint: pylint | 
					
						
							|  |  |  | # pylint: disable=missing-module-docstring, missing-class-docstring | 
					
						
							| 
									
										
										
										
											2020-07-14 18:56:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  | import sys | 
					
						
							| 
									
										
										
										
											2020-07-14 21:51:38 +02:00
										 |  |  | from hashlib import sha256 | 
					
						
							| 
									
										
										
										
											2020-07-14 18:56:57 +02:00
										 |  |  | from importlib import import_module | 
					
						
							| 
									
										
										
										
											2020-07-28 13:57:57 +02:00
										 |  |  | from os import listdir, makedirs, remove, stat, utime | 
					
						
							| 
									
										
										
										
											2020-07-25 21:05:23 +02:00
										 |  |  | from os.path import abspath, basename, dirname, exists, join | 
					
						
							| 
									
										
										
										
											2020-07-14 18:56:57 +02:00
										 |  |  | from shutil import copyfile | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  | from pkgutil import iter_modules | 
					
						
							|  |  |  | from logging import getLogger | 
					
						
							| 
									
										
										
										
											2020-07-14 18:56:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-28 18:45:22 +02:00
										 |  |  | from searx import logger, settings | 
					
						
							| 
									
										
										
										
											2015-03-10 19:55:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  | logger = logger.getChild("plugins") | 
					
						
							| 
									
										
										
										
											2015-03-10 19:55:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  | required_attrs = ( | 
					
						
							| 
									
										
										
										
											2021-12-27 09:16:03 +01:00
										 |  |  |     # fmt: off | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  |     ("name", str), | 
					
						
							|  |  |  |     ("description", str), | 
					
						
							|  |  |  |     ("default_on", bool) | 
					
						
							| 
									
										
										
										
											2021-12-27 09:16:03 +01:00
										 |  |  |     # fmt: on | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2020-07-14 18:56:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  | optional_attrs = ( | 
					
						
							| 
									
										
										
										
											2021-12-27 09:16:03 +01:00
										 |  |  |     # fmt: off | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  |     ("js_dependencies", tuple), | 
					
						
							|  |  |  |     ("css_dependencies", tuple), | 
					
						
							|  |  |  |     ("preference_section", str), | 
					
						
							| 
									
										
										
										
											2021-12-27 09:16:03 +01:00
										 |  |  |     # fmt: on | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2020-07-14 18:56:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  | def sha_sum(filename): | 
					
						
							|  |  |  |     with open(filename, "rb") as f: | 
					
						
							|  |  |  |         file_content_bytes = f.read() | 
					
						
							|  |  |  |         return sha256(file_content_bytes).hexdigest() | 
					
						
							| 
									
										
										
										
											2020-07-14 18:56:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-25 03:20:29 +02:00
										 |  |  | def sync_resource(base_path, resource_path, name, target_dir, plugin_dir): | 
					
						
							|  |  |  |     dep_path = join(base_path, resource_path) | 
					
						
							|  |  |  |     file_name = basename(dep_path) | 
					
						
							|  |  |  |     resource_path = join(target_dir, file_name) | 
					
						
							|  |  |  |     if not exists(resource_path) or sha_sum(dep_path) != sha_sum(resource_path): | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             copyfile(dep_path, resource_path) | 
					
						
							| 
									
										
										
										
											2020-07-28 13:57:57 +02:00
										 |  |  |             # copy atime_ns and mtime_ns, so the weak ETags (generated by | 
					
						
							|  |  |  |             # the HTTP server) do not change | 
					
						
							|  |  |  |             dep_stat = stat(dep_path) | 
					
						
							|  |  |  |             utime(resource_path, ns=(dep_stat.st_atime_ns, dep_stat.st_mtime_ns)) | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  |         except IOError: | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |             logger.critical("failed to copy plugin resource {0} for plugin {1}".format(file_name, name)) | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  |             sys.exit(3) | 
					
						
							| 
									
										
										
										
											2020-07-14 18:56:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-25 03:20:29 +02:00
										 |  |  |     # returning with the web path of the resource | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  |     return join("plugins/external_plugins", plugin_dir, file_name) | 
					
						
							| 
									
										
										
										
											2020-07-14 18:56:57 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  | def prepare_package_resources(plugin, plugin_module_name): | 
					
						
							|  |  |  |     plugin_base_path = dirname(abspath(plugin.__file__)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     plugin_dir = plugin_module_name | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |     target_dir = join(settings["ui"]["static_path"], "plugins/external_plugins", plugin_dir) | 
					
						
							| 
									
										
										
										
											2020-07-25 03:20:29 +02:00
										 |  |  |     try: | 
					
						
							|  |  |  |         makedirs(target_dir, exist_ok=True) | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  |     except IOError: | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         logger.critical("failed to create resource directory {0} for plugin {1}".format(target_dir, plugin_module_name)) | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  |         sys.exit(3) | 
					
						
							| 
									
										
										
										
											2020-07-22 19:02:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     resources = [] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  |     if hasattr(plugin, "js_dependencies"): | 
					
						
							|  |  |  |         resources.extend(map(basename, plugin.js_dependencies)) | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         plugin.js_dependencies = [ | 
					
						
							|  |  |  |             sync_resource(plugin_base_path, x, plugin_module_name, target_dir, plugin_dir) | 
					
						
							|  |  |  |             for x in plugin.js_dependencies | 
					
						
							|  |  |  |         ] | 
					
						
							| 
									
										
										
										
											2021-10-07 18:41:56 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  |     if hasattr(plugin, "css_dependencies"): | 
					
						
							|  |  |  |         resources.extend(map(basename, plugin.css_dependencies)) | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         plugin.css_dependencies = [ | 
					
						
							|  |  |  |             sync_resource(plugin_base_path, x, plugin_module_name, target_dir, plugin_dir) | 
					
						
							|  |  |  |             for x in plugin.css_dependencies | 
					
						
							|  |  |  |         ] | 
					
						
							| 
									
										
										
										
											2020-07-14 18:56:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-22 19:02:34 +02:00
										 |  |  |     for f in listdir(target_dir): | 
					
						
							|  |  |  |         if basename(f) not in resources: | 
					
						
							|  |  |  |             resource_path = join(target_dir, basename(f)) | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 remove(resource_path) | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  |             except IOError: | 
					
						
							|  |  |  |                 logger.critical( | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |                     "failed to remove unused resource file {0} for plugin {1}".format(resource_path, plugin_module_name) | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  |                 ) | 
					
						
							|  |  |  |                 sys.exit(3) | 
					
						
							| 
									
										
										
										
											2020-07-22 19:02:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-14 18:56:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  | def load_plugin(plugin_module_name, external): | 
					
						
							|  |  |  |     # pylint: disable=too-many-branches | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         plugin = import_module(plugin_module_name) | 
					
						
							|  |  |  |     except ( | 
					
						
							|  |  |  |         SyntaxError, | 
					
						
							|  |  |  |         KeyboardInterrupt, | 
					
						
							|  |  |  |         SystemExit, | 
					
						
							|  |  |  |         SystemError, | 
					
						
							|  |  |  |         ImportError, | 
					
						
							|  |  |  |         RuntimeError, | 
					
						
							|  |  |  |     ) as e: | 
					
						
							|  |  |  |         logger.critical("%s: fatal exception", plugin_module_name, exc_info=e) | 
					
						
							|  |  |  |         sys.exit(3) | 
					
						
							|  |  |  |     except BaseException: | 
					
						
							|  |  |  |         logger.exception("%s: exception while loading, the plugin is disabled", plugin_module_name) | 
					
						
							|  |  |  |         return None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # difference with searx: use module name instead of the user name | 
					
						
							|  |  |  |     plugin.id = plugin_module_name | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     plugin.logger = getLogger(plugin_module_name) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for plugin_attr, plugin_attr_type in required_attrs: | 
					
						
							|  |  |  |         if not hasattr(plugin, plugin_attr): | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |             logger.critical('%s: missing attribute "%s", cannot load plugin', plugin, plugin_attr) | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  |             sys.exit(3) | 
					
						
							|  |  |  |         attr = getattr(plugin, plugin_attr) | 
					
						
							|  |  |  |         if not isinstance(attr, plugin_attr_type): | 
					
						
							|  |  |  |             type_attr = str(type(attr)) | 
					
						
							|  |  |  |             logger.critical( | 
					
						
							|  |  |  |                 '{1}: attribute "{0}" is of type {2}, must be of type {3}, cannot load plugin'.format( | 
					
						
							|  |  |  |                     plugin, plugin_attr, type_attr, plugin_attr_type | 
					
						
							|  |  |  |                 ) | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  |             sys.exit(3) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for plugin_attr, plugin_attr_type in optional_attrs: | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         if not hasattr(plugin, plugin_attr) or not isinstance(getattr(plugin, plugin_attr), plugin_attr_type): | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  |             setattr(plugin, plugin_attr, plugin_attr_type()) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if not hasattr(plugin, "preference_section"): | 
					
						
							|  |  |  |         plugin.preference_section = "general" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # query plugin | 
					
						
							|  |  |  |     if plugin.preference_section == "query": | 
					
						
							|  |  |  |         for plugin_attr in ("query_keywords", "query_examples"): | 
					
						
							|  |  |  |             if not hasattr(plugin, plugin_attr): | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |                 logger.critical('missing attribute "{0}", cannot load plugin: {1}'.format(plugin_attr, plugin)) | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  |                 sys.exit(3) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if settings.get("enabled_plugins"): | 
					
						
							|  |  |  |         # searx compatibility: plugin.name in settings['enabled_plugins'] | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |         plugin.default_on = plugin.name in settings["enabled_plugins"] or plugin.id in settings["enabled_plugins"] | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # copy ressources if this is an external plugin | 
					
						
							|  |  |  |     if external: | 
					
						
							|  |  |  |         prepare_package_resources(plugin, plugin_module_name) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     logger.debug("%s: loaded", plugin_module_name) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return plugin | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def load_and_initialize_plugin(plugin_module_name, external, init_args): | 
					
						
							|  |  |  |     plugin = load_plugin(plugin_module_name, external) | 
					
						
							|  |  |  |     if plugin and hasattr(plugin, 'init'): | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             return plugin if plugin.init(*init_args) else None | 
					
						
							|  |  |  |         except Exception:  # pylint: disable=broad-except | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |             plugin.logger.exception("Exception while calling init, the plugin is disabled") | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  |             return None | 
					
						
							|  |  |  |     return plugin | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class PluginStore: | 
					
						
							|  |  |  |     def __init__(self): | 
					
						
							|  |  |  |         self.plugins = [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __iter__(self): | 
					
						
							|  |  |  |         for plugin in self.plugins: | 
					
						
							|  |  |  |             yield plugin | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def register(self, plugin): | 
					
						
							|  |  |  |         self.plugins.append(plugin) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def call(self, ordered_plugin_list, plugin_type, *args, **kwargs): | 
					
						
							|  |  |  |         # pylint: disable=no-self-use | 
					
						
							|  |  |  |         ret = True | 
					
						
							|  |  |  |         for plugin in ordered_plugin_list: | 
					
						
							|  |  |  |             if hasattr(plugin, plugin_type): | 
					
						
							|  |  |  |                 try: | 
					
						
							|  |  |  |                     ret = getattr(plugin, plugin_type)(*args, **kwargs) | 
					
						
							|  |  |  |                     if not ret: | 
					
						
							|  |  |  |                         break | 
					
						
							|  |  |  |                 except Exception:  # pylint: disable=broad-except | 
					
						
							|  |  |  |                     plugin.logger.exception("Exception while calling %s", plugin_type) | 
					
						
							|  |  |  |         return ret | 
					
						
							| 
									
										
										
										
											2020-07-14 21:51:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-10 19:55:22 +01:00
										 |  |  | plugins = PluginStore() | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def plugin_module_names(): | 
					
						
							|  |  |  |     yield_plugins = set() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # embedded plugins | 
					
						
							| 
									
										
										
										
											2021-10-07 18:41:41 +02:00
										 |  |  |     for module in iter_modules(path=[dirname(__file__)]): | 
					
						
							|  |  |  |         yield (__name__ + "." + module.name, False) | 
					
						
							|  |  |  |         yield_plugins.add(module.name) | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  |     # external plugins | 
					
						
							|  |  |  |     for module_name in settings['plugins']: | 
					
						
							|  |  |  |         if module_name not in yield_plugins: | 
					
						
							|  |  |  |             yield (module_name, True) | 
					
						
							|  |  |  |             yield_plugins.add(module_name) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def initialize(app): | 
					
						
							|  |  |  |     for module_name, external in plugin_module_names(): | 
					
						
							| 
									
										
										
										
											2021-10-07 18:41:41 +02:00
										 |  |  |         plugin = load_and_initialize_plugin(module_name, external, (app, settings)) | 
					
						
							| 
									
										
										
										
											2021-09-13 19:37:51 +02:00
										 |  |  |         if plugin: | 
					
						
							|  |  |  |             plugins.register(plugin) |