From 8e7d14bae4d3c836f029a1235eb227380acc3f75 Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Mon, 16 Feb 2015 21:59:10 +0100 Subject: Fix plugins to work on 0.4.10 --- module/plugins/hoster/KingfilesNet.py | 78 ----------------------------------- 1 file changed, 78 deletions(-) delete mode 100644 module/plugins/hoster/KingfilesNet.py (limited to 'module/plugins/hoster/KingfilesNet.py') diff --git a/module/plugins/hoster/KingfilesNet.py b/module/plugins/hoster/KingfilesNet.py deleted file mode 100644 index 73fa494b0..000000000 --- a/module/plugins/hoster/KingfilesNet.py +++ /dev/null @@ -1,78 +0,0 @@ -# -*- coding: utf-8 -*- - -import re - -from pyload.plugin.internal.captcha import SolveMedia -from pyload.plugin.internal.SimpleHoster import SimpleHoster, create_getInfo - - -class KingfilesNet(SimpleHoster): - __name__ = "KingfilesNet" - __type__ = "hoster" - __version__ = "0.07" - - __pattern__ = r'http://(?:www\.)?kingfiles\.net/(?P\w{12})' - - __description__ = """Kingfiles.net hoster plugin""" - __license__ = "GPLv3" - __authors__ = [("zapp-brannigan", "fuerst.reinje@web.de"), - ("Walter Purcaro", "vuolter@gmail.com")] - - - NAME_PATTERN = r'name="fname" value="(?P.+?)">' - SIZE_PATTERN = r'>Size: .+?">(?P[\d.,]+) (?P[\w^_]+)' - - OFFLINE_PATTERN = r'>(File Not Found

|File Not Found)' - - RAND_ID_PATTERN = r'type=\"hidden\" name=\"rand\" value=\"(.+)\">' - - LINK_FREE_PATTERN = r'var download_url = \'(.+)\';' - - - def setup(self): - self.resumeDownload = True - self.multiDL = True - - - def handleFree(self, pyfile): - # Click the free user button - post_data = {'op' : "download1", - 'usr_login' : "", - 'id' : self.info['pattern']['ID'], - 'fname' : pyfile.name, - 'referer' : "", - 'method_free': "+"} - - self.html = self.load(pyfile.url, post=post_data, cookies=True, decode=True) - - solvemedia = SolveMedia(self) - response, challenge = solvemedia.challenge() - - # Make the downloadlink appear and load the file - m = re.search(self.RAND_ID_PATTERN, self.html) - if m is None: - self.error(_("Random key not found")) - - rand = m.group(1) - self.logDebug("rand = ", rand) - - post_data = {'op' : "download2", - 'id' : self.info['pattern']['ID'], - 'rand' : rand, - 'referer' : pyfile.url, - 'method_free' : "+", - 'method_premium' : "", - 'adcopy_response' : response, - 'adcopy_challenge': challenge, - 'down_direct' : "1"} - - self.html = self.load(pyfile.url, post=post_data, cookies=True, decode=True) - - m = re.search(self.LINK_FREE_PATTERN, self.html) - if m is None: - self.error(_("Download url not found")) - - self.link = m.group(1) - - -getInfo = create_getInfo(KingfilesNet) -- cgit v1.2.3