diff options
author | z00nx <z00nx0@gmail.com> | 2013-01-11 08:56:40 +0100 |
---|---|---|
committer | z00nx <z00nx0@gmail.com> | 2013-01-11 08:56:40 +0100 |
commit | 6672e9690f79569f55a2afbb2575d7c671d82812 (patch) | |
tree | b48f19448f3ec62f209d03a75ce050331854e6b0 /module/plugins/crypter | |
parent | version bump (diff) | |
download | pyload-6672e9690f79569f55a2afbb2575d7c671d82812.tar.xz |
Added LetitbitNetFolder decrypter
Diffstat (limited to 'module/plugins/crypter')
-rw-r--r-- | module/plugins/crypter/LetitbitNetFolder.py | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/module/plugins/crypter/LetitbitNetFolder.py b/module/plugins/crypter/LetitbitNetFolder.py new file mode 100644 index 000000000..68aad9dd7 --- /dev/null +++ b/module/plugins/crypter/LetitbitNetFolder.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- + +import re +from module.plugins.Crypter import Crypter + + +class LetitbitNetFolder(Crypter): + __name__ = "LetitbitNetFolder" + __type__ = "crypter" + __pattern__ = r"http://(?:www\.)?letitbit.net/folder/\w+" + __version__ = "0.1" + __description__ = """Letitbit.net Folder Plugin""" + __author_name__ = ("DHMH", "z00nx") + __author_mail__ = ("webmaster@pcProfil.de", "z00nx0@gmail.com") + + FOLDER_PATTERN = r'<table>(.*)</table>' + LINK_PATTERN = r'<a href="([^"]+)" target="_blank">' + + def decrypt(self, pyfile): + html = self.load(self.pyfile.url) + + new_links = [] + + folder = re.search(self.FOLDER_PATTERN, html, re.DOTALL) + if folder is None: + self.fail("Parse error (FOLDER)") + + new_links.extend(re.findall(self.LINK_PATTERN, folder.group(0))) + + if new_links: + self.core.files.addLinks(new_links, self.pyfile.package().id) + else: + self.fail('Could not extract any links') |