summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/OronComFolder.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/crypter/OronComFolder.py')
-rwxr-xr-xmodule/plugins/crypter/OronComFolder.py32
1 files changed, 0 insertions, 32 deletions
diff --git a/module/plugins/crypter/OronComFolder.py b/module/plugins/crypter/OronComFolder.py
deleted file mode 100755
index 57b273163..000000000
--- a/module/plugins/crypter/OronComFolder.py
+++ /dev/null
@@ -1,32 +0,0 @@
-# -*- 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