# -*- coding: utf-8 -*- import re from pyload.plugin.captcha.ReCaptcha import ReCaptcha from pyload.plugin.internal.SimpleHoster import SimpleHoster class NitroflareCom(SimpleHoster): __name = "NitroflareCom" __type = "hoster" __version = "0.09" __pattern = r'https?://(?:www\.)?nitroflare\.com/view/(?P[\w^_]+)' __config = [("use_premium", "bool", "Use premium account if available", True)] __description = """Nitroflare.com hoster plugin""" __license = "GPLv3" __authors = [("sahil", "sahilshekhawat01@gmail.com"), ("Walter Purcaro", "vuolter@gmail.com"), ("Stickell", "l.stickell@yahoo.it")] # URL_REPLACEMENTS = [("http://", "https://")] INFO_PATTERN = r'title="(?P.+?)".+>(?P[\d.,]+) (?P[\w^_]+)' OFFLINE_PATTERN = r'>File doesn\'t exist' LINK_FREE_PATTERN = r'(https?://[\w\-]+\.nitroflare\.com/.+?)"' RECAPTCHA_KEY = "6Lenx_USAAAAAF5L1pmTWvWcH73dipAEzNnmNLgy" PREMIUM_ONLY_PATTERN = r'This file is available with Premium only' WAIT_PATTERN = r'You have to wait .+?<' ERROR_PATTERN = r'downloading is not possible' def checkErrors(self): if not self.html: return if not self.premium and re.search(self.PREMIUM_ONLY_PATTERN, self.html): self.fail(_("Link require a premium account to be handled")) elif hasattr(self, 'WAIT_PATTERN'): m = re.search(self.WAIT_PATTERN, self.html) if m: wait_time = sum(int(v) * {"hr": 3600, "hour": 3600, "min": 60, "sec": 1}[u.lower()] for v, u in re.findall(r'(\d+)\s*(hr|hour|min|sec)', m.group(0), re.I)) self.wait(wait_time, wait_time > 300) return elif hasattr(self, 'ERROR_PATTERN'): m = re.search(self.ERROR_PATTERN, self.html) if m: errmsg = self.info['error'] = m.group(1) self.error(errmsg) self.info.pop('error', None) def handle_free(self, pyfile): # used here to load the cookies which will be required later self.load(pyfile.url, post={'goToFreePage': ""}) self.load("http://nitroflare.com/ajax/setCookie.php", post={'fileId': self.info['pattern']['ID']}) self.html = self.load("http://nitroflare.com/ajax/freeDownload.php", post={'method': "startTimer", 'fileId': self.info['pattern']['ID']}) self.checkErrors() try: js_file = self.load("http://nitroflare.com/js/downloadFree.js?v=1.0.1") var_time = re.search("var time = (\\d+);", js_file) wait_time = int(var_time.groups()[0]) except Exception: wait_time = 60 self.wait(wait_time) recaptcha = ReCaptcha(self) response, challenge = recaptcha.challenge(self.RECAPTCHA_KEY) self.html = self.load("http://nitroflare.com/ajax/freeDownload.php", post={'method' : "fetchDownload", 'recaptcha_challenge_field': challenge, 'recaptcha_response_field' : response}) if "The captcha wasn't entered correctly" in self.html: self.logWarning("The captcha wasn't entered correctly") return if "You have to fill the captcha" in self.html: self.logWarning("Captcha unfilled") return m = re.search(self.LINK_FREE_PATTERN, self.html) if m: self.link = m.group(1) else: self.logError("Unable to detect direct link")