diff options
author | Pedro Algarvio <pedro@algarvio.me> | 2012-01-22 18:31:46 +0100 |
---|---|---|
committer | Pedro Algarvio <pedro@algarvio.me> | 2012-01-22 18:31:46 +0100 |
commit | 4741b4f8816bff7b0c803ac057c60b35e9909ad4 (patch) | |
tree | 775293bbd0453cae01b73d3c6bcef88bd26a6900 /module/plugins/crypter/OronComFolder.py | |
parent | Merge branches. (diff) | |
parent | undelete DlFreeFr (diff) | |
download | pyload-4741b4f8816bff7b0c803ac057c60b35e9909ad4.tar.xz |
Merge stable.
Diffstat (limited to 'module/plugins/crypter/OronComFolder.py')
-rwxr-xr-x | module/plugins/crypter/OronComFolder.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/module/plugins/crypter/OronComFolder.py b/module/plugins/crypter/OronComFolder.py new file mode 100755 index 000000000..57b273163 --- /dev/null +++ b/module/plugins/crypter/OronComFolder.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- + +import re + +from module.plugins.Crypter import Crypter + +class OronComFolder(Crypter): + __name__ = "OronComFolder" + __type__ = "crypter" + __pattern__ = r"http://(?:www\.)?oron.com/folder/\w+" + __version__ = "0.1" + __description__ = """Oron.com Folder Plugin""" + __author_name__ = ("DHMH") + __author_mail__ = ("webmaster@pcProfil.de") + + FOLDER_PATTERN = r'<table width="100%" cellpadding="7" cellspacing="1" class="tbl2">(.*)</table>\n </div>' + 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')
\ No newline at end of file |