electrum-bitcoinprivate/gui/qt/transaction_dialog.py

284 lines
9.9 KiB
Python
Raw Normal View History

2013-09-14 12:07:54 -07:00
#!/usr/bin/env python
#
# Electrum - lightweight Bitcoin client
# Copyright (C) 2012 thomasv@gitorious
#
# 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/>.
import datetime
import json
2013-09-14 12:07:54 -07:00
import PyQt4
2013-09-14 12:07:54 -07:00
from PyQt4.QtGui import *
from PyQt4.QtCore import *
import PyQt4.QtCore as QtCore
from electrum import transaction
from electrum.bitcoin import base_encode
from electrum.i18n import _
from electrum.plugins import run_hook
from util import *
def show_transaction(tx, parent, desc=None, prompt_if_unsaved=False):
d = TxDialog(tx, parent, desc, prompt_if_unsaved)
d.show()
2013-09-14 12:07:54 -07:00
2015-06-07 07:51:27 -07:00
class TxDialog(QWidget):
2013-09-14 12:07:54 -07:00
def __init__(self, tx, parent, desc, prompt_if_unsaved):
'''Transactions in the wallet will show their description.
Pass desc to give a description for txs not yet in the wallet.
'''
2013-09-14 12:07:54 -07:00
self.tx = tx
tx_dict = tx.as_dict()
self.parent = parent
self.wallet = parent.wallet
self.saved = not prompt_if_unsaved
self.desc = desc
2015-06-07 07:51:27 -07:00
QWidget.__init__(self)
2013-09-14 12:07:54 -07:00
self.setMinimumWidth(600)
self.setWindowTitle(_("Transaction"))
2013-09-14 12:07:54 -07:00
vbox = QVBoxLayout()
self.setLayout(vbox)
vbox.addWidget(QLabel(_("Transaction ID:")))
self.tx_hash_e = ButtonsLineEdit()
qr_show = lambda: self.parent.show_qrcode(str(self.tx_hash_e.text()), 'Transaction ID')
self.tx_hash_e.addButton(":icons/qrcode.png", qr_show, _("Show as QR code"))
2013-09-14 12:07:54 -07:00
self.tx_hash_e.setReadOnly(True)
vbox.addWidget(self.tx_hash_e)
self.status_label = QLabel()
vbox.addWidget(self.status_label)
self.tx_desc = QLabel()
vbox.addWidget(self.tx_desc)
2013-09-14 12:07:54 -07:00
self.date_label = QLabel()
vbox.addWidget(self.date_label)
self.amount_label = QLabel()
vbox.addWidget(self.amount_label)
self.fee_label = QLabel()
vbox.addWidget(self.fee_label)
self.add_io(vbox)
2013-09-15 02:41:06 -07:00
vbox.addStretch(1)
2013-09-14 12:07:54 -07:00
self.sign_button = b = QPushButton(_("Sign"))
b.clicked.connect(self.sign)
self.broadcast_button = b = QPushButton(_("Broadcast"))
b.clicked.connect(self.do_broadcast)
2013-09-14 12:07:54 -07:00
b.hide()
self.save_button = b = QPushButton(_("Save"))
b.clicked.connect(self.save)
self.cancel_button = b = QPushButton(_("Close"))
b.clicked.connect(self.close)
b.setDefault(True)
self.qr_button = b = QPushButton()
b.setIcon(QIcon(":icons/qrcode.png"))
2014-06-17 07:24:01 -07:00
b.clicked.connect(self.show_qr)
2013-09-14 12:07:54 -07:00
2015-04-20 05:44:59 -07:00
self.copy_button = CopyButton(lambda: str(self.tx), self.parent.app)
self.buttons = [self.copy_button, self.qr_button, self.sign_button, self.broadcast_button, self.save_button, self.cancel_button]
2014-06-20 02:55:34 -07:00
run_hook('transaction_dialog', self)
vbox.addLayout(Buttons(*self.buttons))
2014-06-24 05:48:15 -07:00
self.update()
2014-06-20 02:55:34 -07:00
def do_broadcast(self):
self.parent.broadcast_transaction(self.tx, self.desc)
self.saved = True
def close(self):
if not self.saved:
2015-06-07 07:51:27 -07:00
if QMessageBox.question(
self, _('Message'), _('This transaction is not saved. Close anyway?'),
QMessageBox.Yes | QMessageBox.No, QMessageBox.No) == QMessageBox.No:
return
2015-06-07 07:51:27 -07:00
QWidget.close(self)
2013-09-14 12:07:54 -07:00
2014-06-17 07:24:01 -07:00
def show_qr(self):
text = self.tx.raw.decode('hex')
text = base_encode(text, base=43)
2014-06-17 07:24:01 -07:00
try:
self.parent.show_qrcode(text, 'Transaction')
2014-06-17 07:24:01 -07:00
except Exception as e:
2014-06-19 00:42:19 -07:00
self.show_message(str(e))
2013-09-14 12:07:54 -07:00
def sign(self):
def sign_done(success):
self.update()
self.parent.send_tx(self.tx, sign_done)
2013-09-14 12:07:54 -07:00
def save(self):
name = 'signed_%s.txn' % (self.tx.hash()[0:8]) if self.tx.is_complete() else 'unsigned.txn'
fileName = self.parent.getSaveFileName(_("Select where to save your signed transaction"), name, "*.txn")
2013-09-14 12:07:54 -07:00
if fileName:
with open(fileName, "w+") as f:
f.write(json.dumps(self.tx.as_dict(),indent=4) + '\n')
self.show_message(_("Transaction saved successfully"))
self.saved = True
2013-09-14 12:07:54 -07:00
2013-09-14 12:07:54 -07:00
def update(self):
is_relevant, is_mine, v, fee = self.wallet.get_wallet_delta(self.tx)
tx_hash = self.tx.hash()
desc = self.desc
have_action = False
time_str = None
2013-09-14 12:07:54 -07:00
if self.tx.is_complete():
2014-06-22 03:07:41 -07:00
status = _("Signed")
2013-09-14 12:07:54 -07:00
if tx_hash in self.wallet.transactions.keys():
desc, is_default = self.wallet.get_label(tx_hash)
conf, timestamp = self.wallet.get_confirmations(tx_hash)
2013-09-14 12:07:54 -07:00
if timestamp:
time_str = datetime.datetime.fromtimestamp(timestamp).isoformat(' ')[:-3]
else:
time_str = _('Pending')
2014-06-22 03:07:41 -07:00
status = _("%d confirmations")%conf
2013-09-14 12:07:54 -07:00
self.broadcast_button.hide()
else:
conf = 0
self.broadcast_button.show()
# cannot broadcast when offline
if self.parent.network is None:
self.broadcast_button.setEnabled(False)
else:
have_action = True
2013-09-14 12:07:54 -07:00
else:
2014-06-22 03:07:41 -07:00
s, r = self.tx.signature_count()
2015-02-02 10:17:08 -08:00
status = _("Unsigned") if s == 0 else _('Partially signed') + ' (%d/%d)'%(s,r)
2013-09-14 12:07:54 -07:00
self.broadcast_button.hide()
tx_hash = _('Unknown');
if self.wallet.can_sign(self.tx):
self.sign_button.show()
have_action = True
else:
self.sign_button.hide()
# Cancel if an action, otherwise close
if have_action:
self.cancel_button.setText(_("Cancel"))
else:
self.cancel_button.setText(_("Close"))
2013-09-14 12:07:54 -07:00
self.tx_hash_e.setText(tx_hash)
if desc is None:
self.tx_desc.hide()
else:
self.tx_desc.setText(_("Description") + ': ' + desc)
self.tx_desc.show()
2014-06-22 03:07:41 -07:00
self.status_label.setText(_('Status:') + ' ' + status)
2013-09-14 12:07:54 -07:00
if time_str is not None:
self.date_label.setText(_("Date: %s")%time_str)
2013-09-14 12:07:54 -07:00
self.date_label.show()
else:
self.date_label.hide()
2015-06-11 20:06:23 -07:00
# if we are not synchronized, we cannot tell
if not self.wallet.up_to_date:
return
if is_relevant:
2013-09-14 12:07:54 -07:00
if is_mine:
if fee is not None:
self.amount_label.setText(_("Amount sent:")+' %s'% self.parent.format_amount(-v+fee) + ' ' + self.parent.base_unit())
self.fee_label.setText(_("Transaction fee")+': %s'% self.parent.format_amount(-fee) + ' ' + self.parent.base_unit())
2013-09-14 12:07:54 -07:00
else:
self.amount_label.setText(_("Amount sent:")+' %s'% self.parent.format_amount(-v) + ' ' + self.parent.base_unit())
self.fee_label.setText(_("Transaction fee")+': '+ _("unknown"))
2013-09-14 12:07:54 -07:00
else:
self.amount_label.setText(_("Amount received:")+' %s'% self.parent.format_amount(v) + ' ' + self.parent.base_unit())
2013-09-14 12:07:54 -07:00
else:
self.amount_label.setText(_("Transaction unrelated to your wallet"))
2013-09-14 12:07:54 -07:00
2014-06-24 05:48:15 -07:00
run_hook('transaction_dialog_update', self)
2013-09-14 12:07:54 -07:00
def add_io(self, vbox):
2013-09-14 12:07:54 -07:00
if self.tx.locktime > 0:
vbox.addWidget(QLabel("LockTime: %d\n" % self.tx.locktime))
vbox.addWidget(QLabel(_("Inputs")))
2015-03-28 12:26:30 -07:00
ext = QTextCharFormat()
rec = QTextCharFormat()
rec.setBackground(QBrush(QColor("lightgreen")))
rec.setToolTip(_("Wallet receive address"))
chg = QTextCharFormat()
chg.setBackground(QBrush(QColor("yellow")))
chg.setToolTip(_("Wallet change address"))
def text_format(addr):
if self.wallet.is_mine(addr):
return chg if self.wallet.is_change(addr) else rec
return ext
2015-03-28 12:26:30 -07:00
i_text = QTextEdit()
i_text.setFont(QFont(MONOSPACE_FONT))
i_text.setReadOnly(True)
i_text.setMaximumHeight(100)
2015-03-28 12:26:30 -07:00
cursor = i_text.textCursor()
for x in self.tx.inputs:
if x.get('is_coinbase'):
cursor.insertText('coinbase')
else:
2015-03-28 12:53:49 -07:00
prevout_hash = x.get('prevout_hash')
prevout_n = x.get('prevout_n')
cursor.insertText(prevout_hash[0:8] + '...', ext)
cursor.insertText(prevout_hash[-8:] + ":%3d " % prevout_n, ext)
2015-03-28 12:26:30 -07:00
addr = x.get('address')
2015-03-28 12:53:49 -07:00
if addr == "(pubkey)":
_addr = self.wallet.find_pay_to_pubkey_address(prevout_hash, prevout_n)
if _addr:
addr = _addr
2015-05-02 07:17:50 -07:00
if addr is None:
addr = _('unknown')
cursor.insertText(addr, text_format(addr))
2015-03-28 12:26:30 -07:00
cursor.insertBlock()
2013-09-14 12:07:54 -07:00
2015-03-28 12:26:30 -07:00
vbox.addWidget(i_text)
vbox.addWidget(QLabel(_("Outputs")))
o_text = QTextEdit()
o_text.setFont(QFont(MONOSPACE_FONT))
o_text.setReadOnly(True)
o_text.setMaximumHeight(100)
2015-03-28 12:26:30 -07:00
cursor = o_text.textCursor()
for addr, v in self.tx.get_outputs():
cursor.insertText(addr, text_format(addr))
2015-03-28 12:26:30 -07:00
if v is not None:
cursor.insertText('\t', ext)
cursor.insertText(self.parent.format_amount(v, whitespaces = True), ext)
2015-03-28 12:26:30 -07:00
cursor.insertBlock()
vbox.addWidget(o_text)
2013-09-14 12:07:54 -07:00
2013-09-14 12:07:54 -07:00
def show_message(self, msg):
QMessageBox.information(self, _('Message'), msg, _('OK'))