# -*- coding: utf-8 -*- import re from module.plugins.internal.SimpleHoster import SimpleHoster class VimeoCom(SimpleHoster): __name__ = "VimeoCom" __type__ = "hoster" __version__ = "0.09" __status__ = "testing" __pattern__ = r'https?://(?:www\.)?(player\.)?vimeo\.com/(video/)?(?P\d+)' __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__ = """Vimeo.com hoster plugin""" __license__ = "GPLv3" __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] NAME_PATTERN = r'(?P<N>.+?) on Vimeo<' OFFLINE_PATTERN = r'class="exception_header"' TEMP_OFFLINE_PATTERN = r'Please try again in a few minutes.<' URL_REPLACEMENTS = [(__pattern__ + ".*", r'https://www.vimeo.com/\g<ID>')] COOKIES = [("vimeo.com", "language", "en")] def setup(self): self.resume_download = True self.multiDL = True self.chunk_limit = -1 def handle_free(self, pyfile): password = self.get_password() if self.js and 'class="btn iconify_down_b"' in self.data: html = self.js.eval(self.load(pyfile.url, get={'action': "download", 'password': password})) pattern = r'href="(?P<URL>http://vimeo\.com.+?)".*?\>(?P<QL>.+?) ' else: html = self.load("https://player.vimeo.com/video/" + self.info['pattern']['ID'], get={'password': password}) pattern = r'"(?P<QL>\w+)":{"profile".*?"(?P<URL>http://pdl\.vimeocdn\.com.+?)"' link = dict((l.group('QL').lower(), l.group('URL')) for l in re.finditer(pattern, html)) if self.config.get('original'): if "original" in link: self.link = link[q] return else: self.log_info(_("Original file not downloadable")) quality = self.config.get('quality') if quality == "Highest": qlevel = ("hd", "sd", "mobile") elif quality == "Lowest": qlevel = ("mobile", "sd", "hd") else: qlevel = quality.lower() for q in qlevel: if q in link: self.link = link[q] return else: self.log_info(_("No %s quality video found") % q.upper()) else: self.fail(_("No video found!"))