use std::fmt;
use clap::Args;
use owo_colors::OwoColorize;
use uuid::Uuid;
use jax_daemon::http_server::api::client::{resolve_bucket, ApiError};
use jax_daemon::http_server::api::v0::bucket::publish::{PublishRequest, PublishResponse};
#[derive(Args, Debug, Clone)]
pub struct Publish {
pub bucket: String,
}
#[derive(Debug)]
pub struct PublishOutput {
pub bucket_id: Uuid,
pub new_link: String,
}
impl fmt::Display for PublishOutput {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
writeln!(
f,
"{} bucket {}",
"Published".green().bold(),
self.bucket_id.bold()
)?;
write!(f, " {} {}", "link:".dimmed(), self.new_link)
}
}
#[derive(Debug, thiserror::Error)]
pub enum PublishError {
#[error("API error: {0}")]
Api(#[from] ApiError),
}
#[async_trait::async_trait]
impl crate::cli::op::Op for Publish {
type Error = PublishError;
type Output = PublishOutput;
async fn execute(&self, ctx: &crate::cli::op::OpContext) -> Result<Self::Output, Self::Error> {
let mut client = ctx.client.clone();
let bucket_id = resolve_bucket(&mut client, &self.bucket).await?;
let request = PublishRequest { bucket_id };
let response: PublishResponse = client.call(request).await?;
Ok(PublishOutput {
bucket_id: response.bucket_id,
new_link: response.new_bucket_link,
})
}
}