# -*- coding: utf-8 -*-
from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo
class DataportCz(SimpleHoster):
    __name__    = "DataportCz"
    __type__    = "hoster"
    __version__ = "0.44"
    __status__  = "testing"
    __pattern__ = r'http://(?:www\.)?dataport\.cz/file/(.+)'
    __config__  = [("activated"  , "bool", "Activated"                       , True),
                   ("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 handle_free(self, pyfile):
        captchas = {'1': "jkeG", '2': "hMJQ", '3': "vmEK", '4': "ePQM", '5': "blBd"}
        action, inputs = self.parse_html_form('free_download_form')
        self.log_debug(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 not found"))
        self.download("http://www.dataport.cz%s" % action, post=inputs)
        check = self.check_file({'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.retry_captcha()
        elif check == "slot":
            self.log_debug("No free slots - wait 60s and retry")
            self.retry(wait=60)
getInfo = create_getInfo(DataportCz)