summaryrefslogtreecommitdiffstats
path: root/module/plugins/accounts
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-04-22 19:07:47 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-04-22 19:07:47 +0200
commit21723a45316c4cb3ee14ba4e151faa13e39f146b (patch)
tree89c0ec96ca3f81a474f103eafd71ac5488726a58 /module/plugins/accounts
parentClean up (diff)
downloadpyload-21723a45316c4cb3ee14ba4e151faa13e39f146b.tar.xz
closed #269, #282, #283, #285, #286, #287
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r--module/plugins/accounts/BitshareCom.py44
1 files changed, 44 insertions, 0 deletions
diff --git a/module/plugins/accounts/BitshareCom.py b/module/plugins/accounts/BitshareCom.py
new file mode 100644
index 000000000..b0cd1efcd
--- /dev/null
+++ b/module/plugins/accounts/BitshareCom.py
@@ -0,0 +1,44 @@
+# -*- 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: pking
+"""
+
+from module.plugins.Account import Account
+
+class BitshareCom(Account):
+ __name__ = "BitshareCom"
+ __version__ = "0.1"
+ __type__ = "account"
+ __description__ = """Bitshare account plugin"""
+ __author_name__ = ("Paul King")
+
+ def loadAccountInfo(self, user, req):
+ page = req.load("http://bitshare.com/mysettings.html")
+
+ if "\"http://bitshare.com/myupgrade.html\">Free" in page:
+ return {"validuntil": -1, "trafficleft":-1, "premium": False}
+
+ if not '<input type="checkbox" name="directdownload" checked="checked" />' in page:
+ self.core.log.warning(_("Activate direct Download in your Bitshare Account"))
+
+ return {"validuntil": -1, "trafficleft": -1, "premium": True}
+
+
+ def login(self, user, data, req):
+ page = req.load("http://bitshare.com/login.html", post={ "user" : user, "pass" : data["password"], "submit" :"1"}, cookies=True)
+ if "Wrong Username or Password" in page:
+ self.wrongPassword()