use anyhow::Result;
use bc_envelope::prelude::*;
use clap::Args;
use crate::{EnvelopeArgs, EnvelopeArgsLike, read_envelope};
#[derive(Debug, Args)]
#[group(skip)]
pub struct CommandArgs {
attachment: String,
#[command(flatten)]
envelope_args: EnvelopeArgs,
}
impl EnvelopeArgsLike for CommandArgs {
fn envelope(&self) -> Option<&str> { self.envelope_args.envelope() }
}
impl crate::Exec for CommandArgs {
fn exec(&self) -> Result<String> {
let envelope = self.read_envelope()?;
let attachment = read_envelope(Some(&self.attachment))?;
attachment.clone().validate_attachment()?;
let e = envelope.add_assertion_envelope(attachment.clone())?;
Ok(e.ur_string())
}
}