summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/base/Container.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-03 19:56:27 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-10-03 19:56:27 +0200
commitcc105b7dbc363d9786594c1e884f1836eb22e999 (patch)
treea52491dc5d35c448b86b07d099a6aca62bf2ac3c /pyload/plugins/base/Container.py
parentFix previous merge commit (diff)
downloadpyload-cc105b7dbc363d9786594c1e884f1836eb22e999.tar.xz
New base plugins
Diffstat (limited to 'pyload/plugins/base/Container.py')
-rw-r--r--pyload/plugins/base/Container.py61
1 files changed, 61 insertions, 0 deletions
diff --git a/pyload/plugins/base/Container.py b/pyload/plugins/base/Container.py
new file mode 100644
index 000000000..2059ae9b2
--- /dev/null
+++ b/pyload/plugins/base/Container.py
@@ -0,0 +1,61 @@
+# -*- coding: utf-8 -*-
+
+import re
+
+from os import remove
+from os.path import basename, exists
+
+from pyload.plugins.base.Crypter import Crypter
+from pyload.utils import safe_join
+
+
+class Container(Crypter):
+ __name__ = "Container"
+ __type__ = "container"
+ __version__ = "0.1"
+
+ __pattern__ = None
+
+ __description__ = """Base container decrypter plugin"""
+ __author_name__ = "mkaay"
+ __author_mail__ = "mkaay@mkaay.de"
+
+
+ def preprocessing(self, thread):
+ """prepare"""
+
+ self.setup()
+ self.thread = thread
+
+ self.loadToDisk()
+
+ self.decrypt(self.pyfile)
+ self.deleteTmp()
+
+ self.createPackages()
+
+
+ def loadToDisk(self):
+ """loads container to disk if its stored remotely and overwrite url,
+ or check existent on several places at disk"""
+
+ if self.pyfile.url.startswith("http"):
+ self.pyfile.name = re.findall("([^\/=]+)", self.pyfile.url)[-1]
+ content = self.load(self.pyfile.url)
+ self.pyfile.url = safe_join(self.config['general']['download_folder'], self.pyfile.name)
+ f = open(self.pyfile.url, "wb" )
+ f.write(content)
+ f.close()
+
+ else:
+ self.pyfile.name = basename(self.pyfile.url)
+ if not exists(self.pyfile.url):
+ if exists(safe_join(pypath, self.pyfile.url)):
+ self.pyfile.url = safe_join(pypath, self.pyfile.url)
+ else:
+ self.fail(_("File not exists."))
+
+
+ def deleteTmp(self):
+ if self.pyfile.name.startswith("tmp_"):
+ remove(self.pyfile.url)