summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/QuickshareCzFolder.py
diff options
context:
space:
mode:
authorGravatar zoidberg10 <zoidberg@mujmail.cz> 2011-09-23 12:25:18 +0200
committerGravatar zoidberg10 <zoidberg@mujmail.cz> 2011-09-23 12:25:18 +0200
commit2839c54c090f2601fcecd0f7fdaeacc40c7716f5 (patch)
treebc6f0524b004425d9bed301e4d34792df9054495 /module/plugins/crypter/QuickshareCzFolder.py
parentfixed json import (diff)
downloadpyload-2839c54c090f2601fcecd0f7fdaeacc40c7716f5.tar.xz
plugins: czshare premium, czshare/quickshare/filefactory folders
Diffstat (limited to 'module/plugins/crypter/QuickshareCzFolder.py')
-rw-r--r--module/plugins/crypter/QuickshareCzFolder.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/module/plugins/crypter/QuickshareCzFolder.py b/module/plugins/crypter/QuickshareCzFolder.py
new file mode 100644
index 000000000..6cb049935
--- /dev/null
+++ b/module/plugins/crypter/QuickshareCzFolder.py
@@ -0,0 +1,30 @@
+# -*- coding: utf-8 -*-
+
+import re
+from module.plugins.Crypter import Crypter
+
+class QuickshareCzFolder(Crypter):
+ __name__ = "QuickshareCzFolder"
+ __type__ = "crypter"
+ __pattern__ = r"http://(www\.)?quickshare.cz/slozka-\d+.*"
+ __version__ = "0.1"
+ __description__ = """Quickshare.cz Folder Plugin"""
+ __author_name__ = ("zoidberg")
+ __author_mail__ = ("zoidberg@mujmail.cz")
+
+
+ FOLDER_PATTERN = r'<textarea[^>]*>(.*?)</textarea>'
+ LINK_PATTERN = r'(http://www.quickshare.cz/\S+)'
+
+ def decrypt(self, pyfile):
+ html = self.load(self.pyfile.url)
+
+ new_links = []
+ found = re.search(self.FOLDER_PATTERN, html, re.DOTALL)
+ if found is None: self.fail("Parse error (FOLDER)")
+ new_links.extend(re.findall(self.LINK_PATTERN, found.group(1)))
+
+ if new_links:
+ self.core.files.addLinks(new_links, self.pyfile.package().id)
+ else:
+ self.fail('Could not extract any links') \ No newline at end of file