2020-09-22 14:53:52 +02:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of OpenEthereum.
|
2018-06-04 10:19:50 +02:00
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is free software: you can redistribute it and/or modify
|
2018-06-04 10:19:50 +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.
|
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is distributed in the hope that it will be useful,
|
2018-06-04 10:19:50 +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
|
2020-09-22 14:53:52 +02:00
|
|
|
// along with OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
|
2018-06-04 10:19:50 +02:00
|
|
|
|
2016-09-20 12:19:07 +02:00
|
|
|
use client::{Rpc, RpcError};
|
2019-02-25 14:27:28 +01:00
|
|
|
use ethereum_types::U256;
|
2017-10-05 12:35:01 +02:00
|
|
|
use futures::Canceled;
|
2019-02-25 14:27:28 +01:00
|
|
|
use rpc::signer::{ConfirmationRequest, TransactionCondition, TransactionModification};
|
2017-02-13 16:38:47 +01:00
|
|
|
use serde;
|
2016-09-20 12:19:07 +02:00
|
|
|
use serde_json::{to_value, Value as JsonValue};
|
|
|
|
use std::path::PathBuf;
|
2017-11-14 11:38:17 +01:00
|
|
|
use BoxFuture;
|
2016-09-20 12:19:07 +02:00
|
|
|
|
|
|
|
pub struct SignerRpc {
|
|
|
|
rpc: Rpc,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SignerRpc {
|
|
|
|
pub fn new(url: &str, authfile: &PathBuf) -> Result<Self, RpcError> {
|
2016-12-27 12:53:56 +01:00
|
|
|
Ok(SignerRpc {
|
|
|
|
rpc: Rpc::new(&url, authfile)?,
|
|
|
|
})
|
2016-09-20 12:19:07 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-05-24 12:24:07 +02:00
|
|
|
pub fn requests_to_confirm(
|
|
|
|
&mut self,
|
|
|
|
) -> BoxFuture<Result<Vec<ConfirmationRequest>, RpcError>, Canceled> {
|
2016-12-13 12:17:01 +01:00
|
|
|
self.rpc.request("signer_requestsToConfirm", vec![])
|
2016-09-20 12:19:07 +02:00
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2016-11-02 15:55:03 +01:00
|
|
|
pub fn confirm_request(
|
|
|
|
&mut self,
|
|
|
|
id: U256,
|
2016-12-11 14:59:57 +01:00
|
|
|
new_gas: Option<U256>,
|
2016-11-02 15:55:03 +01:00
|
|
|
new_gas_price: Option<U256>,
|
2017-02-03 19:32:10 +01:00
|
|
|
new_condition: Option<Option<TransactionCondition>>,
|
2016-11-02 15:55:03 +01:00
|
|
|
pwd: &str,
|
2017-05-24 12:24:07 +02:00
|
|
|
) -> BoxFuture<Result<U256, RpcError>, Canceled> {
|
2016-12-13 12:17:01 +01:00
|
|
|
self.rpc.request(
|
|
|
|
"signer_confirmRequest",
|
|
|
|
vec![
|
2017-02-13 16:38:47 +01:00
|
|
|
Self::to_value(&format!("{:#x}", id)),
|
|
|
|
Self::to_value(&TransactionModification {
|
|
|
|
sender: None,
|
|
|
|
gas_price: new_gas_price,
|
|
|
|
gas: new_gas,
|
|
|
|
condition: new_condition,
|
|
|
|
}),
|
|
|
|
Self::to_value(&pwd),
|
2016-09-20 12:19:07 +02:00
|
|
|
],
|
|
|
|
)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-05-24 12:24:07 +02:00
|
|
|
pub fn reject_request(&mut self, id: U256) -> BoxFuture<Result<bool, RpcError>, Canceled> {
|
2016-12-13 12:17:01 +01:00
|
|
|
self.rpc.request(
|
|
|
|
"signer_rejectRequest",
|
2016-09-20 12:19:07 +02:00
|
|
|
vec![JsonValue::String(format!("{:#x}", id))],
|
|
|
|
)
|
|
|
|
}
|
2020-08-05 06:08:03 +02:00
|
|
|
|
2017-02-13 16:38:47 +01:00
|
|
|
fn to_value<T: serde::Serialize>(v: &T) -> JsonValue {
|
|
|
|
to_value(v).expect("Our types are always serializable; qed")
|
|
|
|
}
|
2016-09-20 12:19:07 +02:00
|
|
|
}
|