Split text string
[electrum-nvc.git] / plugins / pointofsale.py
1 import re
2 import platform
3 from decimal import Decimal
4
5 from PyQt4.QtGui import *
6 from PyQt4.QtCore import *
7 import PyQt4.QtCore as QtCore
8 import PyQt4.QtGui as QtGui
9
10 from electrum_gui.qt.qrcodewidget import QRCodeWidget
11
12 from electrum import bmp, pyqrnative, BasePlugin
13 from electrum.i18n import _
14
15
16 if platform.system() == 'Windows':
17     MONOSPACE_FONT = 'Lucida Console'
18 elif platform.system() == 'Darwin':
19     MONOSPACE_FONT = 'Monaco'
20 else:
21     MONOSPACE_FONT = 'monospace'
22
23 column_index = 3
24
25 class QR_Window(QWidget):
26
27     def __init__(self, exchanger):
28         QWidget.__init__(self)
29         self.exchanger = exchanger
30         self.setWindowTitle('Electrum - '+_('Invoice'))
31         self.setMinimumSize(800, 250)
32         self.address = ''
33         self.label = ''
34         self.amount = 0
35         self.setFocusPolicy(QtCore.Qt.NoFocus)
36
37         main_box = QHBoxLayout()
38         
39         self.qrw = QRCodeWidget()
40         main_box.addWidget(self.qrw, 1)
41
42         vbox = QVBoxLayout()
43         main_box.addLayout(vbox)
44
45         self.address_label = QLabel("")
46         #self.address_label.setFont(QFont(MONOSPACE_FONT))
47         vbox.addWidget(self.address_label)
48
49         self.label_label = QLabel("")
50         vbox.addWidget(self.label_label)
51
52         self.amount_label = QLabel("")
53         vbox.addWidget(self.amount_label)
54
55         vbox.addStretch(1)
56         self.setLayout(main_box)
57
58
59     def set_content(self, addr, label, amount, currency):
60         self.address = addr
61         address_text = "<span style='font-size: 18pt'>%s</span>" % addr if addr else ""
62         self.address_label.setText(address_text)
63
64         if currency == 'BTC': currency = None
65         amount_text = ''
66         if amount:
67             if currency:
68                 self.amount = Decimal(amount) / self.exchanger.exchange(1, currency) if currency else amount
69             else:
70                 self.amount = Decimal(amount)
71             self.amount = self.amount.quantize(Decimal('1.0000'))
72
73             if currency:
74                 amount_text += "<span style='font-size: 18pt'>%s %s</span><br/>" % (amount, currency)
75             amount_text += "<span style='font-size: 21pt'>%s</span> <span style='font-size: 16pt'>BTC</span> " % str(self.amount) 
76         self.amount_label.setText(amount_text)
77
78         self.label = label
79         label_text = "<span style='font-size: 21pt'>%s</span>" % label if label else ""
80         self.label_label.setText(label_text)
81
82         msg = 'bitcoin:'+self.address
83         if self.amount is not None:
84             msg += '?amount=%s'%(str( self.amount))
85             if self.label is not None:
86                 msg += '&label=%s'%(self.label)
87         elif self.label is not None:
88             msg += '?label=%s'%(self.label)
89             
90         self.qrw.set_addr( msg )
91
92
93
94
95 class Plugin(BasePlugin):
96
97     def fullname(self):
98         return 'Point of Sale'
99
100     def description(self):
101         return _('Show QR code window and amounts requested for each address. Add menu item to request amount.')+_(' Note: This requires the exchange rate plugin to be installed.')
102
103     def init(self):
104         self.window = self.gui.main_window
105         self.wallet = self.window.wallet
106
107         self.qr_window = None
108         self.merchant_name = self.config.get('merchant_name', 'Invoice')
109
110         self.window.expert_mode = True
111         self.window.receive_list.setHeaderLabels([ _('Address'), _('Label'), _('Balance'), _('Request')])
112         self.requested_amounts = {}
113         self.toggle_QR_window(True)
114
115     def enable(self):
116         if not self.config.get('use_exchange_rate'):
117             self.gui.main_window.show_message("Please enable exchange rates first!")
118             return False
119
120         return BasePlugin.enable(self)
121
122
123     def load_wallet(self, wallet):
124         self.wallet = wallet
125         self.requested_amounts = self.wallet.storage.get('requested_amounts',{}) 
126
127     def close(self):
128         self.window.receive_list.setHeaderLabels([ _('Address'), _('Label'), _('Balance'), _('Tx')])
129         self.toggle_QR_window(False)
130     
131
132     def close_main_window(self):
133         if self.qr_window: 
134             self.qr_window.close()
135             self.qr_window = None
136
137     
138     def timer_actions(self):
139         if self.qr_window:
140             self.qr_window.qrw.update_qr()
141
142
143     def toggle_QR_window(self, show):
144         if show and not self.qr_window:
145             self.qr_window = QR_Window(self.gui.exchanger)
146             self.qr_window.setVisible(True)
147             self.qr_window_geometry = self.qr_window.geometry()
148             item = self.window.receive_list.currentItem()
149             if item:
150                 address = str(item.text(1))
151                 label = self.wallet.labels.get(address)
152                 amount, currency = self.requested_amounts.get(address, (None, None))
153                 self.qr_window.set_content( address, label, amount, currency )
154
155         elif show and self.qr_window and not self.qr_window.isVisible():
156             self.qr_window.setVisible(True)
157             self.qr_window.setGeometry(self.qr_window_geometry)
158
159         elif not show and self.qr_window and self.qr_window.isVisible():
160             self.qr_window_geometry = self.qr_window.geometry()
161             self.qr_window.setVisible(False)
162
163
164     
165     def update_receive_item(self, address, item):
166         try:
167             amount, currency = self.requested_amounts.get(address, (None, None))
168         except:
169             print "cannot get requested amount", address, self.requested_amounts.get(address)
170             amount, currency = None, None
171             self.requested_amounts.pop(address)
172
173         amount_str = amount + (' ' + currency if currency else '') if amount is not None  else ''
174         item.setData(column_index,0,amount_str)
175
176
177     
178     def current_item_changed(self, a):
179         if not self.wallet: 
180             return
181         if a is not None and self.qr_window and self.qr_window.isVisible():
182             address = str(a.text(0))
183             label = self.wallet.labels.get(address)
184             try:
185                 amount, currency = self.requested_amounts.get(address, (None, None))
186             except:
187                 amount, currency = None, None
188             self.qr_window.set_content( address, label, amount, currency )
189
190
191     
192     def item_changed(self, item, column):
193         if column != column_index:
194             return
195         address = str( item.text(0) )
196         text = str( item.text(column) )
197         try:
198             seq = self.wallet.get_address_index(address)
199             index = seq[1][1]
200         except:
201             print "cannot get index"
202             return
203
204         text = text.strip().upper()
205         print text
206         m = re.match('^(\d*(|\.\d*))\s*(|BTC|EUR|USD|GBP|CNY|JPY|RUB|BRL)$', text)
207         if m and m.group(1) and m.group(1)!='.':
208             amount = m.group(1)
209             currency = m.group(3)
210             if not currency:
211                 currency = 'BTC'
212             else:
213                 currency = currency.upper()
214                     
215             self.requested_amounts[address] = (amount, currency)
216             self.wallet.storage.put('requested_amounts', self.requested_amounts, True)
217
218             label = self.wallet.labels.get(address)
219             if label is None:
220                 label = self.merchant_name + ' - %04d'%(index+1)
221                 self.wallet.labels[address] = label
222
223             if self.qr_window:
224                 self.qr_window.set_content( address, label, amount, currency )
225
226         else:
227             item.setText(column,'')
228             if address in self.requested_amounts:
229                 self.requested_amounts.pop(address)
230             
231         self.window.update_receive_item(self.window.receive_list.currentItem())
232
233
234
235
236     def edit_amount(self):
237         l = self.window.receive_list
238         item = l.currentItem()
239         item.setFlags(Qt.ItemIsEditable|Qt.ItemIsSelectable | Qt.ItemIsUserCheckable | Qt.ItemIsEnabled | Qt.ItemIsDragEnabled)
240         l.editItem( item, column_index )
241         item.setFlags(Qt.ItemIsSelectable | Qt.ItemIsUserCheckable | Qt.ItemIsEnabled | Qt.ItemIsDragEnabled)
242
243     
244     def receive_menu(self, menu):
245         menu.addAction(_("Request amount"), self.edit_amount)
246
247