mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-15 01:34:14 +00:00
18d05fcbbb
Since initialisation does not only refer to database migrations, it makes more sense to rename this command.
126 lines
3.1 KiB
Python
126 lines
3.1 KiB
Python
import pkg_resources
|
|
|
|
from . import exceptions
|
|
from . import fmt
|
|
|
|
"""
|
|
Tutor plugins are regular python packages that have a 'tutor.plugin.v1' entrypoint. This
|
|
entrypoint must point to a module or a class that implements I don't know what (yet).
|
|
TODO
|
|
"""
|
|
|
|
# TODO switch to v1
|
|
ENTRYPOINT = "tutor.plugin.v0"
|
|
CONFIG_KEY = "PLUGINS"
|
|
|
|
|
|
class Patches:
|
|
"""
|
|
Provide a patch cache on which we can conveniently iterate without having to parse again all plugin patches for every environment file.
|
|
|
|
The CACHE static attribute is a dict of the form:
|
|
|
|
{
|
|
"patchname": {
|
|
"pluginname": "patch content",
|
|
...
|
|
},
|
|
...
|
|
}
|
|
"""
|
|
|
|
CACHE = {}
|
|
|
|
def __init__(self, config, name):
|
|
self.name = name
|
|
if not self.CACHE:
|
|
self.fill_cache(config)
|
|
|
|
def __iter__(self):
|
|
"""
|
|
Yields:
|
|
plugin name (str)
|
|
patch content (str)
|
|
"""
|
|
plugin_patches = self.CACHE.get(self.name, {})
|
|
plugins = sorted(plugin_patches.keys())
|
|
for plugin in plugins:
|
|
yield plugin, plugin_patches[plugin]
|
|
|
|
@classmethod
|
|
def fill_cache(cls, config):
|
|
for plugin_name, plugin in iter_enabled(config):
|
|
patches = get_callable_attr(plugin, "patches")
|
|
for patch_name, content in patches.items():
|
|
if patch_name not in cls.CACHE:
|
|
cls.CACHE[patch_name] = {}
|
|
cls.CACHE[patch_name][plugin_name] = content
|
|
|
|
|
|
def get_callable_attr(plugin, attr_name):
|
|
attr = getattr(plugin, attr_name, {})
|
|
if callable(attr):
|
|
# TODO pass config here for initialisation
|
|
attr = attr()
|
|
return attr
|
|
|
|
|
|
def is_installed(name):
|
|
plugin_names = [name for name, _ in iter_installed()]
|
|
return name in plugin_names
|
|
|
|
|
|
def iter_installed():
|
|
for entrypoint in pkg_resources.iter_entry_points(ENTRYPOINT):
|
|
yield entrypoint.name, entrypoint.load()
|
|
|
|
|
|
def enable(config, name):
|
|
if not is_installed(name):
|
|
raise exceptions.TutorError("plugin '{}' is not installed.".format(name))
|
|
if is_enabled(config, name):
|
|
return
|
|
if CONFIG_KEY not in config:
|
|
config[CONFIG_KEY] = []
|
|
config[CONFIG_KEY].append(name)
|
|
config[CONFIG_KEY].sort()
|
|
|
|
|
|
def disable(config, name):
|
|
while name in config[CONFIG_KEY]:
|
|
config[CONFIG_KEY].remove(name)
|
|
|
|
|
|
def iter_enabled(config):
|
|
for name, plugin in iter_installed():
|
|
if is_enabled(config, name):
|
|
yield name, plugin
|
|
|
|
|
|
def is_enabled(config, name):
|
|
return name in config.get(CONFIG_KEY, [])
|
|
|
|
|
|
def iter_patches(config, name):
|
|
for plugin, patch in Patches(config, name):
|
|
yield plugin, patch
|
|
|
|
|
|
def iter_scripts(config, script_name):
|
|
"""
|
|
Scripts are of the form:
|
|
|
|
scripts = {
|
|
"script-name": [
|
|
"service-name1",
|
|
"service-name2",
|
|
...
|
|
],
|
|
...
|
|
}
|
|
"""
|
|
for plugin_name, plugin in iter_enabled(config):
|
|
scripts = get_callable_attr(plugin, "scripts")
|
|
for service in scripts.get(script_name, []):
|
|
yield plugin_name, service
|