# -*- coding: utf-8 -*- import re import time import urllib from module.network.RequestFactory import getURL as get_url from module.plugins.captcha.ReCaptcha import ReCaptcha from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo class ShareonlineBiz(SimpleHoster): __name__ = "ShareonlineBiz" __type__ = "hoster" __version__ = "0.63" __status__ = "testing" __pattern__ = r'https?://(?:www\.)?(share-online\.biz|egoshare\.com)/(download\.php\?id=|dl/)(?P\w+)' __config__ = [("activated" , "bool", "Activated" , True), ("use_premium", "bool", "Use premium account if available", True)] __description__ = """Shareonline.biz hoster plugin""" __license__ = "GPLv3" __authors__ = [("spoob", "spoob@pyload.org"), ("mkaay", "mkaay@mkaay.de"), ("zoidberg", "zoidberg@mujmail.cz"), ("Walter Purcaro", "vuolter@gmail.com")] URL_REPLACEMENTS = [(__pattern__ + ".*", "http://www.share-online.biz/dl/\g")] CHECK_TRAFFIC = True RECAPTCHA_KEY = "6LdatrsSAAAAAHZrB70txiV5p-8Iv8BtVxlTtjKX" ERROR_PATTERN = r'

Information:

\s*
\s*(.*?)' @classmethod def api_info(cls, url): info = {} field = get_url("http://api.share-online.biz/linkcheck.php", get={'md5' : "1", 'links': re.match(cls.__pattern__, url).group("ID")}).split(";") try: if field[1] == "OK": info['fileid'] = field[0] info['status'] = 2 info['name'] = field[2] info['size'] = field[3] #: In bytes info['md5'] = field[4].strip().lower().replace("\n\n", "") #: md5 elif field[1] in ("DELETED", "NOTFOUND"): info['status'] = 1 except IndexError: pass return info def setup(self): self.resume_download = self.premium self.multiDL = False def handle_captcha(self): recaptcha = ReCaptcha(self) response, challenge = recaptcha.challenge(self.RECAPTCHA_KEY) m = re.search(r'var wait=(\d+);', self.data) self.set_wait(int(m.group(1)) if m else 30) res = self.load("%s/free/captcha/%d" % (self.pyfile.url, int(time.time() * 1000)), post={'dl_free' : "1", 'recaptcha_challenge_field': challenge, 'recaptcha_response_field' : response}) if res != "0": self.captcha.correct() return res else: self.retry_captcha() def handle_free(self, pyfile): self.wait(3) self.data = self.load("%s/free/" % pyfile.url, post={'dl_free': "1", 'choice': "free"}) self.check_errors() res = self.handle_captcha() self.link = res.decode('base64') if not self.link.startswith("http://"): self.error(_("Invalid url")) self.wait() def check_download(self): check = self.check_file({'cookie': re.compile(r'
Share-Online")}) if check == "cookie": self.retry_captcha(5, 60, _("Cookie failure")) elif check == "fail": self.retry_captcha(5, 5 * 60, _("Download failed")) return super(ShareonlineBiz, self).check_download() def handle_premium(self, pyfile): #: Should be working better loading (account) api internally self.api_data = dlinfo = {} html = self.load("https://api.share-online.biz/account.php", get={'username': self.account.user, 'password': self.account.get_login('password'), 'act' : "download", 'lid' : self.info['fileid']}) self.log_debug(html) for line in html.splitlines(): try: key, value = line.split(": ") dlinfo[key.lower()] = value except ValueError: pass if dlinfo['status'] != "online": self.offline() else: pyfile.name = dlinfo['name'] pyfile.size = int(dlinfo['size']) self.link = dlinfo['url'] if self.link == "server_under_maintenance": self.temp_offline() else: self.multiDL = True def check_errors(self): m = re.search(r"/failure/(.*?)/", self.req.lastEffectiveURL) if m is None: self.info.pop('error', None) return errmsg = m.group(1).lower() try: self.log_error(errmsg, re.search(self.ERROR_PATTERN, self.data).group(1)) except Exception: self.log_error(_("Unknown error occurred"), errmsg) if errmsg == "invalid": self.fail(_("File not available")) elif errmsg in ("freelimit", "size", "proxy"): self.fail(_("Premium account needed")) elif errmsg in ("expired", "server"): self.retry(wait=600, msg=errmsg) elif errmsg == "full": self.retry(10, 600, _("Server is full")) elif 'slot' in errmsg: self.wait(3600, reconnect=True) self.restart(errmsg) else: self.wait(60, reconnect=True) self.restart(errmsg) getInfo = create_getInfo(ShareonlineBiz)