From 14d3b88fc4bae2e25db8b418a790ef8dd1a76444 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Sun, 19 Sep 2010 23:56:13 +0200 Subject: netfolder, hotfile folder --- module/plugins/crypter/HotfileFolderCom.py | 25 +++++++++++++++++++++++++ module/plugins/crypter/NetfolderIn.py | 25 +++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 module/plugins/crypter/HotfileFolderCom.py create mode 100644 module/plugins/crypter/NetfolderIn.py (limited to 'module/plugins/crypter') diff --git a/module/plugins/crypter/HotfileFolderCom.py b/module/plugins/crypter/HotfileFolderCom.py new file mode 100644 index 000000000..00771e2a3 --- /dev/null +++ b/module/plugins/crypter/HotfileFolderCom.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import re + +from module.plugins.Crypter import Crypter + +class HotfileFolderCom(Crypter): + __name__ = "HotfileFolderCom" + __type__ = "crypter" + __pattern__ = r"http://(?:www\.)?hotfile.com/list/\w+/\w+" + __version__ = "0.1" + __description__ = """HotfileFolder Download Plugin""" + __author_name__ = ("RaNaN") + __author_mail__ = ("RaNaN@pyload.org") + + def decrypt(self, pyfile): + html = self.load(pyfile.url) + + name = re.findall(r'([^<]+)', html, re.MULTILINE)[0].replace("/", "") + new_links = re.findall(r'href="(http://(www.)?hotfile\.com/dl/\d+/[0-9a-zA-Z]+[^"]+)', html) + + new_links = [x[0] for x in new_links] + + self.packages.append((name, new_links, name)) \ No newline at end of file diff --git a/module/plugins/crypter/NetfolderIn.py b/module/plugins/crypter/NetfolderIn.py new file mode 100644 index 000000000..86777c61c --- /dev/null +++ b/module/plugins/crypter/NetfolderIn.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import re + +from module.plugins.Crypter import Crypter + +class NetfolderIn(Crypter): + __name__ = "NetfolderIn" + __type__ = "crypter" + __pattern__ = r"http://(?:www\.)?netfolder.in/(\w+/\w+|folder.php)" + __version__ = "0.1" + __description__ = """NetFolder Download Plugin""" + __author_name__ = ("RaNaN") + __author_mail__ = ("RaNaN@pyload.org") + + def decrypt(self, pyfile): + html = self.load(pyfile.url) + + name = re.findall(r'([^<]+)', html)[0] + new_links = re.findall(r'href="(http://.{0,3}netload\.in/(datei|index.php?id=10&file_id=)[^"]+)', html) + + new_links = [x[0] for x in new_links] + + self.packages.append((name, new_links, name)) \ No newline at end of file -- cgit v1.2.3