diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-09-18 19:04:05 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-09-18 19:04:05 +0200 |
commit | cb7bb3881a76e85110868643be04d200113d88f2 (patch) | |
tree | abc99358b0249c998e477a69c1bc922b7d04ef6d /module/plugins/accounts/HellshareCz.py | |
parent | closed #371 (diff) | |
download | pyload-cb7bb3881a76e85110868643be04d200113d88f2.tar.xz |
plugin pack by zoidberg
Diffstat (limited to 'module/plugins/accounts/HellshareCz.py')
-rw-r--r-- | module/plugins/accounts/HellshareCz.py | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/module/plugins/accounts/HellshareCz.py b/module/plugins/accounts/HellshareCz.py new file mode 100644 index 000000000..eb44ee47f --- /dev/null +++ b/module/plugins/accounts/HellshareCz.py @@ -0,0 +1,54 @@ +# -*- coding: utf-8 -*- + +""" + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, + or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + See the GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, see <http://www.gnu.org/licenses/>. + + @author: zoidberg +""" + +from module.plugins.Account import Account +import re + +class HellshareCz(Account): + __name__ = "HellshareCz" + __version__ = "0.1" + __type__ = "account" + __description__ = """hellshare.cz account plugin""" + __author_name__ = ("zoidberg") + __author_mail__ = ("zoidberg@mujmail.cz") + + CREDIT_LEFT_PATTERN = r'<a class="button-amount-1" href="/buy-credit/" title="Your current credit">([^<]+)</a>' + + def loadAccountInfo(self, user, req): + self.relogin(user) + html = req.load("http://www.hellshare.com/") + + found = re.search(self.CREDIT_LEFT_PATTERN, html) + if found is None: + credits = 0 + else: + credits = int(found.group(1)) * 1024 + + return {"validuntil": -1, "trafficleft": credits} + + def login(self, user, data, req): + + html = req.load('http://www.hellshare.com/login?do=loginForm-submit', post={ + "login": "Log in", + "password": data["password"], + "username": user + }) + + if "<p>You input a wrong user name or wrong password</p>" in html: + self.wrongPassword() |