summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
authorGravatar synweap15 <shamdog+github@gmail.com> 2014-12-30 21:25:24 +0100
committerGravatar synweap15 <shamdog+github@gmail.com> 2014-12-30 21:25:24 +0100
commitb9c2bcfc1862b4bef6feff224603420ab2eed6d9 (patch)
tree0716439abac1a427f269eb57566768231fa202c2 /module
parentMerge pull request #1 from pyload/stable (diff)
downloadpyload-b9c2bcfc1862b4bef6feff224603420ab2eed6d9.tar.xz
fix MultiHoster to MultiHook transition
Diffstat (limited to 'module')
-rw-r--r--module/plugins/hooks/NoPremiumPl.py23
1 files changed, 10 insertions, 13 deletions
diff --git a/module/plugins/hooks/NoPremiumPl.py b/module/plugins/hooks/NoPremiumPl.py
index 84a019b8d..7742e03f7 100644
--- a/module/plugins/hooks/NoPremiumPl.py
+++ b/module/plugins/hooks/NoPremiumPl.py
@@ -1,31 +1,28 @@
# -*- coding: utf-8 -*-
-from module.plugins.internal.MultiHoster import MultiHoster
-from module.network.RequestFactory import getURL
+from module.plugins.internal.MultiHook import MultiHook
from module.common.json_layer import json_loads as loads
-class NoPremiumPl(MultiHoster):
+class NoPremiumPl(MultiHook):
__name__ = "NoPremiumPl"
__version__ = "0.01"
__type__ = "hook"
- __config__ = [("activated", "bool", "Activated", "False"),
+ __config__ = [("activated", "bool", "Activated", False),
("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported):", "all"),
("hosterList", "str", "Hoster list (comma separated)", ""),
- ("unloadFailing", "bool", "Try standard download if download fails", "False"),
- ("interval", "int", "Reload supported hosts interval in hours (0 to disable)", "24")]
+ ("unloadFailing", "bool", "Try standard download if download fails", False),
+ ("interval", "int", "Reload supported hosts interval in hours (0 to disable)", 24)]
__description__ = "NoPremium.pl hook"
__license__ = "GPLv3"
__authors__ = [("goddie", "dev@nopremium.pl")]
- def getHoster(self):
- hostings = loads(getURL("https://www.nopremium.pl/clipboard.php?json=3").strip())
-
- return [domain for row in hostings for domain in row["domains"] if row["sdownload"] == "0"]
-
- def getHosterCached(self):
- return self.getHoster()
+ def getHosters(self):
+ hostings = loads(self.getURL("https://www.nopremium.pl/clipboard.php?json=3").strip())
+ hostings_domains = [domain for row in hostings for domain in row["domains"] if row["sdownload"] == "0"]
+ self.logDebug(hostings_domains)
+ return hostings_domains