diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-05-12 17:21:33 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-05-12 17:21:33 +0200 |
commit | 0c525f750dad3f57297836ddea02da7d42ad5969 (patch) | |
tree | 2df5f1cd3fb29c71386e197ab782a7385b8e42bd /pyload | |
parent | Merge branch 'stable' into 0.4.10 (diff) | |
download | pyload-0c525f750dad3f57297836ddea02da7d42ad5969.tar.xz |
Other import fixes (4)
Diffstat (limited to 'pyload')
-rw-r--r-- | pyload/Api/__init__.py | 6 | ||||
-rwxr-xr-x | pyload/Core.py | 9 | ||||
-rw-r--r-- | pyload/plugin/Plugin.py | 16 | ||||
-rw-r--r-- | pyload/plugin/account/OboomCom.py | 4 | ||||
-rw-r--r-- | pyload/plugin/account/SmoozedCom.py | 4 | ||||
-rw-r--r-- | pyload/plugin/addon/ExtractArchive.py | 8 | ||||
-rw-r--r-- | pyload/utils/filters.py | 4 | ||||
-rw-r--r-- | pyload/webui/__init__.py | 8 | ||||
-rw-r--r-- | pyload/webui/app/cnl.py | 10 |
9 files changed, 32 insertions, 37 deletions
diff --git a/pyload/Api/__init__.py b/pyload/Api/__init__.py index 44bae48bc..f4e7d49ee 100644 --- a/pyload/Api/__init__.py +++ b/pyload/Api/__init__.py @@ -17,15 +17,15 @@ from pyload.utils import compare_time, freeSpace, safe_filename if activated: try: - from thrift.protocol import TBase + import thrift + from pyload.remote.thriftbackend.thriftgen.pyload.ttypes import * from pyload.remote.thriftbackend.thriftgen.pyload.Pyload import Iface - BaseObject = TBase + BaseObject = thrift.protocol.TBase except ImportError: from pyload.Api.types import * - print "Thrift not imported" else: diff --git a/pyload/Core.py b/pyload/Core.py index 1ec6ee5ed..217d9aff5 100755 --- a/pyload/Core.py +++ b/pyload/Core.py @@ -291,19 +291,20 @@ class Core(object): if self.config.get("permission", "change_group"): if os.name != "nt": try: - from grp import getgrnam + import grp - group = getgrnam(self.config.get("permission", "group")) + group = grp.getgrnam(self.config.get("permission", "group")) os.setgid(group[2]) + except Exception, e: print _("Failed changing group: %s") % e if self.config.get("permission", "change_user"): if os.name != "nt": try: - from pwd import getpwnam + import pwd - user = getpwnam(self.config.get("permission", "user")) + user = pwd.getpwnam(self.config.get("permission", "user")) os.setuid(user[2]) except Exception, e: print _("Failed changing user: %s") % e diff --git a/pyload/plugin/Plugin.py b/pyload/plugin/Plugin.py index 6648c574f..1657ee529 100644 --- a/pyload/plugin/Plugin.py +++ b/pyload/plugin/Plugin.py @@ -13,8 +13,8 @@ import urllib import urlparse if os.name != "nt": - from pwd import getpwnam - from grp import getgrnam + import grp + import pwd from pyload.utils import fs_decode, fs_encode, safe_filename, fs_join, encode @@ -545,9 +545,9 @@ class Plugin(Base): res = encode(res) if self.core.debug: - from inspect import currentframe + import inspect - frame = currentframe() + frame = inspect.currentframe() framefile = fs_join("tmp", self.getClassName(), "%s_line%s.dump.html" % (frame.f_back.f_code.co_name, frame.f_back.f_lineno)) try: if not os.path.exists(os.path.join("tmp", self.getClassName())): @@ -622,8 +622,8 @@ class Plugin(Base): os.makedirs(location, int(self.core.config.get("permission", "folder"), 8)) if self.core.config.get("permission", "change_dl") and os.name != "nt": - uid = getpwnam(self.core.config.get("permission", "user"))[2] - gid = getgrnam(self.core.config.get("permission", "group"))[2] + uid = pwd.getpwnam(self.core.config.get("permission", "user"))[2] + gid = grp.getgrnam(self.core.config.get("permission", "group"))[2] os.chown(location, uid, gid) except Exception, e: @@ -662,8 +662,8 @@ class Plugin(Base): if self.core.config.get("permission", "change_dl") and os.name != "nt": try: - uid = getpwnam(self.core.config.get("permission", "user"))[2] - gid = getgrnam(self.core.config.get("permission", "group"))[2] + uid = pwd.getpwnam(self.core.config.get("permission", "user"))[2] + gid = grp.getgrnam(self.core.config.get("permission", "group"))[2] os.chown(fs_filename, uid, gid) except Exception, e: diff --git a/pyload/plugin/account/OboomCom.py b/pyload/plugin/account/OboomCom.py index 4669ca61e..b140b9282 100644 --- a/pyload/plugin/account/OboomCom.py +++ b/pyload/plugin/account/OboomCom.py @@ -4,8 +4,8 @@ try: from beaker.crypto.pbkdf2 import PBKDF2 except ImportError: + import binascii from beaker.crypto.pbkdf2 import pbkdf2 - from binascii import b2a_hex class PBKDF2(object): @@ -16,7 +16,7 @@ except ImportError: def hexread(self, octets): - return b2a_hex(pbkdf2(self.passphrase, self.salt, self.iterations, octets)) + return binascii.b2a_hex(pbkdf2(self.passphrase, self.salt, self.iterations, octets)) from pyload.utils import json_loads from pyload.plugin.Account import Account diff --git a/pyload/plugin/account/SmoozedCom.py b/pyload/plugin/account/SmoozedCom.py index 63381c20b..ae666b060 100644 --- a/pyload/plugin/account/SmoozedCom.py +++ b/pyload/plugin/account/SmoozedCom.py @@ -7,8 +7,8 @@ try: from beaker.crypto.pbkdf2 import PBKDF2 except ImportError: + import binascii from beaker.crypto.pbkdf2 import pbkdf2 - from binascii import b2a_hex class PBKDF2(object): @@ -19,7 +19,7 @@ except ImportError: def hexread(self, octets): - return b2a_hex(pbkdf2(self.passphrase, self.salt, self.iterations, octets)) + return binascii.b2a_hex(pbkdf2(self.passphrase, self.salt, self.iterations, octets)) from pyload.utils import json_loads from pyload.plugin.Account import Account diff --git a/pyload/plugin/addon/ExtractArchive.py b/pyload/plugin/addon/ExtractArchive.py index 53bf5559d..27e773a8c 100644 --- a/pyload/plugin/addon/ExtractArchive.py +++ b/pyload/plugin/addon/ExtractArchive.py @@ -52,8 +52,8 @@ except ImportError: pass if os.name != "nt": - from grp import getgrnam - from pwd import getpwnam + import grp + import pwd from pyload.plugin.Addon import Addon, threaded, Expose from pyload.plugin.Extractor import ArchiveError, CRCError, PasswordError @@ -563,8 +563,8 @@ class ExtractArchive(Addon): os.chmod(f, int(self.config.get("permission", "folder"), 8)) if self.config.get("permission", "change_dl") and os.name != "nt": - uid = getpwnam(self.config.get("permission", "user"))[2] - gid = getgrnam(self.config.get("permission", "group"))[2] + uid = pwd.getpwnam(self.config.get("permission", "user"))[2] + gid = grp.getgrnam(self.config.get("permission", "group"))[2] os.chown(f, uid, gid) except Exception, e: diff --git a/pyload/utils/filters.py b/pyload/utils/filters.py index 9d4d47c04..7e361623c 100644 --- a/pyload/utils/filters.py +++ b/pyload/utils/filters.py @@ -10,7 +10,7 @@ except Exception: from posixpath import curdir, sep, pardir - def os.relpath(path, start=curdir): + def relpath(path, start=curdir): """Return a relative version of a path""" if not path: raise ValueError("no path specified") @@ -51,7 +51,7 @@ def path_make_absolute(path): def path_make_relative(path): - p = os.relpath(path) + p = relpath(path) if p[-1] == os.path.sep: return p else: diff --git a/pyload/webui/__init__.py b/pyload/webui/__init__.py index a0e849a11..e1fe6738f 100644 --- a/pyload/webui/__init__.py +++ b/pyload/webui/__init__.py @@ -107,13 +107,13 @@ def run_lightweight(host="0.0.0.0", port="8000"): def run_threaded(host="0.0.0.0", port="8000", theads=3, cert="", key=""): - from wsgiserver import CherryPyWSGIServer + import wsgiserver if cert and key: - CherryPyWSGIServer.ssl_certificate = cert - CherryPyWSGIServer.ssl_private_key = key + wsgiserver.CherryPyWSGIServer.ssl_certificate = cert + wsgiserver.CherryPyWSGIServer.ssl_private_key = key - CherryPyWSGIServer.numthreads = theads + wsgiserver.CherryPyWSGIServer.numthreads = theads from pyload.webui.app.utils import CherryPyWSGI diff --git a/pyload/webui/app/cnl.py b/pyload/webui/app/cnl.py index 465e087e5..07b966f5e 100644 --- a/pyload/webui/app/cnl.py +++ b/pyload/webui/app/cnl.py @@ -8,20 +8,14 @@ import os import re import urllib +import Crypto import bottle from pyload.webui import PYLOAD, DL_ROOT, JS -try: - from Crypto.Cipher import AES -except Exception: - pass - - def local_check(function): - def _view(*args, **kwargs): if request.environ.get("REMOTE_ADDR", "0") in ("127.0.0.1", "localhost") \ or request.environ.get("HTTP_HOST", "0") in ("127.0.0.1:9666", "localhost:9666"): @@ -105,7 +99,7 @@ def addcrypted2(): IV = Key - obj = AES.new(Key, AES.MODE_CBC, IV) + obj = Crypto.Cipher.AES.new(Key, Crypto.Cipher.AES.MODE_CBC, IV) result = obj.decrypt(crypted).replace("\x00", "").replace("\r", "").split("\n") result = filter(lambda x: x != "", result) |