komodo_client 2.0.0

Client for the Komodo build and deployment system
Documentation
use mogh_resolver::Resolve;
use serde::{Deserialize, Serialize};
use typeshare::typeshare;

use crate::entities::{
  MongoDocument,
  update::{Update, UpdateListItem},
};

use super::KomodoReadRequest;

//

#[cfg(feature = "utoipa")]
#[utoipa::path(
  post,
  path = "/GetUpdate",
  description = "Get all data for the target update.",
  request_body(content = GetUpdate),
  responses(
    (status = 200, description = "The update", body = GetUpdateResponse),
  ),
)]
pub fn get_update() {}

/// Get all data for the target update.
/// Response: [Update].
#[typeshare]
#[derive(Serialize, Deserialize, Debug, Clone, Resolve)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
#[empty_traits(KomodoReadRequest)]
#[response(GetUpdateResponse)]
#[error(mogh_error::Error)]
pub struct GetUpdate {
  /// The update id.
  pub id: String,
}

#[typeshare]
pub type GetUpdateResponse = Update;

//

#[cfg(feature = "utoipa")]
#[utoipa::path(
  post,
  path = "/ListUpdates",
  description = "Paginated endpoint for updates matching optional query.",
  request_body(content = ListUpdates),
  responses(
    (status = 200, description = "The paginated list of updates", body = ListUpdatesResponse),
  ),
)]
pub fn list_updates() {}

/// Paginated endpoint for updates matching optional query.
/// More recent updates will be returned first.
#[typeshare]
#[derive(Serialize, Deserialize, Debug, Clone, Resolve)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
#[empty_traits(KomodoReadRequest)]
#[response(ListUpdatesResponse)]
#[error(mogh_error::Error)]
pub struct ListUpdates {
  /// An optional mongo query to filter the updates.
  #[cfg_attr(feature = "utoipa", schema(value_type = Option<serde_json::Value>))]
  pub query: Option<MongoDocument>,
  /// Page of updates. Default is 0, which is the most recent data.
  /// Use with the `next_page` field of the response.
  #[serde(default)]
  pub page: u32,
}

/// Response for [ListUpdates].
#[typeshare]
#[derive(Serialize, Deserialize, Debug, Clone)]
#[cfg_attr(feature = "utoipa", derive(utoipa::ToSchema))]
pub struct ListUpdatesResponse {
  /// The page of updates, sorted by timestamp descending.
  pub updates: Vec<UpdateListItem>,
  /// If there is a next page of data, pass this to `page` to get it.
  pub next_page: Option<u32>,
}