summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/FastixRu.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-27 21:20:59 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-27 21:20:59 +0100
commit575ce629081995766a231f0a9f3e97e3b79d23b1 (patch)
tree94066e87d5af5b9b1a11012eee11fcaf78bf8c68 /module/plugins/hooks/FastixRu.py
parent[MultiHook] Crypter support (diff)
downloadpyload-575ce629081995766a231f0a9f3e97e3b79d23b1.tar.xz
Update MultiHook based hooks
Diffstat (limited to 'module/plugins/hooks/FastixRu.py')
-rw-r--r--module/plugins/hooks/FastixRu.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/module/plugins/hooks/FastixRu.py b/module/plugins/hooks/FastixRu.py
index 73297eb23..a4b423fb7 100644
--- a/module/plugins/hooks/FastixRu.py
+++ b/module/plugins/hooks/FastixRu.py
@@ -1,17 +1,16 @@
# -*- coding: utf-8 -*-
from module.common.json_layer import json_loads
-from module.network.RequestFactory import getURL
from module.plugins.internal.MultiHook import MultiHook
class FastixRu(MultiHook):
__name__ = "FastixRu"
__type__ = "hook"
- __version__ = "0.03"
+ __version__ = "0.04"
- __config__ = [("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported)", "all"),
- ("unloadFailing", "bool", "Revert to standard download if download fails", False),
+ __config__ = [("mode", "all;listed;unlisted", "Use for hosters (if supported)", "all"),
+ ("revertfailed", "bool", "Revert to standard download if download fails", False),
("interval", "int", "Reload interval in hours (0 to disable)", 24)]
__description__ = """Fastix.ru hook plugin"""
@@ -19,8 +18,8 @@ class FastixRu(MultiHook):
__authors__ = [("Massimo Rosamilia", "max@spiritix.eu")]
- def getHoster(self):
- page = getURL("http://fastix.ru/api_v2",
+ def getHosters(self):
+ page = self.getURL("http://fastix.ru/api_v2",
get={'apikey': "5182964c3f8f9a7f0b00000a_kelmFB4n1IrnCDYuIFn2y",
'sub' : "allowed_sources"})
host_list = json_loads(page)