electrum-bitcoinprivate/lib/base_wizard.py

316 lines
12 KiB
Python
Raw Normal View History

#!/usr/bin/env python
#
# Electrum - lightweight Bitcoin client
# Copyright (C) 2016 Thomas Voegtlin
#
# Permission is hereby granted, free of charge, to any person
# obtaining a copy of this software and associated documentation files
# (the "Software"), to deal in the Software without restriction,
# including without limitation the rights to use, copy, modify, merge,
# publish, distribute, sublicense, and/or sell copies of the Software,
# and to permit persons to whom the Software is furnished to do so,
# subject to the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import os
import keystore
2016-08-19 08:26:57 -07:00
from wallet import Wallet, Imported_Wallet, Standard_Wallet, Multisig_Wallet, WalletStorage, wallet_types
2016-06-20 04:30:54 -07:00
from i18n import _
from plugins import run_hook
class BaseWizard(object):
2016-06-20 07:25:11 -07:00
def __init__(self, config, network, path):
super(BaseWizard, self).__init__()
self.config = config
self.network = network
2016-06-20 07:25:11 -07:00
self.storage = WalletStorage(path)
self.wallet = None
2016-06-20 07:25:11 -07:00
self.stack = []
self.plugin = None
self.keystores = []
2016-07-30 06:04:15 -07:00
def run(self, *args):
action = args[0]
args = args[1:]
2016-06-20 07:25:11 -07:00
self.stack.append((action, args))
if not action:
return
if type(action) is tuple:
self.plugin, action = action
if self.plugin and hasattr(self.plugin, action):
f = getattr(self.plugin, action)
apply(f, (self,) + args)
2016-06-20 07:25:11 -07:00
elif hasattr(self, action):
f = getattr(self, action)
2016-07-30 06:04:15 -07:00
apply(f, args)
else:
raise BaseException("unknown action", action)
2016-06-20 07:25:11 -07:00
def can_go_back(self):
return len(self.stack)>1
def go_back(self):
if not self.can_go_back():
return
self.stack.pop()
action, args = self.stack.pop()
self.run(action, *args)
def new(self):
name = os.path.basename(self.storage.path)
2016-06-20 07:25:11 -07:00
title = _("Welcome to the Electrum installation wizard.")
message = '\n'.join([
_("The wallet '%s' does not exist.") % name,
_("What kind of wallet do you want to create?")
])
2016-06-20 07:25:11 -07:00
wallet_kinds = [
('standard', _("Standard wallet")),
2016-08-19 08:26:57 -07:00
('2fa', _("Wallet with two-factor authentication")),
2016-06-20 07:25:11 -07:00
('multisig', _("Multi-signature wallet")),
('imported', _("Watch Bitcoin addresses")),
]
2016-08-19 08:26:57 -07:00
choices = [pair for pair in wallet_kinds if pair[0] in wallet_types]
self.choice_dialog(title=title, message=message, choices=choices, run_next=self.on_wallet_type)
2016-06-20 07:25:11 -07:00
def on_wallet_type(self, choice):
self.wallet_type = choice
if choice == 'standard':
2016-08-19 02:47:07 -07:00
action = 'choose_keystore'
2016-06-20 07:25:11 -07:00
elif choice == 'multisig':
action = 'choose_multisig'
2016-08-19 08:26:57 -07:00
elif choice == '2fa':
self.storage.put('wallet_type', '2fa')
self.storage.put('use_trustedcoin', True)
self.plugin = self.plugins.load_plugin('trustedcoin')
action = self.storage.get_action()
elif choice == 'imported':
action = 'import_addresses'
2016-06-20 07:25:11 -07:00
self.run(action)
def choose_multisig(self):
def on_multisig(m, n):
self.multisig_type = "%dof%d"%(m, n)
self.storage.put('wallet_type', self.multisig_type)
self.n = n
2016-08-19 02:47:07 -07:00
self.run('choose_keystore')
2016-06-20 07:25:11 -07:00
self.multisig_dialog(run_next=on_multisig)
2016-08-19 02:47:07 -07:00
def choose_keystore(self):
2016-08-19 05:45:52 -07:00
assert self.wallet_type in ['standard', 'multisig']
i = len(self.keystores)
title = _('Add cosigner') + ' (%d of %d)'%(i+1, self.n) if self.wallet_type=='multisig' else _('Keystore')
if self.wallet_type =='standard' or i==0:
message = _('Do you want to create a new seed, or to restore a wallet using an existing seed?')
choices = [
('create_seed', _('Create a new seed')),
2016-08-24 21:43:27 -07:00
('restore_from_seed', _('I already have a seed')),
('restore_from_key', _('Import keys')),
('choose_hw_device', _('Use hardware device')),
]
else:
message = _('Add a cosigner to your multi-sig wallet')
choices = [
('restore_from_key', _('Import cosigner key')),
('choose_hw_device', _('Cosign with hardware device')),
]
2016-08-19 05:45:52 -07:00
self.choice_dialog(title=title, message=message, choices=choices, run_next=self.run)
def import_addresses(self):
v = keystore.is_address_list
title = _("Import Bitcoin Addresses")
message = _("Enter a list of Bitcoin addresses. This will create a watching-only wallet.")
2016-08-24 21:43:27 -07:00
self.restore_keys_dialog(title=title, message=message, run_next=self.on_import_addresses, is_valid=v)
def on_import_addresses(self, text):
assert keystore.is_address_list(text)
self.wallet = Imported_Wallet(self.storage)
for x in text.split():
self.wallet.import_address(x)
self.terminate()
def restore_from_key(self):
if self.wallet_type == 'standard':
v = keystore.is_any_key
title = _("Import keys")
message = ' '.join([
_("To create a watching-only wallet, please enter your master public key (xpub)."),
_("To create a spending wallet, please enter a master private key (xprv), or a list of Bitcoin private keys.")
])
else:
v = keystore.is_bip32_key
title = _("Master public or private key")
message = ' '.join([
_("To create a watching-only wallet, please enter your master public key (xpub)."),
_("To create a spending wallet, please enter a master private key (xprv).")
])
2016-08-24 21:43:27 -07:00
self.restore_keys_dialog(title=title, message=message, run_next=self.on_restore_from_key, is_valid=v)
def on_restore_from_key(self, text):
k = keystore.from_keys(text)
self.on_keystore(k)
2016-06-20 07:25:11 -07:00
def choose_hw_device(self):
2016-08-19 02:47:07 -07:00
title = _('Hardware Keystore')
2016-08-23 04:40:11 -07:00
# check available plugins
support = self.plugins.get_hardware_support()
if not support:
msg = '\n'.join([
2016-06-20 07:25:11 -07:00
_('No hardware wallet support found on your system.'),
_('Please install the relevant libraries (eg python-trezor for Trezor).'),
])
self.confirm_dialog(title=title, message=msg, run_next= lambda x: self.choose_hw_device())
2016-08-23 04:40:11 -07:00
return
# scan devices
devices = []
2016-08-23 20:58:41 -07:00
devmgr = self.plugins.device_manager
2016-08-23 04:40:11 -07:00
for name, description, plugin in support:
try:
2016-08-23 20:58:41 -07:00
# FIXME: side-effect: unpaired_device_info sets client.handler
u = devmgr.unpaired_device_infos(None, plugin)
2016-08-23 04:40:11 -07:00
except:
2016-08-23 20:58:41 -07:00
devmgr.print_error("error", name)
2016-08-23 04:40:11 -07:00
continue
devices += map(lambda x: (name, x), u)
if not devices:
msg = '\n'.join([
_('No hardware device detected.'),
_('To trigger a rescan, press \'next\'.'),
])
self.confirm_dialog(title=title, message=msg, run_next= lambda x: self.choose_hw_device())
2016-08-23 04:40:11 -07:00
return
# select device
self.devices = devices
choices = []
for name, info in devices:
state = _("initialized") if info.initialized else _("wiped")
label = info.label or _("An unnamed %s")%name
descr = "%s [%s, %s]" % (label, name, state)
choices.append(((name, info), descr))
2016-08-23 04:40:11 -07:00
msg = _('Select a device') + ':'
self.choice_dialog(title=title, message=msg, choices=choices, run_next=self.on_device)
def on_device(self, name, device_info):
self.plugin = self.plugins.get_plugin(name)
self.plugin.setup_device(device_info, self)
print device_info
2016-08-23 04:40:11 -07:00
f = lambda x: self.run('on_hardware_account_id', name, device_info, x)
self.account_id_dialog(run_next=f)
def on_hardware_account_id(self, name, device_info, account_id):
from keystore import hardware_keystore, bip44_derivation
derivation = bip44_derivation(int(account_id))
xpub = self.plugin.get_xpub(device_info.device.id_, derivation, self)
d = {
'type': 'hardware',
'hw_type': name,
'derivation': derivation,
'xpub': xpub,
}
k = hardware_keystore(d)
2016-08-25 03:42:00 -07:00
self.on_keystore(k)
2016-08-24 21:43:27 -07:00
def restore_from_seed(self):
self.restore_seed_dialog(run_next=self.on_seed, is_valid=keystore.is_seed)
def on_seed(self, seed, add_passphrase, is_bip39):
2016-08-24 21:43:27 -07:00
self.is_bip39 = is_bip39
f = lambda x: self.run('create_keystore', seed, x)
if add_passphrase:
self.request_passphrase(run_next=f)
2016-08-24 21:43:27 -07:00
else:
f('')
def create_keystore(self, seed, passphrase):
2016-08-24 21:43:27 -07:00
if self.is_bip39:
f = lambda account_id: self.run('on_bip44', seed, passphrase, account_id)
2016-08-24 21:43:27 -07:00
self.account_id_dialog(run_next=f)
else:
k = keystore.from_seed(seed, passphrase)
self.on_keystore(k)
2016-08-24 21:43:27 -07:00
def on_bip44(self, seed, passphrase, account_id):
import keystore
k = keystore.BIP32_KeyStore({})
bip32_seed = keystore.bip39_to_seed(seed, passphrase)
derivation = "m/44'/0'/%d'"%account_id
k.add_xprv_from_seed(bip32_seed, derivation)
self.on_keystore(k)
def on_keystore(self, k):
if self.wallet_type == 'standard':
self.keystores.append(k)
self.run('create_wallet')
2016-06-20 07:25:11 -07:00
elif self.wallet_type == 'multisig':
if k.xpub in map(lambda x: x.xpub, self.keystores):
raise BaseException('duplicate key')
self.keystores.append(k)
if len(self.keystores) == 1:
xpub = k.get_master_public_key()
self.stack = []
self.run('show_xpub_and_add_cosigners', xpub)
elif len(self.keystores) < self.n:
self.run('choose_keystore')
else:
self.run('create_wallet')
def create_wallet(self):
if any(k.may_have_password() for k in self.keystores):
self.request_password(run_next=self.on_password)
else:
self.on_password(None)
def on_password(self, password):
self.storage.put('use_encryption', bool(password))
for k in self.keystores:
if k.may_have_password():
k.update_password(None, password)
if self.wallet_type == 'standard':
self.storage.put('keystore', k.dump())
self.wallet = Standard_Wallet(self.storage)
self.run('create_addresses')
elif self.wallet_type == 'multisig':
for i, k in enumerate(self.keystores):
self.storage.put('x%d/'%(i+1), k.dump())
self.storage.write()
self.wallet = Multisig_Wallet(self.storage)
self.run('create_addresses')
def show_xpub_and_add_cosigners(self, xpub):
self.show_xpub_dialog(xpub=xpub, run_next=lambda x: self.run('choose_keystore'))
def add_cosigners(self, password, i):
self.add_cosigner_dialog(run_next=lambda x: self.on_cosigner(x, password, i), index=i, is_valid=keystore.is_xpub)
def on_cosigner(self, text, password, i):
k = keystore.from_keys(text, password)
self.on_keystore(k)
def create_seed(self):
from electrum.mnemonic import Mnemonic
seed = Mnemonic('en').make_seed()
self.show_seed_dialog(run_next=self.confirm_seed, seed_text=seed)
def confirm_seed(self, seed):
self.confirm_seed_dialog(run_next=self.on_seed, is_valid=lambda x: x==seed)
def create_addresses(self):
def task():
self.wallet.synchronize()
self.wallet.storage.write()
self.terminate()
msg = _("Electrum is generating your addresses, please wait.")
self.waiting_dialog(task, msg)