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/>.
|
|
|
|
|
|
|
|
//! Personal rpc interface.
|
|
|
|
use std::sync::Arc;
|
|
|
|
use jsonrpc_core::*;
|
|
|
|
|
|
|
|
/// Personal rpc interface.
|
|
|
|
pub trait Personal: Sized + Send + Sync + 'static {
|
|
|
|
|
|
|
|
/// Lists all stored accounts
|
2016-05-27 20:04:41 +02:00
|
|
|
fn accounts(&self, _: Params) -> Result<Value, Error>;
|
2016-03-04 12:46:54 +01:00
|
|
|
|
|
|
|
/// Creates new account (it becomes new current unlocked account)
|
2016-05-27 20:04:41 +02:00
|
|
|
fn new_account(&self, _: Params) -> Result<Value, Error>;
|
2016-03-04 12:46:54 +01:00
|
|
|
|
|
|
|
/// Unlocks specified account for use (can only be one unlocked account at one moment)
|
2016-05-27 20:04:41 +02:00
|
|
|
fn unlock_account(&self, _: Params) -> Result<Value, Error>;
|
2016-03-04 12:46:54 +01:00
|
|
|
|
2016-05-26 20:07:47 +02:00
|
|
|
/// Sends transaction and signs it in single call. The account is not unlocked in such case.
|
2016-05-27 20:04:41 +02:00
|
|
|
fn sign_and_send_transaction(&self, _: Params) -> Result<Value, Error>;
|
2016-05-26 20:07:47 +02:00
|
|
|
|
2016-06-07 19:33:32 +02:00
|
|
|
/// Returns `true` if Trusted Signer is enabled, `false` otherwise.
|
|
|
|
fn signer_enabled(&self, _: Params) -> Result<Value, Error>;
|
|
|
|
|
2016-07-24 17:38:21 +02:00
|
|
|
/// Set an account's name.
|
|
|
|
fn set_account_name(&self, _: Params) -> Result<Value, Error>;
|
|
|
|
|
|
|
|
/// Set an account's metadata string.
|
|
|
|
fn set_account_meta(&self, _: Params) -> Result<Value, Error>;
|
|
|
|
|
|
|
|
/// Returns accounts information.
|
|
|
|
fn accounts_info(&self, _: Params) -> Result<Value, Error>;
|
|
|
|
|
2016-03-04 12:46:54 +01:00
|
|
|
/// Should be used to convert object to io delegate.
|
|
|
|
fn to_delegate(self) -> IoDelegate<Self> {
|
|
|
|
let mut delegate = IoDelegate::new(Arc::new(self));
|
2016-06-07 19:33:32 +02:00
|
|
|
delegate.add_method("personal_signerEnabled", Personal::signer_enabled);
|
2016-03-04 12:46:54 +01:00
|
|
|
delegate.add_method("personal_listAccounts", Personal::accounts);
|
|
|
|
delegate.add_method("personal_newAccount", Personal::new_account);
|
|
|
|
delegate.add_method("personal_unlockAccount", Personal::unlock_account);
|
2016-05-26 20:07:47 +02:00
|
|
|
delegate.add_method("personal_signAndSendTransaction", Personal::sign_and_send_transaction);
|
2016-07-24 17:38:21 +02:00
|
|
|
delegate.add_method("personal_setAccountName", Personal::set_account_name);
|
|
|
|
delegate.add_method("personal_setAccountMeta", Personal::set_account_meta);
|
|
|
|
delegate.add_method("personal_accountsInfo", Personal::accounts_info);
|
|
|
|
|
2016-03-04 12:46:54 +01:00
|
|
|
delegate
|
|
|
|
}
|
|
|
|
}
|
2016-06-01 19:37:34 +02:00
|
|
|
|
|
|
|
/// Personal extension for transactions confirmations rpc interface.
|
|
|
|
pub trait PersonalSigner: Sized + Send + Sync + 'static {
|
|
|
|
|
|
|
|
/// Returns a list of transactions to confirm.
|
|
|
|
fn transactions_to_confirm(&self, _: Params) -> Result<Value, Error>;
|
|
|
|
|
|
|
|
/// Confirm and send a specific transaction.
|
|
|
|
fn confirm_transaction(&self, _: Params) -> Result<Value, Error>;
|
|
|
|
|
|
|
|
/// Reject the transaction request.
|
|
|
|
fn reject_transaction(&self, _: Params) -> Result<Value, Error>;
|
|
|
|
|
|
|
|
/// Should be used to convert object to io delegate.
|
|
|
|
fn to_delegate(self) -> IoDelegate<Self> {
|
|
|
|
let mut delegate = IoDelegate::new(Arc::new(self));
|
|
|
|
delegate.add_method("personal_transactionsToConfirm", PersonalSigner::transactions_to_confirm);
|
|
|
|
delegate.add_method("personal_confirmTransaction", PersonalSigner::confirm_transaction);
|
|
|
|
delegate.add_method("personal_rejectTransaction", PersonalSigner::reject_transaction);
|
|
|
|
delegate
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|