manta-cli 1.62.7

Another CLI for ALPS
use crate::cli::commands::{update_boot_parameters, update_redfish_endpoint};
use crate::common::app_context::AppContext;
use crate::common::authentication::get_api_token;
use anyhow::{Context, Error, bail};
use clap::ArgMatches;

/// Dispatch `manta update` subcommands (boot-parameters,
/// redfish-endpoint).
pub async fn handle_update(
  cli_update: &ArgMatches,
  ctx: &AppContext<'_>,
) -> Result<(), Error> {
  let token = get_api_token(ctx.infra.backend, ctx.infra.site_name).await?;

  if let Some(cli_update_boot_parameters) =
    cli_update.subcommand_matches("boot-parameters")
  {
    let hosts: &str = cli_update_boot_parameters
      .get_one::<String>("hosts")
      .map(String::as_str)
      .context("The 'hosts' argument is mandatory")?;
    let params = cli_update_boot_parameters
      .get_one::<String>("params")
      .map(String::as_str);
    let kernel = cli_update_boot_parameters
      .get_one::<String>("kernel")
      .map(String::as_str);
    let initrd = cli_update_boot_parameters
      .get_one::<String>("initrd")
      .map(String::as_str);

    update_boot_parameters::exec(
      ctx, &token, hosts, None, None, params, kernel, initrd,
    )
    .await?;
  } else if let Some(cli_update_redfish_endpoint) =
    cli_update.subcommand_matches("redfish-endpoint")
  {
    let id: String = cli_update_redfish_endpoint
      .get_one("id")
      .cloned()
      .context("The 'id' argument is mandatory")?;
    let name: Option<String> =
      cli_update_redfish_endpoint.get_one("name").cloned();
    let hostname: Option<String> =
      cli_update_redfish_endpoint.get_one("hostname").cloned();
    let domain: Option<String> =
      cli_update_redfish_endpoint.get_one("domain").cloned();
    let fqdn: Option<String> =
      cli_update_redfish_endpoint.get_one("fqdn").cloned();
    let enabled: bool = cli_update_redfish_endpoint.get_flag("enabled");
    let user: Option<String> =
      cli_update_redfish_endpoint.get_one("user").cloned();
    let password: Option<String> =
      cli_update_redfish_endpoint.get_one("password").cloned();
    let use_ssdp: bool = cli_update_redfish_endpoint.get_flag("use-ssdp");
    let mac_required: bool =
      cli_update_redfish_endpoint.get_flag("mac-required");
    let mac_addr: Option<String> =
      cli_update_redfish_endpoint.get_one("macaddr").cloned();
    let ip_address: Option<String> =
      cli_update_redfish_endpoint.get_one("ipaddress").cloned();
    let rediscover_on_update: bool =
      cli_update_redfish_endpoint.get_flag("rediscover-on-update");
    let template_id: Option<String> =
      cli_update_redfish_endpoint.get_one("template-id").cloned();

    update_redfish_endpoint::exec(
      ctx,
      &token,
      id,
      name,
      hostname,
      domain,
      fqdn,
      enabled,
      user,
      password,
      use_ssdp,
      mac_required,
      mac_addr,
      ip_address,
      rediscover_on_update,
      template_id,
    )
    .await?;
  } else {
    bail!("Unknown 'update' subcommand");
  }
  Ok(())
}