jax-daemon 0.1.15

End-to-end encrypted storage buckets with peer-to-peer synchronization
Documentation
use std::fmt;

use clap::Args;

use crate::cli::op::{Op, OpContext};
use crate::cli::ui;
use jax_daemon::http_server::api::client::ApiError;
use jax_daemon::http_server::api::v0::mounts::{ListMountsRequest, ListMountsResponse, MountInfo};

#[derive(Args, Debug, Clone)]
pub struct List;

#[derive(Debug)]
pub struct ListOutput {
    pub mounts: Vec<MountInfo>,
}

impl fmt::Display for ListOutput {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        if self.mounts.is_empty() {
            return write!(f, "No mounts configured");
        }

        let mut table = ui::styled_table(vec![
            "MOUNT ID",
            "BUCKET ID",
            "PATH",
            "STATUS",
            "AUTO",
            "RO",
        ]);
        for mount in &self.mounts {
            table.add_row(vec![
                ui::truncate(&mount.mount_id.to_string(), 16),
                ui::truncate(&mount.bucket_id.to_string(), 16),
                mount.mount_point.clone(),
                ui::colored_status(&mount.status),
                ui::yes_no(mount.auto_mount),
                ui::yes_no(mount.read_only),
            ]);
        }
        write!(f, "{table}")
    }
}

#[derive(Debug, thiserror::Error)]
pub enum ListError {
    #[error("API error: {0}")]
    Api(#[from] ApiError),
}

#[async_trait::async_trait]
impl Op for List {
    type Error = ListError;
    type Output = ListOutput;

    async fn execute(&self, ctx: &OpContext) -> Result<Self::Output, Self::Error> {
        let mut client = ctx.client.clone();
        let response: ListMountsResponse = client.call(ListMountsRequest {}).await?;

        Ok(ListOutput {
            mounts: response.mounts,
        })
    }
}