diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f4a3840..698b8bb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,5 +1,4 @@ -Contributing -============ +# Contributing All kinds of contributions to Dotbot are greatly appreciated. For someone unfamiliar with the code base, the most efficient way to contribute is usually @@ -7,21 +6,19 @@ to submit a [feature request](#feature-requests) or [bug report](#bug-reports). If you want to dive into the source code, you can submit a [patch](#patches) as well, either working on your own ideas or [existing issues][issues]. -Feature Requests ----------------- +## Feature Requests Do you have an idea for an awesome new feature for Dotbot? Please [submit a feature request][issue]. It's great to hear about new ideas. If you are inclined to do so, you're welcome to [fork][fork] Dotbot, work on implementing the feature yourself, and submit a patch. In this case, it's -*highly recommended* that you first [open an issue][issue] describing your +_highly recommended_ that you first [open an issue][issue] describing your enhancement to get early feedback on the new feature that you are implementing. This will help avoid wasted efforts and ensure that your work is incorporated into the code base. -Bug Reports ------------ +## Bug Reports Did something go wrong with Dotbot? Sorry about that! Bug reports are greatly appreciated! @@ -31,15 +28,14 @@ as Dotbot version, operating system, configuration file, error messages, and steps to reproduce the bug. The more details you can include, the easier it is to find and fix the bug. -Patches -------- +## Patches Want to hack on Dotbot? Awesome! If there are [open issues][issues], you're more than welcome to work on those - this is probably the best way to contribute to Dotbot. If you have your own ideas, that's great too! In that case, before working on substantial changes to -the code base, it is *highly recommended* that you first [open an issue][issue] +the code base, it is _highly recommended_ that you first [open an issue][issue] describing what you intend to work on. **Patches are generally submitted as pull requests.** Patches are also @@ -82,6 +78,10 @@ do so with the following: docker run -it --rm -v "${PWD}:/dotbot" -w /dotbot python:3.10-alpine /bin/sh ``` +If the machine you are running Docker on has SELinux in the enforcing state, you +will have to disable that on the container. This can be done by adding +`--security-opt label:disable` to the above command. + After spawning the container, follow the same instructions as above (create a virtualenv, ..., run the tests). diff --git a/README.md b/README.md index 971f066..14b0f33 100644 --- a/README.md +++ b/README.md @@ -428,11 +428,26 @@ should do something and return whether or not it completed successfully. All built-in Dotbot directives are written as plugins that are loaded by default, so those can be used as a reference when writing custom plugins. -Plugins are loaded using the `--plugin` and `--plugin-dir` options, using -either absolute paths or paths relative to the base directory. It is -recommended that these options are added directly to the `install` script. +See [here](plugins) for a current list of plugins. -See [here][plugins] for a current list of plugins. +#### Format + +Plugins can be loaded either by the command-line arguments `--plugin` or +`--plugin-dir` or by the `plugins` directive. Each of these take either +absolute paths or paths relative to the base directory. + +When using command-line arguments to load multiple plugins you must add +one argument for each plugin to be loaded. It is recommended to place +these command-line arguments directly in the `install` script. + +The `plugins` config directive is specified as an array of paths to load. + +#### Example + +```yaml +- plugins: + - dotbot-plugins/dotbot-template +``` ## Command-line Arguments diff --git a/dotbot/cli.py b/dotbot/cli.py index f421003..9229df1 100644 --- a/dotbot/cli.py +++ b/dotbot/cli.py @@ -9,7 +9,7 @@ import dotbot from .config import ConfigReader, ReadingError from .dispatcher import Dispatcher, DispatchError from .messenger import Level, Messenger -from .plugins import Clean, Create, Link, Shell +from .plugins import Clean, Create, Link, Plugins, Shell from .util import module @@ -121,7 +121,7 @@ def main(): plugins = [] plugin_directories = list(options.plugin_dirs) if not options.disable_built_in_plugins: - plugins.extend([Clean, Create, Link, Shell]) + plugins.extend([Clean, Create, Link, Plugins, Shell]) plugin_paths = [] for directory in plugin_directories: for plugin_path in glob.glob(os.path.join(directory, "*.py")): diff --git a/dotbot/dispatcher.py b/dotbot/dispatcher.py index f89683d..30392a7 100644 --- a/dotbot/dispatcher.py +++ b/dotbot/dispatcher.py @@ -42,11 +42,13 @@ class Dispatcher: ) and action != "defaults": self._log.info("Skipping action %s" % action) continue + handled = False if action == "defaults": self._context.set_defaults(task[action]) # replace, not update handled = True # keep going, let other plugins handle this if they want + for plugin in self._plugins: if plugin.can_handle(action): try: @@ -63,14 +65,25 @@ class Dispatcher: ) self._log.debug(err) if self._exit: - # There was an execption exit + # There was an exception exit return False + if not handled: success = False self._log.error("Action %s not handled" % action) if self._exit: # Invalid action exit return False + + if action == "plugins": + # Create a list of loaded plugin names + loaded_plugins = [plugin.__class__.__name__ for plugin in self._plugins] + + # Load plugins that haven't been loaded yet + for plugin in Plugin.__subclasses__(): + if plugin.__name__ not in loaded_plugins: + self._plugins.append(plugin(self._context)) + return success diff --git a/dotbot/plugins/__init__.py b/dotbot/plugins/__init__.py index f75bef5..45b175c 100644 --- a/dotbot/plugins/__init__.py +++ b/dotbot/plugins/__init__.py @@ -1,4 +1,5 @@ from .clean import Clean from .create import Create from .link import Link +from .plugins import Plugins from .shell import Shell diff --git a/dotbot/plugins/plugins.py b/dotbot/plugins/plugins.py new file mode 100644 index 0000000..dd36e91 --- /dev/null +++ b/dotbot/plugins/plugins.py @@ -0,0 +1,46 @@ +import glob +import os + +from ..plugin import Plugin +from ..util import module + + +class Plugins(Plugin): + """ + Load plugins from a list of paths. + """ + + _directive = "plugins" + _has_shown_override_message = False + + def can_handle(self, directive): + return directive == self._directive + + def handle(self, directive, data): + if directive != self._directive: + raise ValueError("plugins cannot handle directive %s" % directive) + return self._process_plugins(data) + + def _process_plugins(self, data): + success = True + plugin_paths = [] + for item in data: + self._log.lowinfo("Loading plugin from %s" % item) + + plugin_path_globs = glob.glob(os.path.join(item, "*.py")) + if not plugin_path_globs: + success = False + self._log.warning("Failed to load plugin from %s" % item) + else: + for plugin_path in plugin_path_globs: + plugin_paths.append(plugin_path) + + for plugin_path in plugin_paths: + abspath = os.path.abspath(plugin_path) + module.load(abspath) + + if success: + self._log.info("All commands have been executed") + else: + self._log.error("Some commands were not successfully executed") + return success diff --git a/tests/dotbot_plugin_config_file.py b/tests/dotbot_plugin_config_file.py new file mode 100644 index 0000000..6e0a0e8 --- /dev/null +++ b/tests/dotbot_plugin_config_file.py @@ -0,0 +1,19 @@ +"""Test that a plugin can be loaded by config file. + +This file is copied to a location with the name "config_file.py", +and is then loaded from within the `test_cli.py` code. +""" + +import os.path + +import dotbot + + +class ConfigFile(dotbot.Plugin): + def can_handle(self, directive): + return directive == "plugin_config_file" + + def handle(self, directive, data): + with open(os.path.abspath(os.path.expanduser("~/flag")), "w") as file: + file.write("config file plugin loading works") + return True