# -*- coding: utf-8 -*-
import re
from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo
class SendspaceCom(SimpleHoster):
    __name__    = "SendspaceCom"
    __type__    = "hoster"
    __version__ = "0.20"
    __status__  = "testing"
    __pattern__ = r'https?://(?:www\.)?sendspace\.com/file/\w+'
    __config__  = [("activated"   , "bool", "Activated"                                        , True),
                   ("use_premium" , "bool", "Use premium account if available"                 , True),
                   ("fallback"    , "bool", "Fallback to free download if premium fails"       , True),
                   ("chk_filesize", "bool", "Check file size"                                  , True),
                   ("max_wait"    , "int" , "Reconnect if waiting time is greater than minutes", 10  )]
    __description__ = """Sendspace.com hoster plugin"""
    __license__     = "GPLv3"
    __authors__     = [("zoidberg", "zoidberg@mujmail.cz")]
    NAME_PATTERN    = r'
\s*<(?:b|strong)>(?P[^<]+)'
    SIZE_PATTERN    = r'\s*File Size:\s*(?P[\d.,]+)(?P[\w^_]+)\s*
'
    OFFLINE_PATTERN = r'Sorry, the file you requested is not available.
'
    LINK_FREE_PATTERN = r'
'
    USER_CAPTCHA_PATTERN = r'))  | '
    def handle_free(self, pyfile):
        m = re.search(self.LINK_FREE_PATTERN, self.data)
        if m is not None:
            self.link = m.group(1)
        else:
            m = re.search(self.CAPTCHA_PATTERN, self.data)
            if m is None:
                params = {'download': "Regular Download"}
            else:
                captcha_url1 = "http://www.sendspace.com/" + m.group(1)
                m = re.search(self.USER_CAPTCHA_PATTERN, self.data)
                captcha_url2 = "http://www.sendspace.com/" + m.group(1)
                params = {'captcha_hash': m.group(2),
                          'captcha_submit': 'Verify',
                          'captcha_answer': self.captcha.decrypt(captcha_url1) + " " + self.captcha.decrypt(captcha_url2)}
            self.log_debug(params)
            self.data = self.load(pyfile.url, post=params)
            m = re.search(self.LINK_FREE_PATTERN, self.data)
            if m is None:
                self.retry_captcha()
            else:
                self.link = m.group(1)
getInfo = create_getInfo(SendspaceCom)