From 1f59b4d2ba646b4c6d7be4c29bf8e5e5afd2712c Mon Sep 17 00:00:00 2001 From: Asmageddon Date: Tue, 29 May 2012 17:43:16 +0200 Subject: [PATCH] Add reload and install plugin functionality to the 'plugin' command --- deluge/ui/console/commands/plugin.py | 56 +++++++++++++++++++++++++++- 1 file changed, 54 insertions(+), 2 deletions(-) diff --git a/deluge/ui/console/commands/plugin.py b/deluge/ui/console/commands/plugin.py index 84b92e623..02ffb89e8 100644 --- a/deluge/ui/console/commands/plugin.py +++ b/deluge/ui/console/commands/plugin.py @@ -38,6 +38,9 @@ from deluge.ui.console.main import BaseCommand from deluge.ui.client import client import deluge.ui.console.colors as colors import deluge.component as component +import deluge.configmanager + +import re class Command(BaseCommand): """Manage plugins with this command""" @@ -50,11 +53,17 @@ class Command(BaseCommand): help='enables a plugin'), make_option('-d', '--disable', dest='disable', help='disables a plugin'), + make_option('-r', '--reload', action='store_true', default=False, dest='reload', + help='reload list of available plugins'), + make_option('-i', '--install', dest='plugin_file', + help='install a plugin from an .egg file'), ) usage = "Usage: plugin [ -l | --list ]\n"\ " plugin [ -s | --show ]\n"\ - " plugin [ -e | --enable ] \n"\ - " plugin [ -d | --disable ] " + " plugin [ -e | --enable ] \n"\ + " plugin [ -d | --disable ] \n"\ + " plugin [ -i | --install ] \n"\ + " plugin [ -r | --reload]" def handle(self, *args, **options): self.console = component.get("ConsoleUI") @@ -63,6 +72,11 @@ class Command(BaseCommand): self.console.write(self.usage) return + if options["reload"]: + client.core.pluginmanager.rescan_plugins() + self.console.write("{!green!}Plugin list successfully reloaded") + return + if options["list"]: def on_available_plugins(result): self.console.write("{!info!}Available Plugins:") @@ -104,3 +118,41 @@ class Command(BaseCommand): client.core.disable_plugin(plugins[arg.lower()]) return client.core.get_enabled_plugins().addCallback(on_enabled_plugins) + + if options["plugin_file"]: + + filepath = options["plugin_file"] + + import os.path + import base64 + import shutil + + if not os.path.exists(filepath): + self.console.write("{!error!}Invalid path: %s" % filepath) + return + + + config_dir = deluge.configmanager.get_config_dir() + filename = os.path.split(filepath)[1] + + shutil.copyfile( + filepath, + os.path.join(config_dir, "plugins", filename)) + + client.core.rescan_plugins() + + if not client.is_localhost(): + # We need to send this plugin to the daemon + filedump = base64.encodestring(open(filepath, "rb").read()) + try: + client.core.upload_plugin(filename, filedump) + + client.core.rescan_plugins() + except: + self.console.write("{!error!}An error occured, plugin was not installed") + + self.console.write("{!green!}Plugin was successfully installed: %s" % filename) + + + def complete(self, line): + return component.get("ConsoleUI").tab_complete_path(line, ext=".egg", sort="name", dirs_first=-1) \ No newline at end of file