bc-envelope-cli 0.35.0

Gordian Envelope Command Line Tool.
Documentation
use anyhow::{Result, anyhow};
use bc_envelope::prelude::*;
use clap::Args;

use crate::read_envelope;

/// Get the attachment at the specified index.
#[derive(Debug, Args)]
#[group(skip)]
pub struct CommandArgs {
    index: usize,
    envelope: Option<String>,
}

impl crate::Exec for CommandArgs {
    fn exec(&self) -> Result<String> {
        let envelope = read_envelope(self.envelope.as_deref())?;
        let attachments = &envelope.attachments()?;
        let attachment = attachments
            .get(self.index)
            .ok_or_else(|| anyhow!("No attachment at index {}", self.index))?;
        Ok(attachment.ur_string())
    }
}