2015-04-12 19:27:48 +02:00
|
|
|
from searx.plugins import (self_ip,
|
|
|
|
search_on_category_select)
|
2015-03-10 19:55:22 +01:00
|
|
|
from searx import logger
|
|
|
|
from sys import exit
|
|
|
|
|
|
|
|
logger = logger.getChild('plugins')
|
|
|
|
|
2015-03-14 20:22:26 +01:00
|
|
|
required_attrs = (('name', str),
|
|
|
|
('description', str),
|
|
|
|
('default_on', bool))
|
2015-03-10 19:55:22 +01:00
|
|
|
|
2015-04-12 19:24:01 +02:00
|
|
|
optional_attrs = (('js_dependencies', tuple),
|
|
|
|
('css_dependencies', tuple))
|
|
|
|
|
2015-03-10 19:55:22 +01:00
|
|
|
|
|
|
|
class Plugin():
|
|
|
|
default_on = False
|
|
|
|
name = 'Default plugin'
|
2015-03-14 20:22:26 +01:00
|
|
|
description = 'Default plugin description'
|
2015-03-10 19:55:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
class PluginStore():
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.plugins = []
|
|
|
|
|
|
|
|
def __iter__(self):
|
2015-03-10 20:44:02 +01:00
|
|
|
for plugin in self.plugins:
|
2015-03-10 19:55:22 +01:00
|
|
|
yield plugin
|
|
|
|
|
|
|
|
def register(self, *plugins):
|
|
|
|
for plugin in plugins:
|
2015-03-14 20:22:26 +01:00
|
|
|
for plugin_attr, plugin_attr_type in required_attrs:
|
|
|
|
if not hasattr(plugin, plugin_attr) or not isinstance(getattr(plugin, plugin_attr), plugin_attr_type):
|
2015-03-10 19:55:22 +01:00
|
|
|
logger.critical('missing attribute "{0}", cannot load plugin: {1}'.format(plugin_attr, plugin))
|
|
|
|
exit(3)
|
2015-04-12 19:24:01 +02:00
|
|
|
for plugin_attr, plugin_attr_type in optional_attrs:
|
|
|
|
if not hasattr(plugin, plugin_attr) or not isinstance(getattr(plugin, plugin_attr), plugin_attr_type):
|
|
|
|
setattr(plugin, plugin_attr, plugin_attr_type())
|
2015-03-11 01:42:25 +01:00
|
|
|
plugin.id = plugin.name.replace(' ', '_')
|
2015-03-10 19:55:22 +01:00
|
|
|
self.plugins.append(plugin)
|
|
|
|
|
|
|
|
def call(self, plugin_type, request, *args, **kwargs):
|
|
|
|
ret = True
|
2015-03-10 20:44:02 +01:00
|
|
|
for plugin in request.user_plugins:
|
2015-03-10 19:55:22 +01:00
|
|
|
if hasattr(plugin, plugin_type):
|
|
|
|
ret = getattr(plugin, plugin_type)(request, *args, **kwargs)
|
|
|
|
if not ret:
|
|
|
|
break
|
|
|
|
|
|
|
|
return ret
|
|
|
|
|
|
|
|
|
|
|
|
plugins = PluginStore()
|
|
|
|
plugins.register(self_ip)
|
2015-04-12 19:27:48 +02:00
|
|
|
plugins.register(search_on_category_select)
|