openethereum/rpc/src/v1/impls/personal.rs

79 lines
2.4 KiB
Rust
Raw Normal View History

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-03-10 16:15:10 +01:00
use util::keys::store::*;
use util::Address;
2016-03-10 16:15:10 +01:00
use std::sync::RwLock;
2016-03-04 12:46:54 +01:00
2016-03-04 12:53:18 +01:00
/// Account management (personal) rpc implementation.
2016-03-04 12:46:54 +01:00
pub struct PersonalClient {
2016-03-10 16:15:10 +01:00
secret_store: Weak<RwLock<SecretStore>>,
2016-03-04 12:46:54 +01:00
}
impl PersonalClient {
/// Creates new PersonalClient
2016-03-10 16:15:10 +01:00
pub fn new(store: &Arc<RwLock<SecretStore>>) -> Self {
2016-03-04 12:46:54 +01:00
PersonalClient {
2016-03-10 16:15:10 +01:00
secret_store: Arc::downgrade(store),
2016-03-04 12:46:54 +01:00
}
}
}
impl Personal for PersonalClient {
fn accounts(&self, _: Params) -> Result<Value, Error> {
2016-03-10 16:15:10 +01:00
let store_wk = take_weak!(self.secret_store);
let store = store_wk.read().unwrap();
2016-03-04 12:46:54 +01:00
match store.accounts() {
Ok(account_list) => {
Ok(Value::Array(account_list.iter()
.map(|&(account, _)| Value::String(format!("{:?}", account)))
.collect::<Vec<Value>>())
)
}
Err(_) => Err(Error::internal_error())
}
}
fn new_account(&self, params: Params) -> Result<Value, Error> {
from_params::<(String, )>(params).and_then(
|(pass, )| {
2016-03-10 16:15:10 +01:00
let store_wk = take_weak!(self.secret_store);
let mut store = store_wk.write().unwrap();
match store.new_account(&pass) {
Ok(address) => Ok(Value::String(format!("{:?}", address))),
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 16:15:10 +01:00
let store_wk = take_weak!(self.secret_store);
let store = store_wk.read().unwrap();
match store.unlock_account(&account, &account_pass) {
Ok(_) => Ok(Value::Bool(true)),
Err(_) => Ok(Value::Bool(false)),
2016-03-04 12:46:54 +01:00
}
})
}
}