diff options
Diffstat (limited to 'module/plugins/hoster/MediafireCom.py')
-rw-r--r-- | module/plugins/hoster/MediafireCom.py | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/module/plugins/hoster/MediafireCom.py b/module/plugins/hoster/MediafireCom.py deleted file mode 100644 index c022918ae..000000000 --- a/module/plugins/hoster/MediafireCom.py +++ /dev/null @@ -1,63 +0,0 @@ -# -*- coding: utf-8 -*- - -from module.plugins.internal.CaptchaService import SolveMedia -from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo - - -class MediafireCom(SimpleHoster): - __name__ = "MediafireCom" - __type__ = "hoster" - __version__ = "0.86" - - __pattern__ = r'https?://(?:www\.)?mediafire\.com/(file/|view/\??|download(\.php\?|/)|\?)\w{15}' - __config__ = [("use_premium", "bool", "Use premium account if available", True)] - - __description__ = """Mediafire.com hoster plugin""" - __license__ = "GPLv3" - __authors__ = [("zoidberg", "zoidberg@mujmail.cz"), - ("stickell", "l.stickell@yahoo.it"), - ("Walter Purcaro", "vuolter@gmail.com")] - - - NAME_PATTERN = r'<META NAME="description" CONTENT="(?P<N>.+?)"/>' - SIZE_PATTERN = r'<li>File size: <span>(?P<S>[\d.,]+) (?P<U>[\w^_]+)' - INFO_PATTERN = r'oFileSharePopup\.ald\(\'.*?\',\'(?P<N>.+?)\',\'(?P<S>[\d.,]+)\s*(?P<U>[\w^_]+)\',\'\',\'(?P<H>.+?)\'\)' - OFFLINE_PATTERN = r'class="error_msg_title"' - - LINK_FREE_PATTERN = r'kNO = "(.+?)"' - - PASSWORD_PATTERN = r'<form name="form_password"' - - - def setup(self): - self.resumeDownload = True - self.multiDL = True - - - def handleFree(self, pyfile): - solvemedia = SolveMedia(self) - captcha_key = solvemedia.detect_key() - - if captcha_key: - response, challenge = solvemedia.challenge(captcha_key) - self.html = self.load(pyfile.url, - post={'adcopy_challenge': challenge, - 'adcopy_response' : response}, - decode=True) - - if self.PASSWORD_PATTERN in self.html: - password = self.getPassword() - - if not password: - self.fail(_("No password found")) - else: - self.logInfo(_("Password protected link, trying: ") + password) - self.html = self.load(self.link, post={'downloadp': password}) - - if self.PASSWORD_PATTERN in self.html: - self.fail(_("Incorrect password")) - - return super(MediafireCom, self).handleFree(pyfile) - - -getInfo = create_getInfo(MediafireCom) |