diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-06 02:30:23 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-06-06 02:30:23 +0200 |
commit | 7f371349f8178b569c38a4c55ad01fdad4122c62 (patch) | |
tree | 124fb6773c3141f1f6fbf4bc2ce1460744f2962e /module/plugins/hooks | |
parent | Fix https://github.com/pyload/pyload/issues/1452 (diff) | |
parent | Added Comment (diff) | |
download | pyload-7f371349f8178b569c38a4c55ad01fdad4122c62.tar.xz |
Merge pull request #1455 from EvolutionClip/stable
Added High-Way.Me
Diffstat (limited to 'module/plugins/hooks')
-rw-r--r-- | module/plugins/hooks/HighWayMe.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/module/plugins/hooks/HighWayMe.py b/module/plugins/hooks/HighWayMe.py new file mode 100644 index 000000000..2a1ff2991 --- /dev/null +++ b/module/plugins/hooks/HighWayMe.py @@ -0,0 +1,29 @@ ++# -*- 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 |