settings dialog
[electrum-nvc.git] / plugins / labels.py
1 from electrum.util import print_error
2 from electrum_gui.i18n import _
3 import httplib, urllib
4 import hashlib
5 import json
6 from urlparse import urlparse, parse_qs
7 try:
8     import PyQt4
9 except:
10     sys.exit("Error: Could not import PyQt4 on Linux systems, you may try 'sudo apt-get install python-qt4'")
11
12 from PyQt4.QtGui import *
13 from PyQt4.QtCore import *
14 import PyQt4.QtCore as QtCore
15 import PyQt4.QtGui as QtGui
16 from electrum_gui import bmp, pyqrnative, BasePlugin
17 from electrum_gui.i18n import _
18
19 class Plugin(BasePlugin):
20
21     def __init__(self, gui):
22         self.target_host = 'labelectrum.herokuapp.com'
23         BasePlugin.__init__(self, gui, 'labels', _('Label Sync'),_('This plugin can sync your labels accross multiple Electrum installs by using a remote database to save your data. Labels are not encrypted, \
24 transactions and addresses are however. This code might increase the load of your wallet with a few micoseconds as it will sync labels on each startup.\n\n\
25 To get started visit http://labelectrum.herokuapp.com/ to sign up for an account.'))
26
27         self.wallet = gui.wallet
28         self.gui = gui
29         self.config = gui.config
30         self.labels = self.wallet.labels
31         self.transactions = self.wallet.transactions
32
33         self.wallet_id = hashlib.sha256(str(self.config.get("master_public_key"))).digest().encode('hex')
34
35         addresses = [] 
36         for k, account in self.wallet.accounts.items():
37             for address in account[0]:
38                 addresses.append(address)
39
40         self.addresses = addresses
41
42     def auth_token(self):
43         return self.config.get("plugin_label_api_key")
44
45     def init_gui(self):
46         if self.is_enabled() and self.auth_token():
47             # If there is an auth token we can try to actually start syncing
48             self.full_pull()
49
50     def is_available(self):
51         return True
52
53     def set_label(self, item,label, changed):
54         if not changed:
55             return 
56
57         hashed = hashlib.sha256(item).digest().encode('hex')
58         bundle = {"label": {"external_id": hashed, "text": label}}
59         params = json.dumps(bundle)
60         connection = httplib.HTTPConnection(self.target_host)
61         connection.request("POST", ("/api/wallets/%s/labels.json?auth_token=%s" % (self.wallet_id, self.auth_token())), params, {'Content-Type': 'application/json'})
62
63         response = connection.getresponse()
64         if response.reason == httplib.responses[httplib.NOT_FOUND]:
65             return
66         response = json.loads(response.read())
67
68
69     def requires_settings(self):
70         return True
71
72     def settings_dialog(self):
73         dialog = QDialog(self.gui)
74
75         def check_for_api_key(api_key):
76             if api_key and len(api_key) > 12:
77               self.config.set_key("plugin_label_api_key", str(self.auth_token_edit.text()))
78               self.upload.setEnabled(True)
79               self.download.setEnabled(True)
80             else:
81               self.upload.setEnabled(False)
82               self.download.setEnabled(False)
83
84         layout = QGridLayout()
85         layout.addWidget(QLabel("API Key: "),0,0)
86
87         self.auth_token_edit = QLineEdit(self.auth_token())
88         self.auth_token_edit.textChanged.connect(check_for_api_key)
89
90         layout.addWidget(self.auth_token_edit, 0,1,1,2)
91         layout.addWidget(QLabel("Label sync options: "),1,0)
92
93         self.upload = QPushButton("Force upload")
94         self.upload.clicked.connect(self.full_push)
95         layout.addWidget(self.upload, 1,1)
96
97         self.download = QPushButton("Force download")
98         self.download.clicked.connect(lambda: self.full_pull(True))
99         layout.addWidget(self.download, 1,2)
100
101         check_for_api_key(self.auth_token())
102
103         dialog.setLayout(layout)
104
105         dialog.exec_()
106         self.config.set_key("plugin_label_api_key", str(self.auth_token_edit.text()))
107
108
109
110     def full_push(self):
111         if self.do_full_push():
112             QMessageBox.information(None, _("Labels synced"), _("Your labels have been uploaded."))
113
114     def full_pull(self, force = False):
115         if self.do_full_pull(force) and force:
116             QMessageBox.information(None, _("Labels synced"), _("Your labels have been synced, please restart Electrum for the changes to take effect."))
117
118     def do_full_push(self):
119         bundle = {"labels": {}}
120         for key, value in self.labels.iteritems():
121             hashed = hashlib.sha256(key).digest().encode('hex')
122             bundle["labels"][hashed] = value
123
124         params = json.dumps(bundle)
125         connection = httplib.HTTPConnection(self.target_host)
126         connection.request("POST", ("/api/wallets/%s/labels/batch.json?auth_token=%s" % (self.wallet_id, self.auth_token())), params, {'Content-Type': 'application/json'})
127
128         response = connection.getresponse()
129         if response.reason == httplib.responses[httplib.NOT_FOUND]:
130             return
131         try:
132             response = json.loads(response.read())
133         except ValueError as e:
134             return False
135
136         if "error" in response:
137             QMessageBox.warning(None, _("Error"),_("Could not sync labels: %s" % response["error"]))
138             return False
139
140         return True
141
142     def do_full_pull(self, force = False):
143         connection = httplib.HTTPConnection(self.target_host)
144         connection.request("GET", ("/api/wallets/%s/labels.json?auth_token=%s" % (self.wallet_id, self.auth_token())),"", {'Content-Type': 'application/json'})
145         response = connection.getresponse()
146         if response.reason == httplib.responses[httplib.NOT_FOUND]:
147             return
148         try:
149             response = json.loads(response.read())
150         except ValueError as e:
151             return False
152
153         if "error" in response:
154             QMessageBox.warning(None, _("Error"),_("Could not sync labels: %s" % response["error"]))
155             return False
156
157         for label in response:
158             for key in self.addresses:
159                 target_hashed = hashlib.sha256(key).digest().encode('hex')
160                 if label["external_id"] == target_hashed:
161                    if force or not self.labels.get(key):
162                        self.labels[key] = label["text"] 
163             for key, value in self.transactions.iteritems():
164                 target_hashed = hashlib.sha256(key).digest().encode('hex')
165                 if label["external_id"] == target_hashed:
166                    if force or not self.labels.get(key):
167                        self.labels[key] = label["text"] 
168         return True