diff options
| author | 2015-09-29 21:57:38 +0200 | |
|---|---|---|
| committer | 2015-09-29 21:57:38 +0200 | |
| commit | 0af040e72ad8345ce4ecc6952dcf4fe4dc28f4ff (patch) | |
| tree | 3f4f9e27717792ac1a0cf9730c113662ea106e24 /module/plugins/hooks/RPNetBizHook.py | |
| parent | Update crypter plugins (diff) | |
| download | pyload-0af040e72ad8345ce4ecc6952dcf4fe4dc28f4ff.tar.xz | |
Update addon plugins
Diffstat (limited to 'module/plugins/hooks/RPNetBizHook.py')
| -rw-r--r-- | module/plugins/hooks/RPNetBizHook.py | 38 | 
1 files changed, 0 insertions, 38 deletions
| diff --git a/module/plugins/hooks/RPNetBizHook.py b/module/plugins/hooks/RPNetBizHook.py deleted file mode 100644 index 5d26b7f09..000000000 --- a/module/plugins/hooks/RPNetBizHook.py +++ /dev/null @@ -1,38 +0,0 @@ -# -*- coding: utf-8 -*- - -from module.common.json_layer import json_loads -from module.plugins.internal.MultiHook import MultiHook - - -class RPNetBizHook(MultiHook): -    __name__    = "RPNetBizHook" -    __type__    = "hook" -    __version__ = "0.16" -    __status__  = "testing" - -    __config__ = [("pluginmode"    , "all;listed;unlisted", "Use for plugins"              , "all"), -                  ("pluginlist"    , "str"                , "Plugin list (comma separated)", ""   ), -                  ("reload"        , "bool"               , "Reload plugin list"           , True ), -                  ("reloadinterval", "int"                , "Reload interval in hours"     , 12   )] - -    __description__ = """RPNet.biz hook plugin""" -    __license__     = "GPLv3" -    __authors__     = [("Dman", "dmanugm@gmail.com")] - - -    def get_hosters(self): -        #: Get account data -        user, info = self.account.select() - -        res = self.load("https://premium.rpnet.biz/client_api.php", -                        get={'username': user, -                             'password': info['login']['password'], -                             'action'  : "showHosterList"}) -        hoster_list = json_loads(res) - -        #: If account is not valid thera are no hosters available -        if 'error' in hoster_list: -            return [] - -        #: Extract hosters from json file -        return hoster_list['hosters'] | 
