summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/accounts/OverLoadMe.py
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2014-04-21 17:26:28 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2014-04-21 17:26:28 +0200
commite88c477d1ae3913096b92f41274ef578693bc052 (patch)
treefca8eb2f696afbaeb11c7bb61b38aca584a0b0d7 /pyload/plugins/accounts/OverLoadMe.py
parentCaptchaService: fixed missing import (diff)
downloadpyload-e88c477d1ae3913096b92f41274ef578693bc052.tar.xz
Moving new plugins from module to pyload
Diffstat (limited to 'pyload/plugins/accounts/OverLoadMe.py')
-rw-r--r--pyload/plugins/accounts/OverLoadMe.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/pyload/plugins/accounts/OverLoadMe.py b/pyload/plugins/accounts/OverLoadMe.py
new file mode 100644
index 000000000..eab20480f
--- /dev/null
+++ b/pyload/plugins/accounts/OverLoadMe.py
@@ -0,0 +1,33 @@
+# -*- coding: utf-8 -*-
+
+from module.plugins.Account import Account
+from module.common.json_layer import json_loads
+
+
+class OverLoadMe(Account):
+ __name__ = "OverLoadMe"
+ __version__ = "0.01"
+ __type__ = "account"
+ __description__ = """Over-Load.me account plugin"""
+ __author_name__ = "marley"
+ __author_mail__ = "marley@over-load.me"
+
+ def loadAccountInfo(self, user, req):
+ data = self.getAccountData(user)
+ page = req.load("https://api.over-load.me/account.php", get={"user": user, "auth": data["password"]}).strip()
+ data = json_loads(page)
+
+ # Check for premium
+ if data["membership"] == "Free":
+ return {"premium": False}
+
+ account_info = {"validuntil": data["expirationunix"], "trafficleft": -1}
+ return account_info
+
+ def login(self, user, data, req):
+ jsondata = req.load("https://api.over-load.me/account.php",
+ get={"user": user, "auth": data["password"]}).strip()
+ data = json_loads(jsondata)
+
+ if data["err"] == 1:
+ self.wrongPassword()