monero-gui/wizard/WizardRecoveryWallet.qml

129 lines
5.1 KiB
QML
Raw Normal View History

// Copyright (c) 2014-2015, The Monero Project
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification, are
// permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
// of conditions and the following disclaimer in the documentation and/or other
// materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its contributors may be
// used to endorse or promote products derived from this software without specific
// prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import QtQuick 2.2
import QtQuick.Dialogs 1.2
import moneroComponents.Wallet 1.0
2017-01-30 09:37:14 +00:00
import QtQuick.Layouts 1.1
import 'utils.js' as Utils
2017-01-30 09:37:14 +00:00
ColumnLayout {
opacity: 0
visible: false
Behavior on opacity {
NumberAnimation { duration: 100; easing.type: Easing.InQuad }
}
onOpacityChanged: visible = opacity !== 0
function onWizardRestarted() {
// reset account name field
uiItem.accountNameText = defaultAccountName
// Empty seedText
uiItem.wordsTextItem.memoText = ""
uiItem.recoverFromKeysAddress = ""
uiItem.recoverFromKeysSpendKey = ""
uiItem.recoverFromKeysViewKey = ""
}
2016-07-21 10:56:17 +00:00
function onPageOpened(settingsObject) {
2017-01-26 20:54:31 +00:00
console.log("on page opened")
uiItem.checkNextButton();
2016-07-21 10:56:17 +00:00
}
function onPageClosed(settingsObject) {
settingsObject['account_name'] = uiItem.accountNameText
settingsObject['words'] = Utils.lineBreaksToSpaces(uiItem.wordsTextItem.memoText)
settingsObject['wallet_path'] = uiItem.walletPath
2017-01-26 20:54:31 +00:00
settingsObject['recover_address'] = uiItem.recoverFromKeysAddress
settingsObject['recover_viewkey'] = uiItem.recoverFromKeysViewKey
settingsObject['recover_spendkey'] = uiItem.recoverFromKeysSpendKey
2016-10-30 20:33:14 +00:00
var restoreHeight = parseInt(uiItem.restoreHeight);
settingsObject['restore_height'] = isNaN(restoreHeight)? 0 : restoreHeight
var walletFullPath = wizard.createWalletPath(uiItem.walletPath,uiItem.accountNameText);
if(!wizard.walletPathValid(walletFullPath)){
return false
}
2017-01-26 20:54:31 +00:00
return recoveryWallet(settingsObject, uiItem.recoverFromSeedMode)
}
2017-01-26 20:54:31 +00:00
function recoveryWallet(settingsObject, fromSeed) {
var testnet = appWindow.persistentSettings.testnet;
2016-10-10 18:20:50 +00:00
var restoreHeight = settingsObject.restore_height;
var tmp_wallet_filename = oshelper.temporaryFilename()
console.log("Creating temporary wallet", tmp_wallet_filename)
2017-01-26 20:54:31 +00:00
// From seed or keys
if(fromSeed)
var wallet = walletManager.recoveryWallet(tmp_wallet_filename, settingsObject.words, testnet, restoreHeight)
else
var wallet = walletManager.createWalletFromKeys(tmp_wallet_filename, settingsObject.wallet_language, testnet,
2017-01-26 20:54:31 +00:00
settingsObject.recover_address, settingsObject.recover_viewkey,
settingsObject.recover_spendkey, restoreHeight)
var success = wallet.status === Wallet.Status_Ok;
if (success) {
m_wallet = wallet;
2016-10-10 19:38:30 +00:00
settingsObject['is_recovering'] = true;
settingsObject['tmp_wallet_filename'] = tmp_wallet_filename
} else {
2017-01-29 17:55:57 +00:00
console.log(wallet.errorString)
walletErrorDialog.text = wallet.errorString;
walletErrorDialog.open();
walletManager.closeWallet();
}
return success;
}
2016-02-29 14:39:39 +00:00
2016-02-29 14:39:39 +00:00
WizardManageWalletUI {
id: uiItem
accountNameText: defaultAccountName
2017-01-26 20:54:31 +00:00
titleText: qsTr("Restore wallet") + translationManager.emptyString
wordsTextItem.clipboardButtonVisible: false
wordsTextItem.tipTextVisible: false
wordsTextItem.memoTextReadOnly: false
wordsTextItem.memoText: ""
2017-01-26 20:54:31 +00:00
wordsTextItem.visible: true
2016-10-07 23:48:42 +00:00
restoreHeightVisible: true
2017-01-26 20:54:31 +00:00
recoverMode: true
2016-02-06 16:19:54 +00:00
wordsTextItem.onMemoTextChanged: {
2016-07-21 10:56:17 +00:00
checkNextButton();
2016-02-06 16:19:54 +00:00
}
}
Component.onCompleted: {
parent.wizardRestarted.connect(onWizardRestarted)
}
}