summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts
diff options
context:
space:
mode:
authorGravatar synweap15 <shamdog+github@gmail.com> 2014-07-08 20:00:23 +0200
committerGravatar synweap15 <shamdog+github@gmail.com> 2014-07-08 20:00:23 +0200
commit7a7e3e211e36af06d00e0effbcc37ac59e152427 (patch)
tree4464a5720e6664cb8c8f18077df989e53710ca01 /module/plugins/accounts
parent[Oboom] new hoster and account (diff)
downloadpyload-7a7e3e211e36af06d00e0effbcc37ac59e152427.tar.xz
nopremium.pl files added
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r--module/plugins/accounts/NoPremiumPl.py102
1 files changed, 102 insertions, 0 deletions
diff --git a/module/plugins/accounts/NoPremiumPl.py b/module/plugins/accounts/NoPremiumPl.py
new file mode 100644
index 000000000..e44a6acff
--- /dev/null
+++ b/module/plugins/accounts/NoPremiumPl.py
@@ -0,0 +1,102 @@
+# !/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+"""
+@author: Pawel W. <dev@nopremium.pl>
+"""
+
+from datetime import datetime
+
+from module.plugins.Account import Account
+from module.plugins.internal.SimpleHoster import parseHtmlForm
+import re
+from time import mktime, strptime
+import module.lib.beaker.crypto as crypto
+
+try:
+ from json import loads
+except ImportError:
+ from simplejson import loads
+
+class NoPremiumPl(Account):
+ __name__ = "NoPremiumPl"
+ __version__ = "0.01"
+ __type__ = "account"
+ __description__ = "NoPremium.pl account plugin"
+ __author_name__ = ("goddie")
+ __author_mail__ = ("dev@nopremium.pl")
+
+ _api_url = "http://crypt.nopremium.pl"
+
+ _api_query = {
+ "site": "nopremium",
+ "username": "",
+ "password": "",
+ "output": "json",
+ "loc": "1",
+ "info": "1"
+ }
+
+ _req = None
+ _usr = None
+ _pwd = None
+
+ def loadAccountInfo(self, name, req):
+
+ self._req = req
+
+ try:
+ result = loads(self.runAuthQuery())
+ except:
+ #todo: ret?
+ return
+
+ premium = False
+ valid_untill = -1
+
+ is_premium = "expire" in result.keys() and result["expire"] is not None
+
+ if is_premium:
+
+ premium = True
+ valid_untill = mktime(datetime.fromtimestamp(int(result["expire"])).timetuple())
+
+ traffic_left = result["balance"] * 1024
+
+ return ({
+ "validuntil": valid_untill,
+ "trafficleft": traffic_left,
+ "premium": premium
+ })
+
+ def login(self, user, data, req):
+
+ self._usr = user
+ self._pwd = crypto.sha1(crypto.md5(data["password"]).hexdigest()).hexdigest()
+
+ self._req = req
+
+ try:
+ response = loads(self.runAuthQuery())
+ except:
+ self.wrongPassword()
+
+ if "errno" in response.keys():
+ self.wrongPassword()
+
+ data['usr'] = self._usr
+ data['pwd'] = self._pwd
+
+ def createAuthQuery(self):
+
+ query = self._api_query
+ query["username"] = self._usr
+ query["password"] = self._pwd
+
+ return query
+
+ def runAuthQuery(self):
+
+ data = self._req.load(self._api_url, post=self.createAuthQuery())
+
+ return data \ No newline at end of file