summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts/MyfastfileCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/accounts/MyfastfileCom.py')
-rw-r--r--module/plugins/accounts/MyfastfileCom.py26
1 files changed, 14 insertions, 12 deletions
diff --git a/module/plugins/accounts/MyfastfileCom.py b/module/plugins/accounts/MyfastfileCom.py
index 9a13e2e42..008b62cc6 100644
--- a/module/plugins/accounts/MyfastfileCom.py
+++ b/module/plugins/accounts/MyfastfileCom.py
@@ -3,35 +3,37 @@
import time
from module.common.json_layer import json_loads
-from module.plugins.Account import Account
+from module.plugins.internal.Account import Account
class MyfastfileCom(Account):
__name__ = "MyfastfileCom"
__type__ = "account"
- __version__ = "0.04"
+ __version__ = "0.06"
+ __status__ = "testing"
__description__ = """Myfastfile.com account plugin"""
__license__ = "GPLv3"
__authors__ = [("stickell", "l.stickell@yahoo.it")]
- def loadAccountInfo(self, user, req):
+ def parse_info(self, user, password, data, req):
if 'days_left' in self.json_data:
validuntil = time.time() + self.json_data['days_left'] * 24 * 60 * 60
- return {"premium": True, "validuntil": validuntil, "trafficleft": -1}
+ return {'premium': True, 'validuntil': validuntil, 'trafficleft': -1}
else:
- self.logError(_("Unable to get account information"))
+ self.log_error(_("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']})
+ def login(self, user, password, data, req):
+ #: Password to use is the API-Password written in http://myfastfile.com/myaccount
+ html = self.load("https://myfastfile.com/api.php",
+ get={'user': user,
+ 'pass': password})
- self.logDebug("JSON data: " + html)
+ self.log_debug("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()
+ self.log_error(_('Invalid login. The password to use is the API-Password you find in your "My Account" page'))
+ self.login_fail()