From 78413c410e875db8d652f976183717cf3add33f4 Mon Sep 17 00:00:00 2001 From: Jeix Date: Sun, 3 Oct 2010 14:19:51 +0200 Subject: share-online premium fix (revert to old design, coz new one is still buggy) --- module/plugins/accounts/ShareonlineBiz.py | 36 ++++++++++++++++++++----------- 1 file changed, 23 insertions(+), 13 deletions(-) (limited to 'module/plugins/accounts') diff --git a/module/plugins/accounts/ShareonlineBiz.py b/module/plugins/accounts/ShareonlineBiz.py index e7405c659..a85dbbe71 100644 --- a/module/plugins/accounts/ShareonlineBiz.py +++ b/module/plugins/accounts/ShareonlineBiz.py @@ -29,19 +29,29 @@ class ShareonlineBiz(Account): __author_name__ = ("mkaay") __author_mail__ = ("mkaay@mkaay.de") - def loadAccountInfo(self, user): - req = self.getAccountRequest(user) - src = req.load("http://www.share-online.biz/alpha/lang/set/english") - validuntil = re.search(r"Account valid till:.*?(.*?)", src, re.S).group(1) - validuntil = int(mktime(strptime(validuntil, "%m/%d/%Y, %I:%M:%S %p"))) - - tmp = {"validuntil":validuntil, "trafficleft":-1} - return tmp + def getAccountInfo(self, user): + try: + req = self.core.requestFactory.getRequest(self.__name__, user) + src = req.load("http://www.share-online.biz/members.php?setlang=en") + validuntil = re.search(r'Package Expire Date:\s*(\d+/\d+/\d+', src).group(1) + validuntil = int(mktime(strptime(validuntil, "%m/%d/%Y"))) + + out = Account.getAccountInfo(self, user) + tmp = {"validuntil":validuntil, "trafficleft":-1} + out.update(tmp) + return out + except: + return Account.getAccountInfo(self, user) def login(self, user, data): - req = self.getAccountRequest(user) - post_vars = {"user": user, + req = self.core.requestFactory.getRequest(self.__name__, user) + post_vars = { + "act": "login", + "location": "index.php", + "dieseid": "", + "user": user, "pass": data["password"], - "l_rememberme":"1"} - req.lastURL = "http://www.share-online.biz/alpha/" - req.load("https://www.share-online.biz/alpha/user/login", cookies=True, post=post_vars) + "login": "Login" + } + req.lastURL = "http://www.share-online.biz/" + req.load("https://www.share-online.biz/login.php", cookies=True, post=post_vars) -- cgit v1.2.3