| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- use fxhash::FxHashMap;
- use log::error;
- use num_bigint::BigUint;
- use serde_json::{json, Value};
- use darkfi::{
- crypto::{
- address::Address,
- keypair::{Keypair, PublicKey, SecretKey},
- },
- rpc::{
- jsonrpc,
- jsonrpc::{
- ErrorCode::{InternalError, InvalidParams},
- JsonResult,
- },
- },
- util::{decode_base10, encode_base10},
- Result,
- };
- use super::Darkfid;
- use crate::{server_error, RpcError};
- impl Darkfid {
- // RPCAPI:
- // Attempts to generate a new keypair and returns its address upon success.
- // --> {"jsonrpc": "2.0", "method": "wallet.keygen", "params": [], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": "1DarkFi...", "id": 1}
- pub async fn keygen(&self, id: Value, _params: &[Value]) -> JsonResult {
- match self.client.keygen().await {
- Ok(a) => jsonrpc::response(json!(a.to_string()), id).into(),
- Err(e) => {
- error!("Failed creating keypair: {}", e);
- server_error(RpcError::Keygen, id)
- }
- }
- }
- // RPCAPI:
- // Fetches public keys by given indexes from the wallet and returns it in an
- // encoded format. `-1` is supported to fetch all available keys.
- // --> {"jsonrpc": "2.0", "method": "wallet.get_key", "params": [1, 2], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": ["foo", "bar"], "id": 1}
- pub async fn get_key(&self, id: Value, params: &[Value]) -> JsonResult {
- if params.is_empty() {
- return jsonrpc::error(InvalidParams, None, id).into()
- }
- let mut fetch_all = false;
- for i in params {
- if !i.is_i64() {
- return server_error(RpcError::Nan, id)
- }
- if i.as_i64() == Some(-1) {
- fetch_all = true;
- break
- }
- if i.as_i64() < Some(-1) {
- return server_error(RpcError::LessThanNegOne, id)
- }
- }
- let keypairs = match self.client.get_keypairs().await {
- Ok(v) => v,
- Err(e) => {
- error!("Failed fetching keypairs: {}", e);
- return server_error(RpcError::KeypairFetch, id)
- }
- };
- let mut ret = vec![];
- if fetch_all {
- ret = keypairs.iter().map(|x| Some(Address::from(x.public).to_string())).collect()
- } else {
- for i in params {
- // This cast is safe on 64bit since we've already sorted out
- // all negative cases above.
- let idx = i.as_i64().unwrap() as usize;
- if let Some(kp) = keypairs.get(idx) {
- ret.push(Some(Address::from(kp.public).to_string()));
- } else {
- ret.push(None)
- }
- }
- }
- jsonrpc::response(json!(ret), id).into()
- }
- // RPCAPI:
- // Exports the given keypair index.
- // Returns the encoded secret key upon success.
- // --> {"jsonrpc": "2.0", "method": "wallet.export_keypair", "params": [0], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": "foobar", "id": 1}
- pub async fn export_keypair(&self, id: Value, params: &[Value]) -> JsonResult {
- if params.len() != 1 || !params[0].is_u64() {
- return jsonrpc::error(InvalidParams, None, id).into()
- }
- let keypairs = match self.client.get_keypairs().await {
- Ok(v) => v,
- Err(e) => {
- error!("Failed fetching keypairs: {}", e);
- return server_error(RpcError::KeypairFetch, id)
- }
- };
- if let Some(kp) = keypairs.get(params[0].as_u64().unwrap() as usize) {
- return jsonrpc::response(json!(kp.secret.to_bytes()), id).into()
- }
- server_error(RpcError::KeypairNotFound, id)
- }
- // RPCAPI:
- // Imports a given secret key into the wallet as a keypair.
- // Returns the public counterpart as the result upon success.
- // --> {"jsonrpc": "2.0", "method": "wallet.import_keypair", "params": ["foobar"], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": "pubfoobar", "id": 1}
- pub async fn import_keypair(&self, id: Value, params: &[Value]) -> JsonResult {
- if params.len() != 1 || !params[0].is_string() {
- return jsonrpc::error(InvalidParams, None, id).into()
- }
- let bytes: [u8; 32] = match serde_json::from_str(params[0].as_str().unwrap()) {
- Ok(v) => v,
- Err(e) => {
- error!("Failed parsing secret key from string: {}", e);
- return server_error(RpcError::InvalidKeypair, id)
- }
- };
- let secret = match SecretKey::from_bytes(bytes) {
- Ok(v) => v,
- Err(e) => {
- error!("Failed parsing secret key from string: {}", e);
- return server_error(RpcError::InvalidKeypair, id)
- }
- };
- let public = PublicKey::from_secret(secret);
- let keypair = Keypair { secret, public };
- let address = Address::from(public).to_string();
- match self.client.put_keypair(&keypair).await {
- Ok(()) => {}
- Err(e) => {
- error!("Failed inserting keypair into wallet: {}", e);
- return jsonrpc::error(InternalError, None, id).into()
- }
- };
- jsonrpc::response(json!(address), id).into()
- }
- // RPCAPI:
- // Sets the default wallet address to the given index.
- // Returns `true` upon success.
- // --> {"jsonrpc": "2.0", "method": "wallet.set_default_address", "params": [2], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": true, "id": 1}
- pub async fn set_default_address(&self, id: Value, params: &[Value]) -> JsonResult {
- if params.len() != 1 || !params[0].is_u64() {
- return jsonrpc::error(InvalidParams, None, id).into()
- }
- let idx = params[0].as_u64().unwrap();
- let keypairs = match self.client.get_keypairs().await {
- Ok(v) => v,
- Err(e) => {
- error!("Failed fetching keypairs: {}", e);
- return server_error(RpcError::KeypairFetch, id)
- }
- };
- if keypairs.len() as u64 != idx - 1 {
- return server_error(RpcError::KeypairNotFound, id)
- }
- let kp = keypairs[idx as usize];
- match self.client.set_default_keypair(&kp.public).await {
- Ok(()) => {}
- Err(e) => {
- error!("Failed setting default keypair: {}", e);
- return jsonrpc::error(InternalError, None, id).into()
- }
- };
- jsonrpc::response(json!(true), id).into()
- }
- // RPCAPI:
- // Queries the wallet for known balances.
- // Returns a map of balances, indexed by `network`, and token ID.
- // --> {"jsonrpc": "2.0", "method": "wallet.get_balances", "params": [], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": [{"btc": [100, "Bitcoin"]}, {...}], "id": 1}
- pub async fn get_balances(&self, id: Value, _params: &[Value]) -> JsonResult {
- let result: Result<FxHashMap<String, (String, String)>> = async {
- let balances = self.client.get_balances().await?;
- let mut symbols: FxHashMap<String, (String, String)> = FxHashMap::default();
- for b in balances.list.iter() {
- let network: String;
- let symbol: String;
- let mut amount = BigUint::from(b.value);
- if let Some((net, sym)) = self.drk_tokenlist.symbol_from_id(&b.token_id)? {
- network = net.to_string();
- symbol = sym;
- } else {
- // TODO: SQL needs to have the mint address for show, not the internal hash.
- // TODO: SQL needs to have the network name
- network = String::from("UNKNOWN");
- symbol = format!("{:?}", b.token_id);
- }
- if let Some(prev) = symbols.get(&symbol) {
- let prev_amnt = decode_base10(&prev.0, 8, true)?;
- amount += prev_amnt;
- }
- let amount = encode_base10(amount, 8);
- symbols.insert(symbol, (amount, network));
- }
- Ok(symbols)
- }
- .await;
- match result {
- Ok(res) => jsonrpc::response(json!(res), id).into(),
- Err(e) => {
- error!("Failed fetching balances from wallet: {}", e);
- jsonrpc::error(InternalError, None, id).into()
- }
- }
- }
- }
|