summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/account/KingfilesNet.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugins/account/KingfilesNet.py')
-rw-r--r--pyload/plugins/account/KingfilesNet.py48
1 files changed, 22 insertions, 26 deletions
diff --git a/pyload/plugins/account/KingfilesNet.py b/pyload/plugins/account/KingfilesNet.py
index 1ec0f8d8a..ebd5baec3 100644
--- a/pyload/plugins/account/KingfilesNet.py
+++ b/pyload/plugins/account/KingfilesNet.py
@@ -7,19 +7,20 @@ from pyload.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo
class KingfilesNet(SimpleHoster):
- __name__ = "KingfilesNet"
- __type__ = "hoster"
- __version__ = "0.01"
+ __name__ = "KingfilesNet"
+ __type__ = "hoster"
+ __version__ = "0.04"
__pattern__ = r'http://(?:www\.)?kingfiles\.net/(?P<ID>\w{12})'
__description__ = """Kingfiles.net hoster plugin"""
- __authors__ = [("zapp-brannigan", "fuerst.reinje@web.de"),
- ("Walter Purcaro", "vuolter@gmail.com")]
+ __license__ = "GPLv3"
+ __authors__ = [("zapp-brannigan", "fuerst.reinje@web.de"),
+ ("Walter Purcaro", "vuolter@gmail.com")]
- FILE_NAME_PATTERN = r'name="fname" value="(?P<N>.+?)">'
- FILE_SIZE_PATTERN = r'>Size: .+?">(?P<S>[\d.]+) (?P<U>\w+)'
+ NAME_PATTERN = r'name="fname" value="(?P<N>.+?)">'
+ SIZE_PATTERN = r'>Size: .+?">(?P<S>[\d.,]+) (?P<U>[\w^_]+)'
OFFLINE_PATTERN = r'>(File Not Found</b><br><br>|File Not Found</h2>)'
@@ -37,31 +38,26 @@ class KingfilesNet(SimpleHoster):
# Click the free user button
post_data = {'op': "download1",
'usr_login': "",
- 'id': file_info['ID'],
+ 'id': self.info['ID'],
'fname': self.pyfile.name,
'referer': "",
'method_free': "+"}
- b = self.load(self.pyfile.url, post=post_data, cookies=True, decode=True)
- solvemedia = SolveMedia(self)
-
- captcha_key = solvemedia.detect_key()
- if captcha_key is None:
- self.parseError("SolveMedia key not found")
+ self.html = self.load(self.pyfile.url, post=post_data, cookies=True, decode=True)
- self.logDebug("captcha_key", captcha_key)
- captcha_challenge, captcha_response = solvemedia.challenge(captcha_key)
+ solvemedia = SolveMedia(self)
+ captcha_challenge, captcha_response = solvemedia.challenge()
# Make the downloadlink appear and load the file
- m = re.search(self.RAND_ID_PATTERN, b)
+ m = re.search(self.RAND_ID_PATTERN, self.html)
if m is None:
- self.parseError("Random key not found")
+ self.error(_("Random key not found"))
rand = m.group(1)
- self.logDebug("rand", rand)
+ self.logDebug("rand = ", rand)
post_data = {'op': "download2",
- 'id': file_id,
+ 'id': self.info['ID'],
'rand': rand,
'referer': self.pyfile.url,
'method_free': "+",
@@ -69,18 +65,18 @@ class KingfilesNet(SimpleHoster):
'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)
+ self.html = self.load(self.pyfile.url, post=post_data, cookies=True, decode=True)
+
+ m = re.search(self.LINK_PATTERN, self.html)
if m is None:
- self.parseError("Download url not found")
+ self.error(_("Download url not found"))
- dl_url = m.group(1)
- self.download(dl_url, cookies=True, disposition=True)
+ self.download(m.group(1), cookies=True, disposition=True)
check = self.checkDownload({'html': re.compile("<html>")})
if check == "html":
- self.parseError("Downloaded file is an html file")
+ self.error(_("Downloaded file is an html page"))
getInfo = create_getInfo(KingfilesNet)