manta-cli 2.0.0-beta.34

Another CLI for ALPS
//! IMS image endpoints: list, bulk-delete.

use regex::Regex;
use serde_json::Value;

use manta_shared::types::dto::Image;
use manta_shared::types::params::image::GetImagesParams;

use super::{MantaClient, QueryBuilder};

impl MantaClient {
  pub async fn get_images(
    &self,
    token: &str,
    params: &GetImagesParams,
  ) -> anyhow::Result<Vec<Image>> {
    let q = QueryBuilder::new()
      .opt("id", &params.id)
      .opt("pattern", &params.pattern)
      .opt_display("limit", &params.limit)
      .build();

    let mut image_vec: Vec<Image> = self.get_json(token, "/images", &q).await?;

    if let Some(pattern) = &params.pattern {
      let re = Regex::new(pattern)?;
      image_vec.retain(|image| re.is_match(&image.name));
    }

    if let Some(limit) = params.limit {
      image_vec.truncate(limit as usize);
    }

    Ok(image_vec)
  }

  pub async fn delete_images(
    &self,
    token: &str,
    ids: &[&str],
    dry_run: bool,
  ) -> anyhow::Result<Value> {
    let q = [("ids", ids.join(",")), ("dry_run", dry_run.to_string())];
    self.delete_json_with_query(token, "/images", &q).await
  }
}