manta-cli 2.0.0-beta.61

Another CLI for ALPS
//! `manta get` subcommands.

pub mod boot_parameters;
pub mod configurations;
pub mod group_nodes;
pub mod groups;
pub mod hardware_group;
pub mod hardware_nodes;
pub mod images;
pub mod kernel_parameters;
pub mod nodes;
pub mod redfish_endpoints;
pub mod sessions;
pub mod templates;

use crate::common::app_context::AppContext;
use crate::common::authentication::get_api_token;
use anyhow::{Error, bail};
use clap::ArgMatches;

/// Dispatch `manta get` subcommands (groups, hardware [nodes, group],
/// sessions, configurations, templates, group-nodes, nodes, images,
/// boot-parameters, kernel-parameters, redfish-endpoints).
pub async fn handle_get(
  cli_get: &ArgMatches,
  ctx: &AppContext<'_>,
) -> Result<(), Error> {
  let token = get_api_token(ctx).await?;

  match cli_get.subcommand() {
    Some(("groups", m)) => groups::exec(ctx, &token, m).await?,
    Some(("group-nodes", m)) => group_nodes::exec(ctx, &token, m).await?,
    Some(("hardware", m)) => match m.subcommand() {
      Some(("nodes", m)) => hardware_nodes::exec(ctx, &token, m).await?,
      Some(("group", m)) => hardware_group::exec(ctx, &token, m).await?,
      Some((other, _)) => bail!("Unknown 'get hardware' subcommand: {other}"),
      None => bail!("No 'get hardware' subcommand provided"),
    },
    Some(("configurations", m)) => {
      configurations::exec(ctx, &token, m).await?;
    }
    Some(("sessions", m)) => sessions::exec(ctx, &token, m).await?,
    Some(("templates", m)) => templates::exec(ctx, &token, m).await?,
    Some(("nodes", m)) => nodes::exec(ctx, &token, m).await?,
    Some(("images", m)) => images::exec(ctx, &token, m).await?,
    Some(("boot-parameters", m)) => {
      boot_parameters::exec(ctx, &token, m).await?;
    }
    Some(("kernel-parameters", m)) => {
      kernel_parameters::exec(ctx, &token, m).await?;
    }
    Some(("redfish-endpoints", m)) => {
      redfish_endpoints::exec(ctx, &token, m).await?;
    }
    Some((other, _)) => bail!("Unknown 'get' subcommand: {other}"),
    None => bail!("No 'get' subcommand provided"),
  }
  Ok(())
}