summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts/NetloadIn.py
diff options
context:
space:
mode:
authorGravatar CryNickSystems <d.hardtke@yahoo.de> 2011-11-11 19:38:28 +0100
committerGravatar CryNickSystems <d.hardtke@yahoo.de> 2011-11-11 19:38:28 +0100
commit53540e0df49ae52d67294512d13109c2249805cd (patch)
tree051649892302ff38d7b46f39d6bf298c4daf249d /module/plugins/accounts/NetloadIn.py
parentBasePlugin: attempt to fix #266 (diff)
downloadpyload-53540e0df49ae52d67294512d13109c2249805cd.tar.xz
Check validity of OronCom and NetloadIn accounts
Diffstat (limited to 'module/plugins/accounts/NetloadIn.py')
-rwxr-xr-x[-rw-r--r--]module/plugins/accounts/NetloadIn.py17
1 files changed, 12 insertions, 5 deletions
diff --git a/module/plugins/accounts/NetloadIn.py b/module/plugins/accounts/NetloadIn.py
index 4f5b08689..6febf2ff1 100644..100755
--- a/module/plugins/accounts/NetloadIn.py
+++ b/module/plugins/accounts/NetloadIn.py
@@ -23,18 +23,25 @@ from time import time
class NetloadIn(Account):
__name__ = "NetloadIn"
- __version__ = "0.1"
+ __version__ = "0.2"
__type__ = "account"
__description__ = """netload.in account plugin"""
- __author_name__ = ("RaNaN")
- __author_mail__ = ("RaNaN@pyload.org")
+ __author_name__ = ("RaNaN", "DHMH")
+ __author_mail__ = ("RaNaN@pyload.org", "DHMH@pyload.org")
def loadAccountInfo(self, user, req):
page = req.load("http://netload.in/index.php?id=2")
left = r">(\d+) Tage, (\d+) Stunden<"
left = re.search(left, page)
- validuntil = time() + int(left.group(1)) * 24 * 60 * 60 + int(left.group(2)) * 60 * 60
- return {"validuntil": validuntil, "trafficleft": -1}
+ if left:
+ validuntil = time() + int(left.group(1)) * 24 * 60 * 60 + int(left.group(2)) * 60 * 60
+ trafficleft = -1
+ premium = True
+ else:
+ validuntil = None
+ premium = False
+ trafficleft = None
+ return {"validuntil": validuntil, "trafficleft": trafficleft, "premium" : premium}
def login(self, user, data,req):
page = req.load("http://netload.in/index.php", None, { "txtuser" : user, "txtpass" : data['password'], "txtcheck" : "login", "txtlogin" : ""}, cookies=True)