From 4df2b77fdf42046fe19bd371be7c7255986b5980 Mon Sep 17 00:00:00 2001
From: RaNaN <Mast3rRaNaN@hotmail.de>
Date: Tue, 6 Mar 2012 13:36:39 +0100
Subject: renamed hooks to addons, new filemanager and database, many new api
 methods you will loose ALL your LINKS, webinterface will NOT work

---
 module/plugins/hooks/Premium4Me.py | 46 --------------------------------------
 1 file changed, 46 deletions(-)
 delete mode 100644 module/plugins/hooks/Premium4Me.py

(limited to 'module/plugins/hooks/Premium4Me.py')

diff --git a/module/plugins/hooks/Premium4Me.py b/module/plugins/hooks/Premium4Me.py
deleted file mode 100644
index fc3ce2343..000000000
--- a/module/plugins/hooks/Premium4Me.py
+++ /dev/null
@@ -1,46 +0,0 @@
-# -*- coding: utf-8 -*-
-
-from module.network.RequestFactory import getURL
-from module.plugins.internal.MultiHoster import MultiHoster
-
-class Premium4Me(MultiHoster):
-    __name__ = "Premium4Me"
-    __version__ = "0.02"
-    __type__ = "hook"
-
-    __config__ = [("activated", "bool", "Activated", "False"),
-        ("hosterListMode", "all;listed;unlisted", "Use for downloads from supported hosters:", "all"),
-        ("hosterList", "str", "Hoster list (comma separated)", "")]
-    __description__ = """premium4.me hook plugin"""
-    __author_name__ = ("RaNaN", "zoidberg")
-    __author_mail__ = ("RaNaN@pyload.org", "zoidberg@mujmail.cz")
-
-    replacements = [("freakshare.net", "freakshare.com")]
-
-    def getHoster(self):
-
-        page = getURL("http://premium4.me/api/hosters.php?authcode=%s" % self.account.authcode)
-        hosters = set([x.strip() for x in page.replace("\"", "").split(";")])
-        
-        configMode = self.getConfig('hosterListMode')
-        if configMode in ("listed", "unlisted"):
-            configList = set(self.getConfig('hosterList').strip().lower().replace(',','|').split('|'))
-            configList.discard(u'')
-            if configMode == "listed":
-                hosters &= configList
-            elif configMode == "unlisted":
-                hosters -= configList
-        
-        return list(hosters)
-
-    def coreReady(self):
-
-        self.account = self.core.accountManager.getAccountPlugin("Premium4Me")
-
-        user = self.account.selectAccount()[0]
-
-        if not user:
-            self.logError(_("Please add your premium4.me account first and restart pyLoad"))
-            return
-
-        return MultiHoster.coreReady(self)
\ No newline at end of file
-- 
cgit v1.2.3