| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- /* This file is part of DarkFi (https://dark.fi)
- *
- * Copyright (C) 2020-2023 Dyne.org foundation
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program 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 Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- use clap::{Parser, Subcommand};
- use log::info;
- use serde_json::json;
- use simplelog::{ColorChoice, TermLogger, TerminalMode};
- use url::Url;
- use darkfi::{
- cli_desc,
- rpc::{client::RpcClient, jsonrpc::JsonRequest},
- util::cli::{get_log_config, get_log_level},
- Result,
- };
- #[derive(Parser)]
- #[clap(name = "fu", about = cli_desc!(), version)]
- #[clap(arg_required_else_help(true))]
- struct Args {
- #[clap(short, action = clap::ArgAction::Count)]
- /// Increase verbosity (-vvv supported)
- verbose: u8,
- #[clap(short, long, default_value = "tcp://127.0.0.1:13336")]
- /// fud JSON-RPC endpoint
- endpoint: Url,
- #[clap(subcommand)]
- command: Subcmd,
- }
- #[derive(Subcommand)]
- enum Subcmd {
- /// List fud folder contents
- List,
- /// Sync fud folder contents and signal network for record changes
- Sync,
- /// Retrieve provided file name from the fud network
- Get {
- #[clap(short, long)]
- /// File name
- file: String,
- },
- }
- struct Fu {
- pub rpc_client: RpcClient,
- }
- impl Fu {
- async fn close_connection(&self) -> Result<()> {
- self.rpc_client.close().await
- }
- async fn list(&self) -> Result<()> {
- let req = JsonRequest::new("list", json!([]));
- let rep = self.rpc_client.request(req).await?;
- // Extract response
- let content = rep[0].as_array().unwrap();
- let new = rep[1].as_array().unwrap();
- let deleted = rep[2].as_array().unwrap();
- // Print info
- info!("----------Content-------------");
- if content.is_empty() {
- info!("No file records exists in DHT.");
- } else {
- for name in content {
- info!("\t{}", name.as_str().unwrap());
- }
- }
- info!("------------------------------");
- info!("----------New files-----------");
- if new.is_empty() {
- info!("No new files to import.");
- } else {
- for name in new {
- info!("\t{}", name.as_str().unwrap());
- }
- }
- info!("------------------------------");
- info!("----------Removed keys--------");
- if deleted.is_empty() {
- info!("No keys were removed.");
- } else {
- for key in deleted {
- info!("\t{}", key.as_str().unwrap());
- }
- }
- info!("------------------------------");
- Ok(())
- }
- async fn sync(&self) -> Result<()> {
- let req = JsonRequest::new("sync", json!([]));
- self.rpc_client.request(req).await?;
- info!("Daemon synced successfully!");
- Ok(())
- }
- async fn get(&self, file: String) -> Result<()> {
- let req = JsonRequest::new("get", json!([file]));
- let rep = self.rpc_client.request(req).await?;
- let path = rep.as_str().unwrap();
- info!("File waits you at: {}", path);
- Ok(())
- }
- }
- #[async_std::main]
- async fn main() -> Result<()> {
- let args = Args::parse();
- let log_level = get_log_level(args.verbose.into());
- let log_config = get_log_config();
- TermLogger::init(log_level, log_config, TerminalMode::Mixed, ColorChoice::Auto)?;
- let rpc_client = RpcClient::new(args.endpoint).await?;
- let fu = Fu { rpc_client };
- match args.command {
- Subcmd::List => fu.list().await,
- Subcmd::Sync => fu.sync().await,
- Subcmd::Get { file } => fu.get(file).await,
- }?;
- fu.close_connection().await
- }
|