From acc46fc3497a66a427b795b4a22c6e71d69185a1 Mon Sep 17 00:00:00 2001
From: Walter Purcaro <vuolter@gmail.com>
Date: Sat, 13 Dec 2014 15:56:57 +0100
Subject: Update

---
 pyload/plugins/account/MyfastfileCom.py | 35 ---------------------------------
 1 file changed, 35 deletions(-)
 delete mode 100644 pyload/plugins/account/MyfastfileCom.py

(limited to 'pyload/plugins/account/MyfastfileCom.py')

diff --git a/pyload/plugins/account/MyfastfileCom.py b/pyload/plugins/account/MyfastfileCom.py
deleted file mode 100644
index 3aa16ee80..000000000
--- a/pyload/plugins/account/MyfastfileCom.py
+++ /dev/null
@@ -1,35 +0,0 @@
-# -*- coding: utf-8 -*-
-
-from time import time
-
-from pyload.plugins.Account import Account
-from pyload.utils import json_loads
-
-
-class MyfastfileCom(Account):
-    __name    = "MyfastfileCom"
-    __type    = "account"
-    __version = "0.02"
-
-    __description = """Myfastfile.com account plugin"""
-    __license     = "GPLv3"
-    __authors     = [("stickell", "l.stickell@yahoo.it")]
-
-
-    def loadAccountInfo(self, user, req):
-        if 'days_left' in self.json_data:
-            validuntil = int(time() + self.json_data['days_left'] * 24 * 60 * 60)
-            return {"premium": True, "validuntil": validuntil, "trafficleft": -1}
-        else:
-            self.logError(_("Unable to get account information"))
-
-
-    def login(self, user, data, req):
-        # Password to use is the API-Password written in http://myfastfile.com/myaccount
-        html = req.load("http://myfastfile.com/api.php",
-                             get={"user": user, "pass": data['password']})
-        self.logDebug("JSON data: " + html)
-        self.json_data = json_loads(html)
-        if self.json_data['status'] != 'ok':
-            self.logError(_('Invalid login. The password to use is the API-Password you find in your "My Account" page'))
-            self.wrongPassword()
-- 
cgit v1.2.3