summaryrefslogtreecommitdiffstats
path: root/ipfs-cli/src/command/add.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-cli/src/command/add.rs')
-rw-r--r--ipfs-cli/src/command/add.rs50
1 files changed, 30 insertions, 20 deletions
diff --git a/ipfs-cli/src/command/add.rs b/ipfs-cli/src/command/add.rs
index d732091..4382231 100644
--- a/ipfs-cli/src/command/add.rs
+++ b/ipfs-cli/src/command/add.rs
@@ -6,28 +6,38 @@
// copied, modified, or distributed except according to those terms.
//
-use clap::{App, ArgMatches};
-use command::{verify_file, EXPECTED_API, EXPECTED_FILE};
-use ipfs_api::IpfsClient;
+use clap::App;
+use command::{verify_file, CliCommand, EXPECTED_FILE};
+use futures::Future;
use std::fs::File;
-use tokio_core::reactor::Core;
-pub fn signature<'a, 'b>() -> App<'a, 'b> {
- clap_app!(
- @subcommand add =>
- (about: "Add file to IPFS")
- (@arg INPUT: +required {verify_file} "File to add")
- )
-}
+pub struct Command;
+
+impl CliCommand for Command {
+ const NAME: &'static str = "add";
+
+ fn signature<'a, 'b>() -> App<'a, 'b> {
+ clap_app!(
+ @subcommand add =>
+ (about: "Add file to IPFS")
+ (@arg INPUT: +required {verify_file} "File to add")
+ )
+ }
-pub fn handle(core: &mut Core, client: &IpfsClient, args: &ArgMatches) {
- let path = args.value_of("INPUT").unwrap();
- let file = File::open(path).expect(EXPECTED_FILE);
- let response = core.run(client.add(file)).expect(EXPECTED_API);
+ handle!(
+ (args, client) => {
+ let path = args.value_of("INPUT").unwrap();
+ let file = File::open(path).expect(EXPECTED_FILE);
- println!();
- println!(" name : {}", response.name);
- println!(" hash : {}", response.hash);
- println!(" size : {}", response.size);
- println!();
+ client
+ .add(file)
+ .map(|response| {
+ println!();
+ println!(" name : {}", response.name);
+ println!(" hash : {}", response.hash);
+ println!(" size : {}", response.size);
+ println!();
+ })
+ }
+ );
}