diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-09-27 18:03:43 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-09-27 18:03:43 +0200 |
commit | d00e9f3e3b825a0324335860b32cd46dbea0b087 (patch) | |
tree | 7f4ead124708f33927f88f6a3d2a99e3276d8b70 | |
parent | [FiredriveCom] Fix TEMP_OFFLINE_PATTERN (diff) | |
download | pyload-d00e9f3e3b825a0324335860b32cd46dbea0b087.tar.xz |
New hoster KingfilesNet
-rw-r--r-- | module/plugins/hoster/KingfilesNet.py | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/module/plugins/hoster/KingfilesNet.py b/module/plugins/hoster/KingfilesNet.py new file mode 100644 index 000000000..1a9e9e81d --- /dev/null +++ b/module/plugins/hoster/KingfilesNet.py @@ -0,0 +1,93 @@ +# -*- coding: utf-8 -*- + +import re + +from module.plugins.internal.CaptchaService import SolveMedia +from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo + + +class KingfilesNet(SimpleHoster): + __name__ = "KingfilesNet" + __type__ = "hoster" + __version__ = "0.01" + + __pattern__ = r'http://(?:www\.)?kingfiles\.net/\w{12}' + + __description__ = """Kingfiles.net hoster plugin""" + __author_name__ = ("zapp-brannigan", "Walter Purcaro") + __author_mail__ = ("fuerst.reinje@web.de", "vuolter@gmail.com") + + + FILE_NAME_PATTERN = r'name="fname" value="(?P<N>.+?)">' + FILE_SIZE_PATTERN = r'>Size: .+?">(?P<S>[\d.]+) (?P<U>\w+)' + + OFFLINE_PATTERN = r'>(File Not Found</b><br><br>|File Not Found</h2>)' + + FILE_ID_PATTERN = r'<input type=\"hidden\" name=\"id\" value=\"(.+)\">' + RANDOM_PATTERN = r'type=\"hidden\" name=\"rand\" value=\"(.+)\">' + + LINK_PATTERN = r'var download_url = \'(.+)\';' + SOLVEMEDIA_PATTERN = r'http://api.solvemedia.com/papi/challenge.script\?k=(.+)\">' + + + def setup(self): + self.multiDL = True + self.resumeDownload = True + + + def handleFree(self): + # Load main page and find file-id + a = self.load(self.pyfile.url, cookies=True, decode=True) + file_id = re.search(self.FILE_ID_PATTERN, a).group(1) + self.logDebug("file_id", file_id) + + # Click the free user button + post_data = {'op': "download1", + 'usr_login': "", + 'id': file_id, + 'fname': self.pyfile.name, + 'referer': "", + 'method_free': "+"} + b = self.load(self.pyfile.url, post=post_data, cookies=True, decode=True) + + # Do the captcha stuff + m = re.search(self.SOLVEMEDIA_PATTERN, b) + if m is None: + self.parseError("Captcha key not found") + + solvemedia = SolveMedia(self) + captcha_key = m.group(1) + self.logDebug("captcha_key", captcha_key) + captcha_challenge, captcha_response = solvemedia.challenge(captcha_key) + + # Make the downloadlink appear and load the file + m = re.search(self.RANDOM_PATTERN, b) + if m is None: + self.parseError("Random key not found") + + rand = m.group(1) + self.logDebug("rand", rand) + + post_data = {'op': "download2", + 'id': file_id, + 'rand': rand, + 'referer': self.pyfile.url, + 'method_free': "+", + 'method_premium': "", + 'adcopy_response': captcha_response, + 'adcopy_challenge': captcha_challenge, + 'down_direct': "1"} + c = self.load(self.pyfile.url, post=post_data, cookies=True, decode=True) + + m = re.search(self.LINK_PATTERN, c) + if m is None: + self.parseError("Download url not found") + + dl_url = m.group(1) + self.download(dl_url, cookies=True, disposition=True) + + if self.checkDownload({'is_html': re.compile("<html>")}) == "is_html": + self.fail("The downloaded file is html, something went wrong.") + + +getInfo = create_getInfo(KingfilesNet) |