# -*- coding: utf-8 -*-
from pyload.plugin.internal.SimpleHoster import SimpleHoster
class DataportCz(SimpleHoster):
__name = "DataportCz"
__type = "hoster"
__version = "0.41"
__pattern = r'http://(?:www\.)?dataport\.cz/file/(.+)'
__config = [("use_premium", "bool", "Use premium account if available", True)]
__description = """Dataport.cz hoster plugin"""
__license = "GPLv3"
__authors = [("zoidberg", "zoidberg@mujmail.cz")]
NAME_PATTERN = r'(?P[^<]+)'
SIZE_PATTERN = r'
Velikost | \s*(?P[^<]+) | '
OFFLINE_PATTERN = r'Soubor nebyl nalezen
'
CAPTCHA_PATTERN = r'\s*(\d+)
'
def handleFree(self, pyfile):
captchas = {"1": "jkeG", "2": "hMJQ", "3": "vmEK", "4": "ePQM", "5": "blBd"}
for _i in xrange(60):
action, inputs = self.parseHtmlForm('free_download_form')
self.logDebug(action, inputs)
if not action or not inputs:
self.error(_("free_download_form"))
if "captchaId" in inputs and inputs['captchaId'] in captchas:
inputs['captchaCode'] = captchas[inputs['captchaId']]
else:
self.error(_("captcha"))
self.download("http://www.dataport.cz%s" % action, post=inputs)
check = self.checkDownload({"captcha": 'alert("\u0160patn\u011b opsan\u00fd k\u00f3d z obr\u00e1zu");',
"slot" : 'alert("Je n\u00e1m l\u00edto, ale moment\u00e1ln\u011b nejsou'})
if check == "captcha":
self.error(_("invalid captcha"))
elif check == "slot":
self.logDebug("No free slots - wait 60s and retry")
self.wait(60, False)
self.html = self.load(pyfile.url, decode=True)
continue
else:
break