From cece2a8ad7d1d10491e07c5494c897427e319017 Mon Sep 17 00:00:00 2001 From: flubshi Date: Thu, 20 Mar 2014 13:30:47 +0100 Subject: Add multihost plugin for free-way.me --- module/plugins/hooks/FreeWayMe.py | 41 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 module/plugins/hooks/FreeWayMe.py (limited to 'module/plugins/hooks/FreeWayMe.py') diff --git a/module/plugins/hooks/FreeWayMe.py b/module/plugins/hooks/FreeWayMe.py new file mode 100644 index 000000000..57de50d33 --- /dev/null +++ b/module/plugins/hooks/FreeWayMe.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- + +""" + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, + or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, see . + + @author: Nicolas Giese +""" + +from module.network.RequestFactory import getURL, getRequest +from module.plugins.internal.MultiHoster import MultiHoster + +class FreeWayMe(MultiHoster): + __name__ = "FreeWayMe" + __version__ = "0.11" + __type__ = "hook" + __description__ = """FreeWayMe hook plugin""" + __config__ = [("activated", "bool", "Activated", "False"), + ("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported):", "all"), + ("hosterList", "str", "Hoster list (comma separated)", ""), + ("unloadFailing", "bool", "Revert to stanard download if download fails", "False"), + ("interval", "int", "Reload interval in hours (0 to disable)", "24")] + __author_name__ = ("Nicolas Giese") + __author_mail__ = ("james@free-way.me") + + def getHoster(self): + req = getRequest() + hostis = req.load("https://www.free-way.me/ajax/jd.php", get={"id": 3}).replace("\"", "").strip() + req.close() + self.logDebug("hosters: %s" % hostis) + return [x.strip() for x in hostis.split(",") if x.strip()] -- cgit v1.2.3 From 3a8d1ab28eb9d9cd1cd8fadf7e88289e323e66dc Mon Sep 17 00:00:00 2001 From: flubshi Date: Thu, 20 Mar 2014 14:30:46 +0100 Subject: Improve free-way plugin (thanks stickell for your comments!) --- module/plugins/hooks/FreeWayMe.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'module/plugins/hooks/FreeWayMe.py') diff --git a/module/plugins/hooks/FreeWayMe.py b/module/plugins/hooks/FreeWayMe.py index 57de50d33..30d76cb8e 100644 --- a/module/plugins/hooks/FreeWayMe.py +++ b/module/plugins/hooks/FreeWayMe.py @@ -17,7 +17,7 @@ @author: Nicolas Giese """ -from module.network.RequestFactory import getURL, getRequest +from module.network.RequestFactory import getURL from module.plugins.internal.MultiHoster import MultiHoster class FreeWayMe(MultiHoster): @@ -34,8 +34,6 @@ class FreeWayMe(MultiHoster): __author_mail__ = ("james@free-way.me") def getHoster(self): - req = getRequest() - hostis = req.load("https://www.free-way.me/ajax/jd.php", get={"id": 3}).replace("\"", "").strip() - req.close() + hostis = getURL("https://www.free-way.me/ajax/jd.php", get={"id": 3}).replace("\"", "").strip() self.logDebug("hosters: %s" % hostis) return [x.strip() for x in hostis.split(",") if x.strip()] -- cgit v1.2.3