2016-03-04 12:46:54 +01:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// 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
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-03-04 12:53:18 +01:00
|
|
|
//! Account management (personal) rpc implementation
|
2016-03-04 12:46:54 +01:00
|
|
|
use std::sync::{Arc, Weak};
|
|
|
|
use jsonrpc_core::*;
|
|
|
|
use v1::traits::Personal;
|
2016-05-26 20:09:10 +02:00
|
|
|
use v1::types::TransactionRequest;
|
2016-05-26 21:14:01 +02:00
|
|
|
use v1::impls::sign_and_dispatch;
|
2016-03-10 16:15:10 +01:00
|
|
|
use util::keys::store::*;
|
2016-05-26 20:09:10 +02:00
|
|
|
use util::numbers::*;
|
|
|
|
use ethcore::client::BlockChainClient;
|
2016-05-26 21:14:01 +02:00
|
|
|
use ethminer::MinerService;
|
2016-03-04 12:46:54 +01:00
|
|
|
|
2016-03-04 12:53:18 +01:00
|
|
|
/// Account management (personal) rpc implementation.
|
2016-05-26 20:09:10 +02:00
|
|
|
pub struct PersonalClient<A, C, M>
|
|
|
|
where A: AccountProvider, C: BlockChainClient, M: MinerService {
|
2016-03-11 12:50:13 +01:00
|
|
|
accounts: Weak<A>,
|
2016-05-26 20:09:10 +02:00
|
|
|
client: Weak<C>,
|
|
|
|
miner: Weak<M>,
|
2016-03-04 12:46:54 +01:00
|
|
|
}
|
|
|
|
|
2016-05-26 20:09:10 +02:00
|
|
|
impl<A, C, M> PersonalClient<A, C, M>
|
|
|
|
where A: AccountProvider, C: BlockChainClient, M: MinerService {
|
2016-03-04 12:46:54 +01:00
|
|
|
/// Creates new PersonalClient
|
2016-05-26 20:09:10 +02:00
|
|
|
pub fn new(store: &Arc<A>, client: &Arc<C>, miner: &Arc<M>) -> Self {
|
2016-03-04 12:46:54 +01:00
|
|
|
PersonalClient {
|
2016-03-10 20:09:45 +01:00
|
|
|
accounts: Arc::downgrade(store),
|
2016-05-26 20:09:10 +02:00
|
|
|
client: Arc::downgrade(client),
|
|
|
|
miner: Arc::downgrade(miner),
|
2016-03-04 12:46:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-26 20:09:10 +02:00
|
|
|
impl<A: 'static, C: 'static, M: 'static> Personal for PersonalClient<A, C, M>
|
|
|
|
where A: AccountProvider, C: BlockChainClient, M: MinerService {
|
2016-03-04 12:46:54 +01:00
|
|
|
fn accounts(&self, _: Params) -> Result<Value, Error> {
|
2016-03-10 20:09:45 +01:00
|
|
|
let store = take_weak!(self.accounts);
|
2016-03-04 12:46:54 +01:00
|
|
|
match store.accounts() {
|
2016-03-12 19:21:08 +01:00
|
|
|
Ok(account_list) => to_value(&account_list),
|
2016-03-04 12:46:54 +01:00
|
|
|
Err(_) => Err(Error::internal_error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-04 14:23:00 +01:00
|
|
|
fn new_account(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(String, )>(params).and_then(
|
|
|
|
|(pass, )| {
|
2016-03-10 20:09:45 +01:00
|
|
|
let store = take_weak!(self.accounts);
|
2016-03-04 14:23:00 +01:00
|
|
|
match store.new_account(&pass) {
|
2016-04-06 12:15:20 +02:00
|
|
|
Ok(address) => to_value(&address),
|
2016-03-04 14:23:00 +01:00
|
|
|
Err(_) => Err(Error::internal_error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
2016-03-04 12:46:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn unlock_account(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(Address, String, u64)>(params).and_then(
|
|
|
|
|(account, account_pass, _)|{
|
2016-03-10 20:09:45 +01:00
|
|
|
let store = take_weak!(self.accounts);
|
2016-05-21 22:23:16 +02:00
|
|
|
match store.unlock_account_temp(&account, &account_pass) {
|
2016-03-04 14:23:00 +01:00
|
|
|
Ok(_) => Ok(Value::Bool(true)),
|
|
|
|
Err(_) => Ok(Value::Bool(false)),
|
2016-03-04 12:46:54 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2016-05-26 20:09:10 +02:00
|
|
|
|
|
|
|
fn sign_and_send_transaction(&self, params: Params) -> Result<Value, Error> {
|
|
|
|
from_params::<(TransactionRequest, String)>(params)
|
|
|
|
.and_then(|(request, password)| {
|
|
|
|
let accounts = take_weak!(self.accounts);
|
|
|
|
match accounts.locked_account_secret(&request.from, &password) {
|
2016-05-26 21:14:01 +02:00
|
|
|
Ok(secret) => sign_and_dispatch(&self.client, &self.miner, request, secret),
|
2016-05-26 20:09:10 +02:00
|
|
|
Err(_) => to_value(&H256::zero()),
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2016-03-04 12:46:54 +01:00
|
|
|
}
|