electrum-bitcoinprivate/gui/qt/installwizard.py

557 lines
19 KiB
Python
Raw Normal View History

2015-06-26 05:29:26 -07:00
import re
import sys
import threading
from PyQt4.QtGui import *
from PyQt4.QtCore import *
import PyQt4.QtCore as QtCore
import electrum
2013-09-11 04:55:49 -07:00
from electrum.i18n import _
2015-06-26 05:29:26 -07:00
from electrum import Wallet
from electrum import bitcoin
from electrum import util
2013-08-29 07:07:55 -07:00
2014-04-19 11:23:27 -07:00
import seed_dialog
from network_dialog import NetworkDialog
2013-09-24 07:57:12 -07:00
from util import *
2013-08-29 07:07:55 -07:00
from electrum.plugins import always_hook, run_hook
from electrum.mnemonic import prepare_seed
2014-04-29 12:19:42 -07:00
2015-06-27 23:52:16 -07:00
MSG_ENTER_ANYTHING = _("Please enter a seed phrase, a master key, a list of Bitcoin addresses, or a list of private keys")
MSG_SHOW_MPK = _("Here is your master public key")
2014-04-29 12:19:42 -07:00
MSG_ENTER_MPK = _("Please enter your master public key")
2015-06-27 23:52:16 -07:00
MSG_ENTER_SEED_OR_MPK = _("Please enter a seed phrase or a master key (xpub or xprv)")
2014-04-29 12:19:42 -07:00
MSG_VERIFY_SEED = _("Your seed is important!") + "\n" + _("To make sure that you have properly saved your seed, please retype it here.")
2015-06-26 05:29:26 -07:00
class CosignWidget(QWidget):
size = 120
def __init__(self, m, n):
QWidget.__init__(self)
self.R = QRect(0, 0, self.size, self.size)
self.setGeometry(self.R)
self.m = m
self.n = n
def set_n(self, n):
self.n = n
self.update()
def set_m(self, m):
self.m = m
self.update()
def paintEvent(self, event):
import math
bgcolor = self.palette().color(QPalette.Background)
pen = QPen(bgcolor, 7, QtCore.Qt.SolidLine)
qp = QPainter()
qp.begin(self)
qp.setPen(pen)
qp.setRenderHint(QPainter.Antialiasing)
qp.setBrush(Qt.gray)
for i in range(self.n):
alpha = int(16* 360 * i/self.n)
alpha2 = int(16* 360 * 1/self.n)
qp.setBrush(Qt.green if i<self.m else Qt.gray)
qp.drawPie(self.R, alpha, alpha2)
qp.end()
2015-12-22 22:10:15 -08:00
class InstallWizard(WindowModalDialog, MessageBoxMixin):
def __init__(self, gui_object, storage):
title = 'Electrum' + ' - ' + _('Install Wizard')
WindowModalDialog.__init__(self, None, title=title)
self.gui_object = gui_object
self.app = gui_object.app
self.config = gui_object.config
self.network = gui_object.network
self.storage = storage
2013-09-12 10:42:00 -07:00
self.setMinimumSize(575, 400)
2014-08-26 07:23:24 -07:00
self.setMaximumSize(575, 400)
2013-09-12 10:42:00 -07:00
self.connect(self, QtCore.SIGNAL('accept'), self.accept)
2013-11-03 02:03:45 -08:00
self.stack = QStackedLayout()
self.setLayout(self.stack)
def set_layout(self, layout):
w = QWidget()
w.setLayout(layout)
2014-09-19 11:23:24 -07:00
self.stack.addWidget(w)
self.stack.setCurrentWidget(w)
2015-03-07 23:07:30 -08:00
self.show()
def restore_or_create(self):
2014-05-09 04:12:07 -07:00
vbox = QVBoxLayout()
2015-08-26 09:35:21 -07:00
2014-05-09 04:12:07 -07:00
main_label = QLabel(_("Electrum could not find an existing wallet."))
vbox.addWidget(main_label)
2015-08-26 09:35:21 -07:00
2013-09-03 05:32:56 -07:00
grid = QGridLayout()
grid.setSpacing(5)
2015-08-26 09:35:21 -07:00
2014-09-05 07:14:40 -07:00
gb1 = QGroupBox(_("What do you want to do?"))
vbox.addWidget(gb1)
2015-08-26 09:35:21 -07:00
vbox1 = QVBoxLayout()
gb1.setLayout(vbox1)
2014-05-09 04:12:07 -07:00
b1 = QRadioButton(gb1)
2013-09-03 05:32:56 -07:00
b1.setText(_("Create new wallet"))
b1.setChecked(True)
2015-08-26 09:35:21 -07:00
2014-05-09 04:12:07 -07:00
b2 = QRadioButton(gb1)
2015-03-08 00:14:11 -08:00
b2.setText(_("Restore a wallet or import keys"))
2015-08-26 09:35:21 -07:00
2014-09-05 07:14:40 -07:00
group1 = QButtonGroup()
2014-05-09 04:12:07 -07:00
group1.addButton(b1)
group1.addButton(b2)
2015-08-26 09:35:21 -07:00
vbox1.addWidget(b1)
vbox1.addWidget(b2)
2013-09-03 05:32:56 -07:00
2014-09-05 07:14:40 -07:00
gb2 = QGroupBox(_("Wallet type:"))
vbox.addWidget(gb2)
2015-08-26 09:35:21 -07:00
vbox2 = QVBoxLayout()
gb2.setLayout(vbox2)
2014-05-09 04:12:07 -07:00
group2 = QButtonGroup()
2014-09-05 07:14:40 -07:00
self.wallet_types = [
('standard', _("Standard wallet")),
2014-09-05 07:28:53 -07:00
('twofactor', _("Wallet with two-factor authentication")),
2014-09-05 08:25:15 -07:00
('multisig', _("Multi-signature wallet")),
2014-09-05 07:14:40 -07:00
('hardware', _("Hardware wallet")),
]
2014-09-05 07:28:53 -07:00
for i, (wtype,name) in enumerate(self.wallet_types):
if not filter(lambda x:x[0]==wtype, electrum.wallet.wallet_types):
continue
button = QRadioButton(gb2)
2014-09-05 07:28:53 -07:00
button.setText(name)
2015-08-26 09:35:21 -07:00
vbox2.addWidget(button)
group2.addButton(button)
group2.setId(button, i)
2015-08-26 09:35:21 -07:00
if i==0:
button.setChecked(True)
2014-05-09 04:12:07 -07:00
2013-09-12 10:42:00 -07:00
vbox.addStretch(1)
vbox.addLayout(Buttons(CancelButton(self), OkButton(self, _('Next'))))
self.set_layout(vbox)
self.show()
self.raise_()
2013-09-12 10:42:00 -07:00
if not self.exec_():
2014-05-09 04:12:07 -07:00
return None, None
2014-05-09 04:12:07 -07:00
action = 'create' if b1.isChecked() else 'restore'
wallet_type = self.wallet_types[group2.checkedId()][0]
return action, wallet_type
2014-09-11 01:43:14 -07:00
def verify_seed(self, seed, sid, func=None):
r = self.enter_seed_dialog(MSG_VERIFY_SEED, sid, func)
2013-09-03 05:32:56 -07:00
if not r:
return
if prepare_seed(r) != prepare_seed(seed):
2015-12-22 22:10:15 -08:00
self.show_error(_('Incorrect seed'))
return False
else:
return True
2014-04-19 11:23:27 -07:00
def get_seed_text(self, seed_e):
2014-04-22 06:49:32 -07:00
text = unicode(seed_e.toPlainText()).strip()
2014-04-22 06:12:36 -07:00
text = ' '.join(text.split())
return text
2014-09-09 02:51:45 -07:00
def is_any(self, text):
2014-06-25 07:45:55 -07:00
return Wallet.is_seed(text) or Wallet.is_old_mpk(text) or Wallet.is_xpub(text) or Wallet.is_xprv(text) or Wallet.is_address(text) or Wallet.is_private_key(text)
2013-09-12 10:42:00 -07:00
2014-09-09 02:51:45 -07:00
def is_mpk(self, text):
2014-06-25 07:45:55 -07:00
return Wallet.is_xpub(text) or Wallet.is_old_mpk(text)
2014-05-09 04:49:05 -07:00
2014-09-09 02:51:45 -07:00
def enter_seed_dialog(self, msg, sid, func=None):
if func is None:
func = self.is_any
vbox, seed_e = seed_dialog.enter_seed_box(msg, self, sid)
2013-09-12 10:42:00 -07:00
vbox.addStretch(1)
2015-03-14 04:28:19 -07:00
button = OkButton(self, _('Next'))
vbox.addLayout(Buttons(CancelButton(self), button))
2014-04-19 11:23:27 -07:00
button.setEnabled(False)
2014-09-09 02:51:45 -07:00
seed_e.textChanged.connect(lambda: button.setEnabled(func(self.get_seed_text(seed_e))))
2013-11-03 02:03:45 -08:00
self.set_layout(vbox)
2013-09-12 10:42:00 -07:00
if not self.exec_():
return
2014-04-19 11:23:27 -07:00
return self.get_seed_text(seed_e)
2014-05-12 01:53:04 -07:00
def multi_mpk_dialog(self, xpub_hot, n):
2014-05-09 07:27:12 -07:00
vbox = QVBoxLayout()
2015-06-27 15:47:25 -07:00
scroll = QScrollArea()
scroll.setEnabled(True)
scroll.setWidgetResizable(True)
vbox.addWidget(scroll)
w = QWidget()
scroll.setWidget(w)
innerVbox = QVBoxLayout()
w.setLayout(innerVbox)
vbox0 = seed_dialog.show_seed_box(MSG_SHOW_MPK, xpub_hot, 'hot')
2015-06-27 15:47:25 -07:00
innerVbox.addLayout(vbox0)
2014-05-12 01:53:04 -07:00
entries = []
for i in range(n):
2015-06-27 23:52:16 -07:00
msg = _("Please enter the master public key of cosigner") + ' %d'%(i+1)
vbox2, seed_e2 = seed_dialog.enter_seed_box(msg, self, 'cold')
2015-06-27 15:47:25 -07:00
innerVbox.addLayout(vbox2)
2014-05-12 01:53:04 -07:00
entries.append(seed_e2)
2014-05-09 07:27:12 -07:00
vbox.addStretch(1)
2015-03-14 04:28:19 -07:00
button = OkButton(self, _('Next'))
vbox.addLayout(Buttons(CancelButton(self), button))
2014-05-09 07:27:12 -07:00
button.setEnabled(False)
2014-09-09 02:51:45 -07:00
f = lambda: button.setEnabled( map(lambda e: Wallet.is_xpub(self.get_seed_text(e)), entries) == [True]*len(entries))
2014-05-12 01:53:04 -07:00
for e in entries:
e.textChanged.connect(f)
2014-05-09 07:27:12 -07:00
self.set_layout(vbox)
if not self.exec_():
2014-05-12 01:53:04 -07:00
return
return map(lambda e: self.get_seed_text(e), entries)
2014-05-09 07:27:12 -07:00
2014-05-12 01:53:04 -07:00
def multi_seed_dialog(self, n):
2014-04-19 11:23:27 -07:00
vbox = QVBoxLayout()
2015-06-27 15:47:25 -07:00
scroll = QScrollArea()
scroll.setEnabled(True)
scroll.setWidgetResizable(True)
vbox.addWidget(scroll)
w = QWidget()
scroll.setWidget(w)
innerVbox = QVBoxLayout()
w.setLayout(innerVbox)
vbox1, seed_e1 = seed_dialog.enter_seed_box(MSG_ENTER_SEED_OR_MPK, self, 'hot')
2015-06-27 15:47:25 -07:00
innerVbox.addLayout(vbox1)
2014-05-12 01:53:04 -07:00
entries = [seed_e1]
for i in range(n):
vbox2, seed_e2 = seed_dialog.enter_seed_box(MSG_ENTER_SEED_OR_MPK, self, 'cold')
2015-06-27 15:47:25 -07:00
innerVbox.addLayout(vbox2)
2014-05-12 01:53:04 -07:00
entries.append(seed_e2)
2014-04-19 11:23:27 -07:00
vbox.addStretch(1)
2015-03-14 04:28:19 -07:00
button = OkButton(self, _('Next'))
vbox.addLayout(Buttons(CancelButton(self), button))
2014-04-19 11:23:27 -07:00
button.setEnabled(False)
2014-09-09 02:51:45 -07:00
f = lambda: button.setEnabled( map(lambda e: self.is_any(self.get_seed_text(e)), entries) == [True]*len(entries))
2014-05-12 01:53:04 -07:00
for e in entries:
e.textChanged.connect(f)
2014-04-19 11:23:27 -07:00
self.set_layout(vbox)
if not self.exec_():
return
2014-05-12 01:53:04 -07:00
return map(lambda e: self.get_seed_text(e), entries)
2014-04-05 01:34:51 -07:00
def waiting_dialog(self, task, msg= _("Electrum is generating your addresses, please wait.")):
2013-09-12 10:42:00 -07:00
def target():
task()
self.emit(QtCore.SIGNAL('accept'))
2013-11-03 02:03:45 -08:00
vbox = QVBoxLayout()
2013-09-12 10:42:00 -07:00
self.waiting_label = QLabel(msg)
vbox.addWidget(self.waiting_label)
2013-11-03 02:03:45 -08:00
self.set_layout(vbox)
2013-09-12 10:42:00 -07:00
t = threading.Thread(target = target)
t.start()
self.exec_()
def network_dialog(self):
2013-09-03 05:32:56 -07:00
grid = QGridLayout()
grid.setSpacing(5)
label = QLabel(_("Electrum communicates with remote servers to get information about your transactions and addresses. The servers all fulfil the same purpose only differing in hardware. In most cases you simply want to let Electrum pick one at random if you have a preference though feel free to select a server manually.") + "\n\n" \
+ _("How do you want to connect to a server:")+" ")
label.setWordWrap(True)
2013-09-03 05:32:56 -07:00
grid.addWidget(label, 0, 0)
gb = QGroupBox()
b1 = QRadioButton(gb)
b1.setText(_("Auto connect"))
b1.setChecked(True)
b2 = QRadioButton(gb)
b2.setText(_("Select server manually"))
grid.addWidget(b1,1,0)
grid.addWidget(b2,2,0)
2013-11-03 02:03:45 -08:00
vbox = QVBoxLayout()
2013-09-03 05:32:56 -07:00
vbox.addLayout(grid)
2013-09-12 10:42:00 -07:00
vbox.addStretch(1)
2015-03-14 04:28:19 -07:00
vbox.addLayout(Buttons(CancelButton(self), OkButton(self, _('Next'))))
2013-09-12 10:42:00 -07:00
2013-11-03 02:03:45 -08:00
self.set_layout(vbox)
2013-09-12 10:42:00 -07:00
if not self.exec_():
2013-09-03 05:32:56 -07:00
return
2013-09-03 05:32:56 -07:00
if b2.isChecked():
return NetworkDialog(self.network, self.config, None).do_exec()
else:
self.config.set_key('auto_connect', True, True)
2015-12-03 14:50:50 -08:00
self.network.auto_connect = True
2013-09-03 05:32:56 -07:00
return
def show_message(self, msg, icon=None):
2014-04-06 12:38:53 -07:00
vbox = QVBoxLayout()
self.set_layout(vbox)
if icon:
logo = QLabel()
logo.setPixmap(icon)
vbox.addWidget(logo)
2014-04-06 12:38:53 -07:00
vbox.addWidget(QLabel(msg))
vbox.addStretch(1)
2015-03-23 00:09:08 -07:00
vbox.addLayout(Buttons(CloseButton(self)))
if not self.exec_():
2014-04-06 12:38:53 -07:00
return None
2014-09-05 07:14:40 -07:00
def choice(self, title, msg, choices):
vbox = QVBoxLayout()
self.set_layout(vbox)
vbox.addWidget(QLabel(title))
gb2 = QGroupBox(msg)
vbox.addWidget(gb2)
2015-08-26 09:35:21 -07:00
vbox2 = QVBoxLayout()
gb2.setLayout(vbox2)
2014-09-05 07:14:40 -07:00
group2 = QButtonGroup()
for i,c in enumerate(choices):
button = QRadioButton(gb2)
button.setText(c[1])
2015-08-26 09:35:21 -07:00
vbox2.addWidget(button)
2014-09-05 07:14:40 -07:00
group2.addButton(button)
group2.setId(button, i)
if i==0:
button.setChecked(True)
vbox.addStretch(1)
2015-03-14 04:28:19 -07:00
vbox.addLayout(Buttons(CancelButton(self), OkButton(self, _('Next'))))
2014-09-05 07:14:40 -07:00
if not self.exec_():
return
wallet_type = choices[group2.checkedId()][0]
return wallet_type
2015-06-26 05:29:26 -07:00
def multisig_choice(self):
vbox = QVBoxLayout()
self.set_layout(vbox)
vbox.addWidget(QLabel(_("Multi Signature Wallet")))
cw = CosignWidget(2, 2)
vbox.addWidget(cw, 1)
vbox.addWidget(QLabel(_("Please choose the number of signatures needed to unlock funds in your wallet") + ':'))
m_edit = QSpinBox()
n_edit = QSpinBox()
m_edit.setValue(2)
n_edit.setValue(2)
n_edit.setMinimum(2)
n_edit.setMaximum(15)
m_edit.setMinimum(1)
m_edit.setMaximum(2)
n_edit.valueChanged.connect(m_edit.setMaximum)
n_edit.valueChanged.connect(cw.set_n)
m_edit.valueChanged.connect(cw.set_m)
hbox = QHBoxLayout()
hbox.addWidget(QLabel(_('Require')))
hbox.addWidget(m_edit)
hbox.addWidget(QLabel(_('of')))
hbox.addWidget(n_edit)
hbox.addWidget(QLabel(_('signatures')))
hbox.addStretch(1)
vbox.addLayout(hbox)
vbox.addStretch(1)
vbox.addLayout(Buttons(CancelButton(self), OkButton(self, _('Next'))))
if not self.exec_():
return
m = int(m_edit.value())
n = int(n_edit.value())
wallet_type = '%dof%d'%(m,n)
return wallet_type
2014-04-06 12:38:53 -07:00
def show_seed(self, seed, sid):
vbox = seed_dialog.show_seed_box_msg(seed, sid)
2015-03-14 04:28:19 -07:00
vbox.addLayout(Buttons(CancelButton(self), OkButton(self, _("Next"))))
2013-11-03 02:03:45 -08:00
self.set_layout(vbox)
2013-11-12 13:55:42 -08:00
return self.exec_()
def password_dialog(self):
from password_dialog import PasswordDialog
msg = _("Please choose a password to encrypt your wallet keys.\n"
"Leave these fields empty if you want to disable encryption.")
dialog = PasswordDialog(self, None, _("Choose a password"), msg, True)
return dialog.run()[2]
def run(self, action):
if self.storage.file_exists and action != 'new':
path = self.storage.path
msg = _("The file '%s' contains an incompletely created wallet.\n"
"Do you want to complete its creation now?") % path
2015-12-23 03:05:09 -08:00
if not self.question(msg):
if self.question(_("Do you want to delete '%s'?") % path):
os.remove(path)
2015-12-22 22:10:15 -08:00
self.show_warning(_('The file was removed'))
return
return
self.show()
if action == 'new':
action, wallet_type = self.restore_or_create()
else:
wallet_type = None
try:
wallet = self.run_wallet_type(action, wallet_type)
except BaseException as e:
traceback.print_exc(file=sys.stdout)
2015-12-22 22:10:15 -08:00
self.show_error(str(e))
return
return wallet
def run_wallet_type(self, action, wallet_type):
2015-04-20 01:33:32 -07:00
if action in ['create', 'restore']:
2014-09-05 07:14:40 -07:00
if wallet_type == 'multisig':
2015-06-26 05:29:26 -07:00
wallet_type = self.multisig_choice()
2014-09-05 07:14:40 -07:00
if not wallet_type:
return
elif wallet_type == 'hardware':
hardware_wallets = []
for item in electrum.wallet.wallet_types:
t, name, description, loader = item
if t == 'hardware':
try:
p = loader()
except:
util.print_error("cannot load plugin for:", name)
continue
if p:
hardware_wallets.append((name, description))
2014-09-05 07:14:40 -07:00
wallet_type = self.choice(_("Hardware Wallet"), 'Select your hardware wallet', hardware_wallets)
2015-08-26 09:35:21 -07:00
2014-09-05 07:14:40 -07:00
if not wallet_type:
return
2014-09-05 07:41:51 -07:00
elif wallet_type == 'twofactor':
wallet_type = '2fa'
2014-08-21 10:13:26 -07:00
if action == 'create':
self.storage.put('wallet_type', wallet_type)
2014-08-21 10:13:26 -07:00
if action is None:
2014-04-06 12:38:53 -07:00
return
2014-08-21 10:13:26 -07:00
if action == 'restore':
wallet = self.restore(wallet_type)
if not wallet:
2014-04-06 12:38:53 -07:00
return
action = None
2014-08-21 10:13:26 -07:00
else:
wallet = Wallet(self.storage)
action = wallet.get_action()
# fixme: password is only needed for multiple accounts
password = None
2014-05-09 07:27:12 -07:00
# load wallet in plugins
always_hook('installwizard_load_wallet', wallet, self)
while action is not None:
util.print_error("installwizard:", wallet, action)
2014-04-06 12:38:53 -07:00
if action == 'create_seed':
2015-05-09 23:31:31 -07:00
lang = self.config.get('language')
seed = wallet.make_seed(lang)
if not self.show_seed(seed, None):
return
self.app.clipboard().clear()
if not self.verify_seed(seed, None):
return
password = self.password_dialog()
wallet.add_seed(seed, password)
wallet.create_master_keys(password)
2015-06-26 05:29:26 -07:00
elif action == 'add_cosigners':
n = int(re.match('(\d+)of(\d+)', wallet.wallet_type).group(2))
2014-08-13 07:05:43 -07:00
xpub1 = wallet.master_public_keys.get("x1/")
2015-06-26 05:29:26 -07:00
r = self.multi_mpk_dialog(xpub1, n - 1)
if not r:
return
2015-06-26 05:29:26 -07:00
for i, xpub in enumerate(r):
wallet.add_master_public_key("x%d/"%(i+2), xpub)
2014-06-02 12:54:53 -07:00
elif action == 'create_accounts':
2014-12-31 10:21:54 -08:00
wallet.create_main_account(password)
2014-05-09 07:27:12 -07:00
self.waiting_dialog(wallet.synchronize)
else:
f = always_hook('get_wizard_action', self, wallet, action)
if not f:
2014-08-26 07:23:24 -07:00
raise BaseException('unknown wizard action', action)
r = f(wallet, self)
if not r:
return
# next action
action = wallet.get_action()
2014-05-09 07:27:12 -07:00
if self.network:
# show network dialog if config does not exist
if self.config.get('server') is None:
self.network_dialog()
else:
2015-12-22 22:10:15 -08:00
self.show_warning(_('You are offline'))
2013-11-12 13:55:42 -08:00
# start wallet threads
wallet.start_threads(self.network)
2014-04-28 08:30:48 -07:00
if action == 'restore':
self.waiting_dialog(lambda: wallet.wait_until_synchronized(self.waiting_label.setText))
if self.network:
msg = _("Recovery successful") if wallet.is_found() else _("No transactions found for this seed")
else:
msg = _("This wallet was restored offline. It may contain more addresses than displayed.")
2015-12-22 22:10:15 -08:00
self.show_message(msg)
return wallet
def restore(self, t):
2015-10-27 06:33:41 -07:00
if t == 'standard':
text = self.enter_seed_dialog(MSG_ENTER_ANYTHING, None)
if not text:
return
2015-10-28 02:36:44 -07:00
password = self.password_dialog() if Wallet.is_seed(text) or Wallet.is_xprv(text) or Wallet.is_private_key(text) else None
wallet = Wallet.from_text(text, password, self.storage)
2015-10-27 06:33:41 -07:00
elif re.match('(\d+)of(\d+)', t):
n = int(re.match('(\d+)of(\d+)', t).group(2))
key_list = self.multi_seed_dialog(n - 1)
if not key_list:
return
password = self.password_dialog() if any(map(lambda x: Wallet.is_seed(x) or Wallet.is_xprv(x), key_list)) else None
wallet = Wallet.from_multisig(key_list, password, self.storage, t)
else:
self.storage.put('wallet_type', t)
2015-10-27 06:33:41 -07:00
# call the constructor to load the plugin (side effect)
Wallet(self.storage)
wallet = always_hook('installwizard_restore', self, self.storage)
if not wallet:
util.print_error("no wallet")
return
# create first keys offline
self.waiting_dialog(wallet.synchronize)
return wallet