diff options
author | zoidberg10 <zoidberg@mujmail.cz> | 2012-03-08 21:07:44 +0100 |
---|---|---|
committer | zoidberg10 <zoidberg@mujmail.cz> | 2012-03-08 21:07:44 +0100 |
commit | 22313b93a8d807e35d6490b8d5f83aea038c8667 (patch) | |
tree | 6bc207c544e92f0bd093324273f416e4616295d1 /module/plugins/hooks/RealdebridCom.py | |
parent | AllDebrid plugin by Andy, Voigt; closed #555; generic XFileSharingPro plugin (diff) | |
download | pyload-22313b93a8d807e35d6490b8d5f83aea038c8667.tar.xz |
multihoster config
Diffstat (limited to 'module/plugins/hooks/RealdebridCom.py')
-rw-r--r-- | module/plugins/hooks/RealdebridCom.py | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/module/plugins/hooks/RealdebridCom.py b/module/plugins/hooks/RealdebridCom.py index c57e3de52..bd3179673 100644 --- a/module/plugins/hooks/RealdebridCom.py +++ b/module/plugins/hooks/RealdebridCom.py @@ -5,12 +5,13 @@ from module.plugins.internal.MultiHoster import MultiHoster class RealdebridCom(MultiHoster): __name__ = "RealdebridCom" - __version__ = "0.4" + __version__ = "0.41" __type__ = "hook" __config__ = [("activated", "bool", "Activated", "False"), - ("https", "bool", "Enable HTTPS", "False")] - + ("https", "bool", "Enable HTTPS", "False"), + ("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported):", "all"), + ("hosterList", "str", "Hoster list (comma separated)", "")] __description__ = """Real-Debrid.com hook plugin""" __author_name__ = ("Devirex, Hazzard") __author_mail__ = ("naibaf_11@yahoo.de") @@ -21,4 +22,15 @@ class RealdebridCom(MultiHoster): https = "https" if self.getConfig("https") else "http" page = getURL(https + "://real-debrid.com/api/hosters.php").replace("\"","").strip() - return[x.strip() for x in page.split(",") if x.strip()]
\ No newline at end of file + hosters = set([x.strip() for x in page.split(",") if x.strip()]) + + configMode = self.getConfig('hosterListMode') + if configMode in ("listed", "unlisted"): + configList = set(self.getConfig('hosterList').strip().lower().replace('|',',').replace(';',',').split(',')) + configList.discard(u'') + if configMode == "listed": + hosters &= configList + else: + hosters -= configList + + return list(hosters) |