krill 0.16.0

Resource Public Key Infrastructure (RPKI) daemon
Documentation
//! Commands triggering events for all CAs.

use crate::api;
use crate::cli::client::KrillClient;
use crate::cli::report::Report;
use crate::commons::httpclient;


//------------ Command -------------------------------------------------------

#[derive(clap::Subcommand)]
pub enum Command {
    /// Force all CAs to ask their parents for updated certificates
    Refresh(Refresh),

    /// Force all CAs to create new objects if needed (in which case they
    /// will also sync)
    Publish(Publish),

    /// Force all CAs to sync with their repo server
    Sync(SyncRepo),
}

impl Command {
    pub async fn run(self, client: &KrillClient) -> Report {
        match self {
            Self::Refresh(cmd) => cmd.run(client).await.into(),
            Self::Publish(cmd) => cmd.run(client).await.into(),
            Self::Sync(cmd) => cmd.run(client).await.into(),
        }
    }
}


//------------ Refresh -------------------------------------------------------

#[derive(clap::Parser)]
pub struct Refresh;

impl Refresh {
    pub async fn run(
        self, client: &KrillClient
    ) -> Result<api::status::Success, httpclient::Error> {
        client.bulk_sync_parents().await
    }
}


//------------ Publish -------------------------------------------------------

#[derive(clap::Parser)]
pub struct Publish;

impl Publish {
    pub async fn run(
        self, client: &KrillClient
    ) -> Result<api::status::Success, httpclient::Error> {
        client.bulk_publish().await
    }
}


//------------ SyncRepo ------------------------------------------------------

#[derive(clap::Parser)]
pub struct SyncRepo;

impl SyncRepo {
    pub async fn run(
        self, client: &KrillClient
    ) -> Result<api::status::Success, httpclient::Error> {
        client.bulk_sync_repo().await
    }
}