hop-cli 0.2.61

Interact with Hop in your terminal
Documentation
use anyhow::Result;
use clap::Parser;
use serde_json::Value;

use super::utils::create_token;
use crate::commands::channels::tokens::utils::parse_expiration;
use crate::state::State;
use crate::utils::validate_json;

#[derive(Debug, Parser, Default, PartialEq, Eq)]
#[clap(about = "Create a new Leap Token")]
#[group(skip)]
pub struct Options {
    #[clap(
        short,
        long,
        help = "Expiration date of the token, can be a date (DD/MM/YYYY, DD-MM-YYYY) or a duration (60s, 1d, 30d, 1y)",
        value_parser = parse_expiration
    )]
    expiration: Option<String>,

    #[clap(
        short,
        long,
        help = "Initial state of the token, can be any JSON value",
        value_parser = validate_json
    )]
    state: Option<Value>,
}

pub async fn handle(options: Options, state: State) -> Result<()> {
    let project_id = state.ctx.current_project_error()?.id;

    let (token_state, expires_at) = if options != Options::default() {
        (
            options.state,
            options.expiration.map(|ex| parse_expiration(&ex).unwrap()),
        )
    } else {
        let token_state = dialoguer::Input::<String>::new()
            .with_prompt("State")
            .default("null".to_string())
            .validate_with(|s: &String| validate_json(s).map(|_| ()))
            .interact_text()?;

        let expires_at = dialoguer::Input::<String>::new()
            .with_prompt("Expiration date")
            .default("0".to_string())
            .validate_with(|s: &String| parse_expiration(s).map(|_| ()))
            .interact_text()?;

        (
            if token_state.to_lowercase() == "null" {
                None
            } else {
                Some(token_state)
            }
            .map(|s| s.parse().unwrap()),
            if expires_at.to_lowercase() == "0" {
                None
            } else {
                Some(parse_expiration(&expires_at).unwrap())
            },
        )
    };

    let token = create_token(&state.http, &project_id, expires_at.as_deref(), token_state).await?;

    log::info!("Created Token: `{}`", token.id);

    Ok(())
}