# -*- 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 class QuickshareCz(SimpleHoster): __name__ = "QuickshareCz" __type__ = "hoster" __pattern__ = r"http://.*quickshare.cz/stahnout-soubor/.*" __version__ = "0.52" __description__ = """Quickshare.cz""" __author_name__ = ("zoidberg") VAR_PATTERN = r"var ID1 = '(?P[^']+)';var ID2 = '(?P[^']+)';var ID3 = '(?P[^']+)';var ID4 = '(?P[^']+)';var ID5 = '[^']*';var UU_prihlasen = '[^']*';var UU_kredit = [^;]*;var velikost = [^;]*;var kredit_odecet = [^;]*;var CaptchaText = '(?P[^']+)';var server = '(?P[^']+)';" FILE_OFFLINE_PATTERN = r'' FILE_NAME_PATTERN = r'Název:\s*(?P[^<]+)' FILE_SIZE_PATTERN = r'Velikost:\s*(?P[0-9.]+) (?P[kKMG])i?B' def setup(self): self.multiDL = False def process(self, pyfile): self.html = self.load(pyfile.url, decode=True) self.getFileInfo() # parse the name from the site and set attribute in pyfile parsed_vars = re.search(self.VAR_PATTERN, self.html) if parsed_vars is None: self.parseError("VARs") pyfile.name = parsed_vars.group('ID3') # download the file, destination is determined by pyLoad download_url = parsed_vars.group('Server') + "/download.php" self.log.debug("File:" + pyfile.name) self.log.debug("URL:" + download_url) self.download(download_url, post={ "ID1": parsed_vars.group('ID1'), "ID2": parsed_vars.group('ID2'), "ID3": parsed_vars.group('ID3'), "ID4": parsed_vars.group('ID4') }) # check download check = self.checkDownload({ "no_slots": "obsazen na 100 %" }) if check == "no_slots": self.retry(5, 600, "No free slots") create_getInfo(QuickshareCz)