avassa-client 0.12.0

Library for integrating with the Avassa APIs
Documentation
#[derive(Clone, Copy, Debug)]
pub enum TokenType {
    User,
    Tenant,
    Seal,
}

/// Try to login using a supctl path
#[tracing::instrument]
pub async fn login<P: AsRef<std::path::Path> + std::fmt::Debug>(
    supctl_path: P,
    token_type: TokenType,
) -> crate::Result<crate::Client> {
    let cfg_path = supctl_path.as_ref().join("cfg");
    let data = tokio::fs::read(cfg_path).await?;

    let cfg: Cfg = serde_json::from_slice(&data)?;

    let url = format!("https://{}:{}", cfg.host, cfg.port);

    let token_path = match token_type {
        TokenType::User => supctl_path.as_ref().join("user"),
        TokenType::Tenant => supctl_path.as_ref().join("tenant"),
        TokenType::Seal => supctl_path.as_ref().join("seal"),
    };

    let data = tokio::fs::read(token_path).await?;

    let token: Token = serde_json::from_slice(&data)?;

    let client = crate::Client::builder()
        .danger_disable_cert_verification();

    let client = match token_type {
        TokenType::Seal => client.disable_token_auto_renewal(),
        _ => client,
    };

    let client = client.token_login(&url, &token.token)?;
    Ok(client)
}

#[derive(serde::Deserialize)]
struct Cfg {
    host: String,
    port: u16,
}

#[derive(serde::Deserialize)]
struct Token {
    token: String,
}