diff options
author | mkaay <mkaay@mkaay.de> | 2011-01-26 15:02:14 +0100 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2011-01-26 15:02:14 +0100 |
commit | f3296c034427447b72c3d842bb2ff4b3f716200a (patch) | |
tree | 4820dbb8c00b6ab0b28ff5bb136b8f8dcdde4765 /module | |
parent | overview speed fix, added lib dir (diff) | |
download | pyload-f3296c034427447b72c3d842bb2ff4b3f716200a.tar.xz |
modularized remote backends
Diffstat (limited to 'module')
-rw-r--r-- | module/lib/SecureXMLRPCServer.py (renamed from module/remote/SecureXMLRPCServer.py) | 0 | ||||
-rw-r--r-- | module/remote/RemoteManager.py | 68 | ||||
-rw-r--r-- | module/remote/XMLRPCBackend.py | 41 |
3 files changed, 109 insertions, 0 deletions
diff --git a/module/remote/SecureXMLRPCServer.py b/module/lib/SecureXMLRPCServer.py index 48586ee0b..48586ee0b 100644 --- a/module/remote/SecureXMLRPCServer.py +++ b/module/lib/SecureXMLRPCServer.py diff --git a/module/remote/RemoteManager.py b/module/remote/RemoteManager.py new file mode 100644 index 000000000..bc40ea124 --- /dev/null +++ b/module/remote/RemoteManager.py @@ -0,0 +1,68 @@ +# -*- coding: utf-8 -*- +""" + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, + or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, see <http://www.gnu.org/licenses/>. + + @author: mkaay +""" + +from threading import Thread +from traceback import print_exc + +class BackendBase(Thread): + def __init__(self, manager): + Thread.__init__(self) + self.manager = manager + self.core = manager.core + + def run(self): + self.core.log.info(_("Starting %s") % self.__class__.__name__) + try: + self.serve() + except: + self.core.log.error(_("%s: Remote backend error") % self.__class__.__name__) + if self.core.debug: + print_exc() + + def setup(self): + pass + + def checkDeps(self): + return True + + def serve(self): + pass + +class RemoteManager(): + available = ("XMLRPCBackend", ) + + def __init__(self, core): + self.core = core + self.backends = [] + + def startBackends(self): + for b in self.available: + klass = getattr(__import__("module.remote.%s" % b, globals(), locals(), [b] , -1), b) + backend = klass(self) + if not backend.checkDeps(): + continue + try: + backend.setup() + except: + self.core.log.error(_("Failed loading backend %s") % b) + if self.core.debug: + print_exc() + else: + backend.start() + self.backends.append(backend) + diff --git a/module/remote/XMLRPCBackend.py b/module/remote/XMLRPCBackend.py new file mode 100644 index 000000000..6a7f9f96e --- /dev/null +++ b/module/remote/XMLRPCBackend.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +""" + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, + or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, see <http://www.gnu.org/licenses/>. + + @author: mkaay, RaNaN +""" + +import module.lib.SecureXMLRPCServer as Server +from module.remote.RemoteManager import BackendBase + +from traceback import print_exc + +class XMLRPCBackend(BackendBase): + def setup(self): + server_addr = (self.core.config['remote']['listenaddr'], int(self.core.config['remote']['port'])) + usermap = {self.core.config.username: self.core.config.password} + if self.core.config['ssl']['activated']: + if exists(self.core.config['ssl']['cert']) and exists(self.core.config['ssl']['key']): + self.server = Server.SecureXMLRPCServer(server_addr, self.core.config['ssl']['cert'], + self.core.config['ssl']['key'], usermap) + else: + self.core.log.warning(_("SSL Certificates not found, fallback to auth XMLRPC server")) + self.server = Server.AuthXMLRPCServer(server_addr, usermap) + else: + self.server = Server.AuthXMLRPCServer(server_addr, usermap) + + self.server.register_instance(self.core.server_methods) + + def serve(self): + self.server.serve_forever() |