From 21723a45316c4cb3ee14ba4e151faa13e39f146b Mon Sep 17 00:00:00 2001
From: RaNaN <Mast3rRaNaN@hotmail.de>
Date: Fri, 22 Apr 2011 19:07:47 +0200
Subject: closed #269, #282, #283, #285, #286, #287

---
 module/plugins/accounts/BitshareCom.py | 44 ++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)
 create mode 100644 module/plugins/accounts/BitshareCom.py

(limited to 'module/plugins/accounts')

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()
-- 
cgit v1.2.3