2020-01-17 14:27:28 +01:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
2019-01-07 11:33:07 +01:00
|
|
|
// This file is part of Parity Ethereum.
|
2016-07-25 16:09:47 +02:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2016-07-25 16:09:47 +02:00
|
|
|
// 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.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2016-07-25 16:09:47 +02:00
|
|
|
// 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
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-07-25 16:09:47 +02:00
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
|
|
|
|
use ethkey::Password;
|
|
|
|
use ethstore::PresaleWallet;
|
2016-07-25 16:09:47 +02:00
|
|
|
use helpers::{password_prompt, password_from_file};
|
2016-12-12 16:51:07 +01:00
|
|
|
use params::SpecType;
|
2016-07-25 16:09:47 +02:00
|
|
|
|
|
|
|
#[derive(Debug, PartialEq)]
|
|
|
|
pub struct ImportWallet {
|
2019-05-28 07:50:10 +02:00
|
|
|
pub iterations: u32,
|
2016-07-25 16:09:47 +02:00
|
|
|
pub path: String,
|
2016-12-12 16:51:07 +01:00
|
|
|
pub spec: SpecType,
|
2016-07-25 16:09:47 +02:00
|
|
|
pub wallet_path: String,
|
|
|
|
pub password_file: Option<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn execute(cmd: ImportWallet) -> Result<String, String> {
|
2019-02-07 14:34:24 +01:00
|
|
|
let password = match cmd.password_file.clone() {
|
2016-12-27 12:53:56 +01:00
|
|
|
Some(file) => password_from_file(file)?,
|
|
|
|
None => password_prompt()?,
|
2016-07-25 16:09:47 +02:00
|
|
|
};
|
|
|
|
|
2019-02-07 14:34:24 +01:00
|
|
|
let wallet = PresaleWallet::open(cmd.wallet_path.clone()).map_err(|_| "Unable to open presale wallet.")?;
|
2016-12-27 12:53:56 +01:00
|
|
|
let kp = wallet.decrypt(&password).map_err(|_| "Invalid password.")?;
|
2019-02-07 14:34:24 +01:00
|
|
|
let address = kp.address();
|
|
|
|
import_account(&cmd, kp, password);
|
2016-07-25 16:09:47 +02:00
|
|
|
Ok(format!("{:?}", address))
|
|
|
|
}
|
2019-02-07 14:34:24 +01:00
|
|
|
|
|
|
|
#[cfg(feature = "accounts")]
|
2019-10-23 13:03:46 +02:00
|
|
|
pub fn import_account(cmd: &ImportWallet, kp: parity_crypto::publickey::KeyPair, password: Password) {
|
2019-02-07 14:34:24 +01:00
|
|
|
use accounts::{AccountProvider, AccountProviderSettings};
|
|
|
|
use ethstore::EthStore;
|
|
|
|
use ethstore::accounts_dir::RootDiskDirectory;
|
|
|
|
|
|
|
|
let dir = Box::new(RootDiskDirectory::create(cmd.path.clone()).unwrap());
|
|
|
|
let secret_store = Box::new(EthStore::open_with_iterations(dir, cmd.iterations).unwrap());
|
|
|
|
let acc_provider = AccountProvider::new(secret_store, AccountProviderSettings::default());
|
|
|
|
acc_provider.insert_account(kp.secret().clone(), &password).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature = "accounts"))]
|
2019-10-23 13:03:46 +02:00
|
|
|
pub fn import_account(_cmd: &ImportWallet, _kp: parity_crypto::publickey::KeyPair, _password: Password) {}
|