2018-01-07 05:20:45 +00:00
|
|
|
// Copyright (c) 2014-2018, The Monero Project
|
2015-04-01 08:56:05 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2014-08-19 12:58:02 +00:00
|
|
|
import QtQuick 2.2
|
2016-10-07 20:05:51 +00:00
|
|
|
import moneroComponents.WalletManager 1.0
|
|
|
|
import moneroComponents.Wallet 1.0
|
2017-01-30 09:37:14 +00:00
|
|
|
import QtQuick.Layouts 1.1
|
2014-08-21 10:09:52 +00:00
|
|
|
import QtQuick.Dialogs 1.2
|
2016-08-19 11:44:44 +00:00
|
|
|
import 'utils.js' as Utils
|
2014-08-19 12:58:02 +00:00
|
|
|
|
2017-01-30 09:37:14 +00:00
|
|
|
ColumnLayout {
|
2014-08-20 19:19:21 +00:00
|
|
|
opacity: 0
|
|
|
|
visible: false
|
2016-02-02 21:09:45 +00:00
|
|
|
|
2014-08-20 19:19:21 +00:00
|
|
|
Behavior on opacity {
|
|
|
|
NumberAnimation { duration: 100; easing.type: Easing.InQuad }
|
|
|
|
}
|
2014-08-19 12:58:02 +00:00
|
|
|
|
2016-09-22 21:05:20 +00:00
|
|
|
|
2014-08-20 19:19:21 +00:00
|
|
|
onOpacityChanged: visible = opacity !== 0
|
|
|
|
|
2016-12-08 14:37:16 +00:00
|
|
|
function onWizardRestarted() {
|
|
|
|
// reset account name field
|
|
|
|
uiItem.accountNameText = defaultAccountName
|
|
|
|
}
|
|
|
|
|
2016-06-10 13:41:13 +00:00
|
|
|
//! function called each time we display this page
|
|
|
|
|
2016-07-21 10:56:17 +00:00
|
|
|
function onPageOpened(settingsOblect) {
|
|
|
|
checkNextButton()
|
|
|
|
}
|
|
|
|
|
2016-06-10 13:41:13 +00:00
|
|
|
function onPageClosed(settingsObject) {
|
2016-02-02 21:09:45 +00:00
|
|
|
settingsObject['account_name'] = uiItem.accountNameText
|
|
|
|
settingsObject['words'] = uiItem.wordsTexttext
|
|
|
|
settingsObject['wallet_path'] = uiItem.walletPath
|
2017-04-03 16:51:55 +00:00
|
|
|
console.log("path " +uiItem.walletPath);
|
2016-10-30 17:07:56 +00:00
|
|
|
var walletFullPath = wizard.createWalletPath(uiItem.walletPath,uiItem.accountNameText);
|
2016-11-29 16:14:11 +00:00
|
|
|
return wizard.walletPathValid(walletFullPath);
|
2014-08-21 10:09:52 +00:00
|
|
|
}
|
|
|
|
|
2016-07-21 10:56:17 +00:00
|
|
|
function checkNextButton() {
|
2016-08-19 11:44:44 +00:00
|
|
|
var wordsArray = Utils.lineBreaksToSpaces(uiItem.wordsTextItem.memoText).split(" ");
|
2016-07-21 10:56:17 +00:00
|
|
|
wizard.nextButton.enabled = wordsArray.length === 25;
|
|
|
|
}
|
|
|
|
|
2016-06-10 13:41:13 +00:00
|
|
|
//! function called each time we hide this page
|
|
|
|
//
|
|
|
|
|
|
|
|
|
2016-02-23 15:59:26 +00:00
|
|
|
function createWallet(settingsObject) {
|
2016-06-10 13:41:13 +00:00
|
|
|
// TODO: create wallet in temporary filename and a) move it to the path specified by user after the final
|
|
|
|
// page submitted or b) delete it when program closed before reaching final page
|
|
|
|
|
2016-10-30 20:31:33 +00:00
|
|
|
// Always delete the wallet object before creating new - we could be stepping back from recovering wallet
|
2017-08-06 15:11:12 +00:00
|
|
|
if (typeof m_wallet !== 'undefined') {
|
2016-12-04 12:13:59 +00:00
|
|
|
walletManager.closeWallet()
|
2016-10-30 20:31:33 +00:00
|
|
|
console.log("deleting wallet")
|
2016-02-24 10:25:20 +00:00
|
|
|
}
|
2016-10-30 20:31:33 +00:00
|
|
|
|
2017-01-03 20:44:55 +00:00
|
|
|
var tmp_wallet_filename = oshelper.temporaryFilename();
|
|
|
|
console.log("Creating temporary wallet", tmp_wallet_filename)
|
2018-03-05 16:19:45 +00:00
|
|
|
var nettype = appWindow.persistentSettings.nettype;
|
2018-07-06 09:39:58 +00:00
|
|
|
var kdfRounds = appWindow.persistentSettings.kdfRounds;
|
2017-01-03 20:44:55 +00:00
|
|
|
var wallet = walletManager.createWallet(tmp_wallet_filename, "", settingsObject.wallet_language,
|
2018-07-06 09:39:58 +00:00
|
|
|
nettype, kdfRounds)
|
2016-10-30 20:31:33 +00:00
|
|
|
uiItem.wordsTextItem.memoText = wallet.seed
|
|
|
|
// saving wallet in "global" settings object
|
|
|
|
// TODO: wallet should have a property pointing to the file where it stored or loaded from
|
2017-08-06 15:11:12 +00:00
|
|
|
m_wallet = wallet;
|
|
|
|
settingsObject['tmp_wallet_filename'] = tmp_wallet_filename
|
2016-02-23 15:59:26 +00:00
|
|
|
}
|
|
|
|
|
2016-02-02 21:09:45 +00:00
|
|
|
WizardManageWalletUI {
|
|
|
|
id: uiItem
|
2017-01-26 20:54:31 +00:00
|
|
|
titleText: qsTr("Create a new wallet") + translationManager.emptyString
|
2016-02-06 12:49:31 +00:00
|
|
|
wordsTextItem.clipboardButtonVisible: true
|
|
|
|
wordsTextItem.tipTextVisible: true
|
|
|
|
wordsTextItem.memoTextReadOnly: true
|
2016-10-07 23:48:42 +00:00
|
|
|
restoreHeightVisible:false
|
2017-01-26 20:54:31 +00:00
|
|
|
recoverMode: false
|
2014-08-21 10:09:52 +00:00
|
|
|
}
|
2016-12-08 14:37:16 +00:00
|
|
|
|
|
|
|
Component.onCompleted: {
|
|
|
|
parent.wizardRestarted.connect(onWizardRestarted)
|
|
|
|
}
|
2014-08-19 12:58:02 +00:00
|
|
|
}
|