# -*- coding: utf-8 -*- import re from urlparse import urljoin from pyload.plugin.internal.SimpleCrypter import SimpleCrypter class CloudzillaTo(SimpleHoster): __name__ = "CloudzillaTo" __type__ = "crypter" __version__ = "0.02" __pattern__ = r'http://(?:www\.)?cloudzilla\.to/share/folder/(?P[\w^_]+)' __description__ = """Cloudzilla.to folder decrypter plugin""" __license__ = "GPLv3" __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] INFO_PATTERN = r'File not found...<' LINK_PATTERN = r'' PASSWORD_PATTERN = r'
' def checkErrors(self): m = re.search(self.PASSWORD_PATTERN, self.html) if m: self.html = self.load(self.pyfile.url, get={'key': self.getPassword()}) if re.search(self.PASSWORD_PATTERN, self.html): self.retry(reason="Wrong password")