summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/FiledropperCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/FiledropperCom.py')
-rw-r--r--module/plugins/hoster/FiledropperCom.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/module/plugins/hoster/FiledropperCom.py b/module/plugins/hoster/FiledropperCom.py
new file mode 100644
index 000000000..73bab2d64
--- /dev/null
+++ b/module/plugins/hoster/FiledropperCom.py
@@ -0,0 +1,46 @@
+# -*- coding: utf-8 -*-
+
+import re
+import urlparse
+
+from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo
+
+
+class FiledropperCom(SimpleHoster):
+ __name__ = "FiledropperCom"
+ __type__ = "hoster"
+ __version__ = "0.01"
+
+ __pattern__ = r'https?://(?:www\.)?filedropper\.com/\w+'
+
+ __description__ = """Filedropper.com hoster plugin"""
+ __license__ = "GPLv3"
+ __authors__ = [("zapp-brannigan", "fuerst.reinje@web.de")]
+
+
+ NAME_PATTERN = r'Filename: (?P<N>.+?) <'
+ SIZE_PATTERN = r'Size: (?P<S>[\d.,]+) (?P<U>[\w^_]+),' #@NOTE: Website says always 0 KB
+ OFFLINE_PATTERN = r'value="a\.swf"'
+
+
+ def setup(self):
+ self.multiDL = False
+ self.chunkLimit = 1
+
+
+ def handleFree(self, pyfile):
+ m = re.search(r'img id="img" src="(.+?)"', self.html)
+ if m is None:
+ self.fail("Captcha not found")
+
+ captcha_code = self.decryptCaptcha("http://www.filedropper.com/%s" % m.group(1))
+
+ m = re.search(r'method="post" action="(.+?)"', self.html)
+ if m is None:
+ self.fail("Download link not found")
+
+ self.download(urlparse.urljoin("http://www.filedropper.com/", m.group(1)),
+ post={'code': captcha_code})
+
+
+getInfo = create_getInfo(FiledropperCom)