use std::fmt;
use clap::Args;
use uuid::Uuid;
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::{StopMountRequest, StopMountResponse};
#[derive(Args, Debug, Clone)]
pub struct Stop {
pub id: Uuid,
}
#[derive(Debug)]
pub struct StopOutput {
pub mount_id: Uuid,
pub stopped: bool,
}
impl fmt::Display for StopOutput {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
if self.stopped {
write!(
f,
"{}",
ui::success("Stopped", &format!("mount {}", self.mount_id))
)
} else {
write!(
f,
"{}",
ui::failure("Failed", &format!("to stop mount {}", self.mount_id))
)
}
}
}
#[derive(Debug, thiserror::Error)]
pub enum StopError {
#[error("API error: {0}")]
Api(#[from] ApiError),
}
#[async_trait::async_trait]
impl Op for Stop {
type Error = StopError;
type Output = StopOutput;
async fn execute(&self, ctx: &OpContext) -> Result<Self::Output, Self::Error> {
let mut client = ctx.client.clone();
let request = StopMountRequest { mount_id: self.id };
let response: StopMountResponse = client.call(request).await?;
Ok(StopOutput {
mount_id: self.id,
stopped: response.stopped,
})
}
}