diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-06 03:33:26 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-06 03:33:26 +0200 |
commit | b81d202ab0eeb692a85ee4dda946810fb9886f59 (patch) | |
tree | 2f73c35cffd246bc1b4a4af0eb2e6b7f1a81b459 /module/plugins/hooks/HighWayMe.py | |
parent | Merge pull request #1455 from EvolutionClip/stable (diff) | |
download | pyload-b81d202ab0eeb692a85ee4dda946810fb9886f59.tar.xz |
[HighWayMe] Cleanup
Diffstat (limited to 'module/plugins/hooks/HighWayMe.py')
-rw-r--r-- | module/plugins/hooks/HighWayMe.py | 55 |
1 files changed, 26 insertions, 29 deletions
diff --git a/module/plugins/hooks/HighWayMe.py b/module/plugins/hooks/HighWayMe.py index 2a1ff2991..7d5c88ecc 100644 --- a/module/plugins/hooks/HighWayMe.py +++ b/module/plugins/hooks/HighWayMe.py @@ -1,29 +1,26 @@ -+# -*- coding: utf-8 -*- -+ -+from module.common.json_layer import json_loads -+from module.plugins.internal.MultiHook import MultiHook -+ -+ -+class HighWayMeHook(MultiHook): -+ __name__ = "HighWayMeHook" -+ __type__ = "hook" -+ __version__ = "0.01" -+ -+ __config__ = [("pluginmode" , "all;listed;unlisted", "Use for plugins" , "all"), -+ ("pluginlist" , "str" , "Plugin list (comma separated)" , "" ), -+ ("revertfailed" , "bool" , "Revert to standard download if fails", True ), -+ ("reload" , "bool" , "Reload plugin list" , True ), -+ ("reloadinterval", "int" , "Reload interval in hours" , 12 )] -+ -+ __description__ = """High-Way.Me hook plugin""" -+ __license__ = "GPLv3" -+ __authors__ = [("EvolutionClip", "evolutionclip@live.de")] -+ -+ -+ def getHosters(self): -+ json_data = self.getURL("https://high-way.me/api.php", get={'hoster': 1}) -+ json_data = json_loads(json_data) -+ -+ host_list = [element['name'] for element in json_data['hoster']] -+ -+ return host_list +# -*- coding: utf-8 -*- + +from module.common.json_layer import json_loads +from module.plugins.internal.MultiHook import MultiHook + + +class HighWayMeHook(MultiHook): + __name__ = "HighWayMeHook" + __type__ = "hook" + __version__ = "0.02" + + __config__ = [("pluginmode" , "all;listed;unlisted", "Use for plugins" , "all"), + ("pluginlist" , "str" , "Plugin list (comma separated)" , "" ), + ("revertfailed" , "bool" , "Revert to standard download if fails", True ), + ("reload" , "bool" , "Reload plugin list" , True ), + ("reloadinterval", "int" , "Reload interval in hours" , 12 )] + + __description__ = """High-Way.me hook plugin""" + __license__ = "GPLv3" + __authors__ = [("EvolutionClip", "evolutionclip@live.de")] + + + def getHosters(self): + json_data = json_loads(self.getURL("https://high-way.me/api.php", + get={'hoster': 1})) + return [element['name'] for element in json_data['hoster']] |