2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-04-29 20:52:08 +02:00
|
|
|
// 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/>.
|
|
|
|
|
|
|
|
//! RPC generic methods implementation.
|
|
|
|
use std::collections::BTreeMap;
|
2017-11-14 11:38:17 +01:00
|
|
|
use jsonrpc_core::Result;
|
2016-04-29 20:52:08 +02:00
|
|
|
use v1::traits::Rpc;
|
|
|
|
|
|
|
|
/// RPC generic methods implementation.
|
|
|
|
pub struct RpcClient {
|
|
|
|
modules: BTreeMap<String, String>,
|
2016-05-04 14:03:29 +02:00
|
|
|
valid_apis: Vec<String>,
|
2016-04-29 20:52:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl RpcClient {
|
|
|
|
/// Creates new `RpcClient`.
|
|
|
|
pub fn new(modules: BTreeMap<String, String>) -> Self {
|
2016-05-04 14:03:29 +02:00
|
|
|
// geth 1.3.6 fails upon receiving unknown api
|
|
|
|
let valid_apis = vec!["web3", "eth", "net", "personal", "rpc"];
|
|
|
|
|
2016-04-29 20:52:08 +02:00
|
|
|
RpcClient {
|
2016-05-04 14:03:29 +02:00
|
|
|
modules: modules,
|
|
|
|
valid_apis: valid_apis.into_iter().map(|x| x.to_owned()).collect(),
|
2016-04-29 20:52:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Rpc for RpcClient {
|
2017-11-14 11:38:17 +01:00
|
|
|
fn rpc_modules(&self) -> Result<BTreeMap<String, String>> {
|
2016-05-04 14:03:29 +02:00
|
|
|
let modules = self.modules.iter()
|
|
|
|
.fold(BTreeMap::new(), |mut map, (k, v)| {
|
2016-10-04 19:05:46 +02:00
|
|
|
map.insert(k.to_owned(), v.to_owned());
|
2016-05-04 14:03:29 +02:00
|
|
|
map
|
|
|
|
});
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
Ok(modules)
|
2016-05-04 14:03:29 +02:00
|
|
|
}
|
|
|
|
|
2017-11-14 11:38:17 +01:00
|
|
|
fn modules(&self) -> Result<BTreeMap<String, String>> {
|
2016-05-04 14:03:29 +02:00
|
|
|
let modules = self.modules.iter()
|
|
|
|
.filter(|&(k, _v)| {
|
|
|
|
self.valid_apis.contains(k)
|
|
|
|
})
|
|
|
|
.fold(BTreeMap::new(), |mut map, (k, v)| {
|
2016-10-04 19:05:46 +02:00
|
|
|
map.insert(k.to_owned(), v.to_owned());
|
2016-05-04 14:03:29 +02:00
|
|
|
map
|
|
|
|
});
|
2016-10-04 19:05:46 +02:00
|
|
|
|
|
|
|
Ok(modules)
|
2016-04-29 20:52:08 +02:00
|
|
|
}
|
|
|
|
}
|