# -*- coding: utf-8 -*- """ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, see . @author: zoidberg """ import re from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo from module.network.RequestFactory import getURL class UlozTo(SimpleHoster): __name__ = "UlozTo" __type__ = "hoster" __pattern__ = r"http://(\w*\.)?(uloz\.to|ulozto\.(cz|sk|net)|bagruj.cz|zachowajto.pl)/.*" __version__ = "0.74" __description__ = """uloz.to""" __config__ = [("reuseCaptcha", "bool", "Reuse captcha", "True"), ("captchaUser", "str", "captcha_user", ""), ("captchaNb", "str", "captcha_nb", "")] __author_name__ = ("zoidberg") FILE_URL_PATTERN = r'
(?P[^<]+)' CAPTCHA_PATTERN = r'Captcha' FILE_OFFLINE_PATTERN = r'http://www.uloz.to/(neexistujici|smazano|nenalezeno)' PASSWD_PATTERN = r'' LIVE_URL_PATTERN = r'' VIPLINK_PATTERN = r'' def setup(self): self.multiDL = False def process(self, pyfile): header = self.load(pyfile.url, just_header=True) if "location" in header: self.logDebug('LOCATION: ' + header['location']) if "utm_source=old" in header['location'] or re.search(self.FILE_OFFLINE_PATTERN, header['location']): self.offline() self.html = self.load(pyfile.url, decode=True) if self.PASSWD_PATTERN in self.html: self.fail("Password protected link") if re.search(self.VIPLINK_PATTERN, self.html): self.html = self.load(pyfile.url, get={"disclaimer": "1"}) found = re.search(self.LIVE_URL_PATTERN, self.html) if found is not None: # Uloz.to LIVE parsed_url = found.group(1) self.logDebug("LIVE URL:" + parsed_url) found = re.search(self.LIVE_NAME_PATTERN, self.html) if found is None: self.fail("Parse error (LIVE_NAME)") pyfile.name = found.group(1) self.log.debug("LIVE NAME:" + pyfile.name) self.download(parsed_url) else: # Uloz.to DATA # parse the name from the site and set attribute in pyfile found = re.search(self.FILE_NAME_PATTERN, self.html) if found is None: self.fail("Parse error (FILENAME)") pyfile.name = found.group(1) self.log.debug("PARSED_NAME:" + pyfile.name) found = re.search(self.FILE_URL_PATTERN, self.html) if found is None: self.fail("Parse error (URL)") parsed_url = found.group(1) self.log.debug("PARSED_URL:" + parsed_url) # get and decrypt captcha reuse_captcha = self.getConfig("reuseCaptcha") captcha = self.getConfig("captchaUser") captcha_nb = self.getConfig("captchaNb") captcha_url = "DUMMY" if not reuse_captcha or not captcha or not captcha_nb: found = re.search(self.CAPTCHA_PATTERN, self.html) if found is None: self.fail("Parse error (CAPTCHA)") captcha_url = found.group(1) captcha = self.decryptCaptcha(captcha_url) found = re.search(self.CAPTCHA_NB_PATTERN, self.html) if found is None: self.fail("Parse error (CAPTCHA_NB)") captcha_nb = found.group(1) self.log.debug('CAPTCHA_URL:' + captcha_url + ' CAPTCHA:' + captcha + ' CAPTCHA_NB:' + captcha_nb) # download the file, destination is determined by pyLoad self.download(parsed_url, post={ "captcha_user": captcha, "captcha_nb": captcha_nb }) check = self.checkDownload({ "wrong_captcha": re.compile(self.CAPTCHA_PATTERN), "offline": re.compile(self.FILE_OFFLINE_PATTERN), "passwd": self.PASSWD_PATTERN }) if check == "wrong_captcha": if reuse_captcha: self.setConfig("captchaUser", "") self.setConfig("captchaNb", "") self.invalidCaptcha() self.retry(reason="Wrong captcha code") elif check == "offline": self.offline() elif check == "passwd": self.fail("Password protected") if reuse_captcha: self.setConfig("captchaUser", captcha) self.setConfig("captchaNb", captcha_nb) getInfo = create_getInfo(UlozTo)