mirror of
https://github.com/logos-storage/deluge.git
synced 2026-01-08 08:03:08 +00:00
The move to using auto-formatter makes it easier to read, submit and speeds up development time. https://github.com/ambv/black/ Although I would prefer 79 chars, the default line length of 88 chars used by black suffices. The flake8 line length remains at 120 chars since black does not touch comments or docstrings and this will require another round of fixes. The only black setting that is not standard is the use of double-quotes for strings so disabled any formatting of these. Note however that flake8 will still flag usage of double-quotes. I may change my mind on double vs single quotes but for now leave them. A new pyproject.toml file has been created for black configuration.
82 lines
2.1 KiB
Python
82 lines
2.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (C) 2007-2010 Andrew Resch <andrewresch@gmail.com>
|
|
#
|
|
# This file is part of Deluge and is licensed under GNU General Public License 3.0, or later, with
|
|
# the additional special exception to link portions of this program with the OpenSSL library.
|
|
# See LICENSE for more details.
|
|
#
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import logging
|
|
|
|
import deluge.component as component
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
class PluginBase(component.Component):
|
|
|
|
update_interval = 1
|
|
|
|
def __init__(self, name):
|
|
super(PluginBase, self).__init__(name, self.update_interval)
|
|
|
|
def enable(self):
|
|
raise NotImplementedError('Need to define an enable method!')
|
|
|
|
def disable(self):
|
|
raise NotImplementedError('Need to define a disable method!')
|
|
|
|
|
|
class CorePluginBase(PluginBase):
|
|
def __init__(self, plugin_name):
|
|
super(CorePluginBase, self).__init__('CorePlugin.' + plugin_name)
|
|
# Register RPC methods
|
|
component.get('RPCServer').register_object(self, plugin_name.lower())
|
|
log.debug('CorePlugin initialized..')
|
|
|
|
def __del__(self):
|
|
component.get('RPCServer').deregister_object(self)
|
|
|
|
def enable(self):
|
|
super(CorePluginBase, self).enable()
|
|
|
|
def disable(self):
|
|
super(CorePluginBase, self).disable()
|
|
|
|
|
|
class GtkPluginBase(PluginBase):
|
|
def __init__(self, plugin_name):
|
|
super(GtkPluginBase, self).__init__('GtkPlugin.' + plugin_name)
|
|
log.debug('GtkPlugin initialized..')
|
|
|
|
def enable(self):
|
|
super(GtkPluginBase, self).enable()
|
|
|
|
def disable(self):
|
|
super(GtkPluginBase, self).disable()
|
|
|
|
|
|
class WebPluginBase(PluginBase):
|
|
|
|
scripts = []
|
|
debug_scripts = []
|
|
|
|
stylesheets = []
|
|
debug_stylesheets = []
|
|
|
|
def __init__(self, plugin_name):
|
|
super(WebPluginBase, self).__init__('WebPlugin.' + plugin_name)
|
|
|
|
# Register JSON rpc methods
|
|
component.get('JSON').register_object(self, plugin_name.lower())
|
|
log.debug('WebPlugin initialized..')
|
|
|
|
def enable(self):
|
|
pass
|
|
|
|
def disable(self):
|
|
pass
|