ckb-cli 1.4.0

ckb command line interface
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
use std::net::{IpAddr, Ipv4Addr, SocketAddr};
use std::sync::{Arc, Mutex};
use std::thread;
use std::time::Duration;

use ckb_crypto::secp::SECP256K1;
use ckb_sdk::{Address, AddressPayload, HumanCapacity, NetworkType};
use ckb_types::{bytes::Bytes, packed::Script, prelude::*, H256};
use clap::{App, Arg, ArgMatches};
use jsonrpc_core::{Error as RpcError, ErrorCode as RpcErrorCode, IoHandler, Result as RpcResult};
use jsonrpc_derive::rpc;
use jsonrpc_http_server::{Server, ServerBuilder};
use jsonrpc_server_utils::cors::AccessControlAllowOrigin;
use jsonrpc_server_utils::hosts::DomainsValidation;
use serde::{Deserialize, Serialize};

use super::{CliSubCommand, Output, TransferArgs, WalletSubCommand};
use crate::plugin::PluginManager;
use crate::utils::{
    arg,
    arg_parser::{AddressParser, ArgParser, FromStrParser, PrivkeyPathParser, PrivkeyWrapper},
    genesis_info::GenesisInfo,
    other::{get_genesis_info, get_network_type},
    rpc::HttpRpcClient,
};

pub struct ApiServerSubCommand<'a> {
    rpc_client: &'a mut HttpRpcClient,
    plugin_mgr: Option<PluginManager>,
    genesis_info: Option<GenesisInfo>,
}

impl<'a> ApiServerSubCommand<'a> {
    pub fn new(
        rpc_client: &'a mut HttpRpcClient,
        plugin_mgr: PluginManager,
        genesis_info: Option<GenesisInfo>,
    ) -> ApiServerSubCommand<'a> {
        ApiServerSubCommand {
            rpc_client,
            plugin_mgr: Some(plugin_mgr),
            genesis_info,
        }
    }

    pub fn subcommand(name: &'static str) -> App<'static> {
        App::new(name)
            .about("Start advanced API server")
            .arg(
                Arg::with_name("listen")
                    .long("listen")
                    .takes_value(true)
                    .required(true)
                    .default_value("127.0.0.1:3000")
                    .validator(|input| FromStrParser::<SocketAddr>::new().validate(input))
                    .about("Rpc server listen address (when --privkey-path is given ip MUST be 127.0.0.1)"),
            )
            .arg(
                arg::privkey_path()
                 .about("Private key file path (only read first line)")
            )
    }
}

impl<'a> CliSubCommand for ApiServerSubCommand<'a> {
    fn process(&mut self, matches: &ArgMatches, _debug: bool) -> Result<Output, String> {
        let listen_addr: SocketAddr =
            FromStrParser::<SocketAddr>::new().from_matches(matches, "listen")?;
        let privkey_path: Option<String> = matches.value_of("privkey-path").map(Into::into);

        let network_result = get_network_type(self.rpc_client);
        if privkey_path.is_some() && listen_addr.ip() != IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)) {
            return Err(format!(
                "When privkey-path is given, listen ip MUST be 127.0.0.1, current ip: {}",
                listen_addr.ip()
            ));
        }
        let privkey_opt: Option<PrivkeyWrapper> = privkey_path
            .clone()
            .map(|input| PrivkeyPathParser.parse(&input))
            .transpose()?;
        let network = match network_result {
            Ok(network) => network,
            Err(ref err) if privkey_opt.is_some() => {
                return Err(format!("Get network type failed: {}", err))
            }
            Err(_) => NetworkType::Mainnet,
        };
        let address_opt = privkey_opt.map(|privkey| {
            let pubkey = secp256k1::PublicKey::from_secret_key(&SECP256K1, &privkey);
            let payload = AddressPayload::from_pubkey(&pubkey);
            Address::new(network, payload, false).to_string()
        });

        let mut io_handler = IoHandler::new();
        let handler = ApiRpcImpl {
            rpc_client: Arc::new(Mutex::new(HttpRpcClient::new(
                self.rpc_client.url().to_string(),
            ))),
            plugin_mgr: Arc::new(Mutex::new(self.plugin_mgr.take().unwrap())),
            genesis_info: Arc::new(Mutex::new(self.genesis_info.clone())),
            privkey_path,
        };
        io_handler.extend_with(handler.to_delegate());

        thread::sleep(Duration::from_millis(200));
        log::info!("Node rpc server: {}", self.rpc_client.url());
        log::info!("Network: {:?}", network_result);
        log::info!("Wallet address: {:?}", address_opt);
        log::info!("Listen on {}", listen_addr);
        RpcServer::start(&listen_addr, io_handler).wait();
        Ok(Output::new_error(serde_json::json!({
            "status": "stopped",
        })))
    }
}

struct RpcServer {
    server: Server,
}

impl RpcServer {
    fn start(listen_addr: &SocketAddr, io_handler: IoHandler) -> RpcServer {
        let server = ServerBuilder::new(io_handler)
            .cors(DomainsValidation::AllowOnly(vec![
                AccessControlAllowOrigin::Null,
                AccessControlAllowOrigin::Any,
            ]))
            .threads(2)
            .max_request_body_size(50 * 1024 * 1024)
            .start_http(listen_addr)
            .expect("Jsonrpc initialize");
        RpcServer { server }
    }

    fn wait(self) {
        self.server.wait()
    }
}

#[rpc]
pub trait ApiRpc {
    #[rpc(name = "transfer")]
    fn transfer(&self, _args: HttpTransferArgs) -> RpcResult<H256>;

    #[rpc(name = "get_capacity_by_address")]
    fn get_capacity_by_address(&self, _address: String) -> RpcResult<GetCapacityResponse>;

    // #[rpc(name = "get_live_cells_by_address")]
    // fn get_live_cells_by_address(
    //     &self,
    //     _address: String,
    //     _from_number_opt: Option<u64>,
    //     _to_number_opt: Option<u64>,
    //     _limit: usize,
    // ) -> RpcResult<LiveCells>;

    // #[rpc(name = "get_live_cells_by_lock_hash")]
    // fn get_live_cells_by_lock_hash(
    //     &self,
    //     _lock_hash: H256,
    //     _from_number_opt: Option<u64>,
    //     _to_number_opt: Option<u64>,
    //     _limit: usize,
    // ) -> RpcResult<LiveCells>;

    // #[rpc(name = "get_live_cells_by_type_hash")]
    // fn get_live_cells_by_type_hash(
    //     &self,
    //     _type_hash: H256,
    //     _from_number_opt: Option<u64>,
    //     _to_number_opt: Option<u64>,
    //     _limit: usize,
    // ) -> RpcResult<LiveCells>;

    // #[rpc(name = "get_live_cells_by_code_hash")]
    // fn get_live_cells_by_code_hash(
    //     &self,
    //     _code_hash: H256,
    //     _from_number_opt: Option<u64>,
    //     _to_number_opt: Option<u64>,
    //     _limit: usize,
    // ) -> RpcResult<LiveCells>;
}

struct ApiRpcImpl {
    rpc_client: Arc<Mutex<HttpRpcClient>>,
    plugin_mgr: Arc<Mutex<PluginManager>>,
    genesis_info: Arc<Mutex<Option<GenesisInfo>>>,
    privkey_path: Option<String>,
}

impl ApiRpcImpl {
    fn genesis_info(&self) -> Result<GenesisInfo, String> {
        let mut genesis_info = self.genesis_info.lock().unwrap();
        *genesis_info = Some(get_genesis_info(
            &genesis_info,
            &mut self.rpc_client.lock().unwrap(),
        )?);
        Ok(genesis_info.clone().unwrap())
    }

    fn with_wallet<T, F: FnOnce(&mut WalletSubCommand) -> Result<T, RpcError>>(
        &self,
        func: F,
    ) -> Result<T, RpcError> {
        let genesis_info = self.genesis_info().map_err(internal_err)?;
        let mut rpc_client = self.rpc_client.lock().unwrap();
        let mut plugin_mgr = self.plugin_mgr.lock().unwrap();
        func(&mut WalletSubCommand::new(
            &mut rpc_client,
            &mut plugin_mgr,
            Some(genesis_info),
        ))
    }
}

impl ApiRpc for ApiRpcImpl {
    fn transfer(&self, args: HttpTransferArgs) -> RpcResult<H256> {
        log::info!("[call]: tranfer({:?})", args);
        if let Some(privkey_path) = self.privkey_path.clone() {
            self.with_wallet(|cmd| {
                cmd.transfer(args.into_full_args(privkey_path), false)
                    .map_err(RpcError::invalid_params)
            })
            .map(|tx| tx.hash().unpack())
        } else {
            Err(internal_err(
                "Please give privkey-path argument to enable transfer api".to_string(),
            ))
        }
    }

    fn get_capacity_by_address(&self, address: String) -> RpcResult<GetCapacityResponse> {
        log::info!("[call]: get_capacity_by_address({})", address);
        let network = {
            let mut rpc_client = self.rpc_client.lock().unwrap();
            get_network_type(&mut rpc_client).map_err(internal_err)?
        };
        let address = AddressParser::default()
            .set_network(network)
            .parse(&address)
            .map_err(RpcError::invalid_params)?;
        self.with_wallet(|cmd| {
            cmd.get_capacity(vec![Script::from(address.payload())])
                .map(|(total, immature, dao)| GetCapacityResponse {
                    total,
                    immature,
                    dao,
                })
                .map_err(RpcError::invalid_params)
        })
    }

    // fn get_live_cells_by_address(
    //     &self,
    //     address: String,
    //     from_number_opt: Option<u64>,
    //     to_number_opt: Option<u64>,
    //     limit: usize,
    // ) -> RpcResult<LiveCells> {
    //     log::info!(
    //         "[call]: get_live_cells_by_address({}, {:?}, {:?}, {})",
    //         address,
    //         from_number_opt,
    //         to_number_opt,
    //         limit,
    //     );
    //     let network = {
    //         let mut rpc_client = self.rpc_client.lock().unwrap();
    //         get_network_type(&mut rpc_client).map_err(internal_err)?
    //     };
    //     let address = AddressParser::default()
    //         .set_network(network)
    //         .parse(&address)
    //         .map_err(RpcError::invalid_params)?;
    //     let lock_hash: H256 = Script::from(address.payload()).calc_script_hash().unpack();
    //     self.get_live_cells_by_lock_hash(lock_hash, from_number_opt, to_number_opt, limit)
    // }

    // fn get_live_cells_by_lock_hash(
    //     &self,
    //     lock_hash: H256,
    //     from_number_opt: Option<u64>,
    //     to_number_opt: Option<u64>,
    //     limit: usize,
    // ) -> RpcResult<LiveCells> {
    //     log::info!(
    //         "[call]: get_live_cells_by_lock_hash({:#x}, {:?}, {:?}, {})",
    //         lock_hash,
    //         from_number_opt,
    //         to_number_opt,
    //         limit,
    //     );
    //     let to_number = to_number_opt.unwrap_or(std::u64::MAX);
    //     self.with_wallet(|cmd| {
    //         cmd.get_live_cells(
    //             to_number,
    //             limit,
    //             |db, terminator| {
    //                 db.get_live_cells_by_lock(lock_hash.pack(), from_number_opt, terminator)
    //             },
    //             true,
    //         )
    //         .map(|result| result.0)
    //         .map_err(RpcError::invalid_params)
    //     })
    // }

    // fn get_live_cells_by_type_hash(
    //     &self,
    //     type_hash: H256,
    //     from_number_opt: Option<u64>,
    //     to_number_opt: Option<u64>,
    //     limit: usize,
    // ) -> RpcResult<LiveCells> {
    //     log::info!(
    //         "[call]: get_live_cells_by_type_hash({:#x}, {:?}, {:?}, {})",
    //         type_hash,
    //         from_number_opt,
    //         to_number_opt,
    //         limit,
    //     );
    //     let to_number = to_number_opt.unwrap_or(std::u64::MAX);
    //     self.with_wallet(|cmd| {
    //         cmd.get_live_cells(
    //             to_number,
    //             limit,
    //             |db, terminator| {
    //                 db.get_live_cells_by_type(type_hash.pack(), from_number_opt, terminator)
    //             },
    //             true,
    //         )
    //         .map(|result| result.0)
    //         .map_err(RpcError::invalid_params)
    //     })
    // }

    // fn get_live_cells_by_code_hash(
    //     &self,
    //     code_hash: H256,
    //     from_number_opt: Option<u64>,
    //     to_number_opt: Option<u64>,
    //     limit: usize,
    // ) -> RpcResult<LiveCells> {
    //     log::info!(
    //         "[call]: get_live_cells_by_code_hash({:#x}, {:?}, {:?}, {})",
    //         code_hash,
    //         from_number_opt,
    //         to_number_opt,
    //         limit,
    //     );
    //     let to_number = to_number_opt.unwrap_or(std::u64::MAX);
    //     self.with_wallet(|cmd| {
    //         cmd.get_live_cells(
    //             to_number,
    //             limit,
    //             |db, terminator| {
    //                 db.get_live_cells_by_code(code_hash.pack(), from_number_opt, terminator)
    //             },
    //             true,
    //         )
    //         .map(|result| result.0)
    //         .map_err(RpcError::invalid_params)
    //     })
    // }
}

fn internal_err(message: String) -> RpcError {
    RpcError {
        code: RpcErrorCode::InternalError,
        message,
        data: None,
    }
}

#[derive(Clone, Debug, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct HttpTransferArgs {
    pub capacity: u64,
    pub fee_rate: u64,
    pub to_address: String,
    pub from_locked_address: Option<String>,
    pub to_data: Option<Bytes>,
    pub force_small_change_as_fee: Option<String>,
}

impl HttpTransferArgs {
    pub fn into_full_args(self, privkey_path: String) -> TransferArgs {
        let capacity = HumanCapacity::from(self.capacity).to_string();
        let fee_rate = self.fee_rate.to_string();
        TransferArgs {
            privkey_path: Some(privkey_path),
            from_account: None,
            from_locked_address: self.from_locked_address,
            password: None,
            derive_receiving_address_length: None,
            derive_change_address: None,
            capacity,
            fee_rate,
            force_small_change_as_fee: self.force_small_change_as_fee,
            to_address: self.to_address,
            to_data: self.to_data,
            is_type_id: false,
            skip_check_to_address: false,
        }
    }
}

#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct GetCapacityResponse {
    pub total: u64,
    pub immature: u64,
    pub dao: u64,
}