1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
// This file is part of OpenEthereum.

// OpenEthereum 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.

// OpenEthereum 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 OpenEthereum.  If not, see <http://www.gnu.org/licenses/>.

extern crate ethereum_types;
extern crate futures;
extern crate rpassword;

extern crate parity_rpc as rpc;
extern crate parity_rpc_client as client;

use client::signer_client::SignerRpc;
use ethereum_types::U256;
use rpc::signer::ConfirmationRequest;
use std::{
    fs::File,
    io::{stdin, stdout, BufRead, BufReader, Write},
    path::PathBuf,
};

use futures::Future;

fn sign_interactive(signer: &mut SignerRpc, password: &str, request: ConfirmationRequest) {
    print!(
        "\n{}\nSign this transaction? (y)es/(N)o/(r)eject: ",
        request
    );
    let _ = stdout().flush();
    match BufReader::new(stdin()).lines().next() {
        Some(Ok(line)) => match line.to_lowercase().chars().nth(0) {
            Some('y') => match sign_transaction(signer, request.id, password) {
                Ok(s) | Err(s) => println!("{}", s),
            },
            Some('r') => match reject_transaction(signer, request.id) {
                Ok(s) | Err(s) => println!("{}", s),
            },
            _ => (),
        },
        _ => println!("Could not read from stdin"),
    }
}

fn sign_transactions(signer: &mut SignerRpc, password: String) -> Result<String, String> {
    signer
        .requests_to_confirm()
        .map(|reqs| match reqs {
            Ok(ref reqs) if reqs.is_empty() => Ok("No transactions in signing queue".to_owned()),
            Ok(reqs) => {
                for r in reqs {
                    sign_interactive(signer, &password, r)
                }
                Ok("".to_owned())
            }
            Err(err) => Err(format!("error: {:?}", err)),
        })
        .map_err(|err| format!("{:?}", err))
        .wait()?
}

fn list_transactions(signer: &mut SignerRpc) -> Result<String, String> {
    signer
        .requests_to_confirm()
        .map(|reqs| match reqs {
            Ok(ref reqs) if reqs.is_empty() => Ok("No transactions in signing queue".to_owned()),
            Ok(ref reqs) => Ok(format!(
                "Transaction queue:\n{}",
                reqs.iter()
                    .map(|r| format!("{}", r))
                    .collect::<Vec<String>>()
                    .join("\n")
            )),
            Err(err) => Err(format!("error: {:?}", err)),
        })
        .map_err(|err| format!("{:?}", err))
        .wait()?
}

fn sign_transaction(signer: &mut SignerRpc, id: U256, password: &str) -> Result<String, String> {
    signer
        .confirm_request(id, None, None, None, password)
        .map(|res| match res {
            Ok(u) => Ok(format!("Signed transaction id: {:#x}", u)),
            Err(e) => Err(format!("{:?}", e)),
        })
        .map_err(|err| format!("{:?}", err))
        .wait()?
}

fn reject_transaction(signer: &mut SignerRpc, id: U256) -> Result<String, String> {
    signer
        .reject_request(id)
        .map(|res| match res {
            Ok(true) => Ok(format!("Rejected transaction id {:#x}", id)),
            Ok(false) => Err(format!("No such request")),
            Err(e) => Err(format!("{:?}", e)),
        })
        .map_err(|err| format!("{:?}", err))
        .wait()?
}

// cmds

pub fn signer_list(signerport: u16, authfile: PathBuf) -> Result<String, String> {
    let addr = &format!("ws://127.0.0.1:{}", signerport);
    let mut signer = SignerRpc::new(addr, &authfile).map_err(|err| format!("{:?}", err))?;
    list_transactions(&mut signer)
}

pub fn signer_reject(
    id: Option<usize>,
    signerport: u16,
    authfile: PathBuf,
) -> Result<String, String> {
    let id = id.ok_or(format!("id required for signer reject"))?;
    let addr = &format!("ws://127.0.0.1:{}", signerport);
    let mut signer = SignerRpc::new(addr, &authfile).map_err(|err| format!("{:?}", err))?;
    reject_transaction(&mut signer, U256::from(id))
}

pub fn signer_sign(
    id: Option<usize>,
    pwfile: Option<PathBuf>,
    signerport: u16,
    authfile: PathBuf,
) -> Result<String, String> {
    let password;
    match pwfile {
        Some(pwfile) => match File::open(pwfile) {
            Ok(fd) => match BufReader::new(fd).lines().next() {
                Some(Ok(line)) => password = line,
                _ => return Err(format!("No password in file")),
            },
            Err(e) => return Err(format!("Could not open password file: {}", e)),
        },
        None => {
            password = match rpassword::prompt_password_stdout("Password: ") {
                Ok(p) => p,
                Err(e) => return Err(format!("{}", e)),
            }
        }
    }

    let addr = &format!("ws://127.0.0.1:{}", signerport);
    let mut signer = SignerRpc::new(addr, &authfile).map_err(|err| format!("{:?}", err))?;

    match id {
        Some(id) => sign_transaction(&mut signer, U256::from(id), &password),
        None => sign_transactions(&mut signer, password),
    }
}