homeboy 0.76.0

CLI for multi-component deployment and development workflow automation
Documentation
use crate::deploy::{self, DeployConfig};
use crate::health::{self, ServerHealth};

#[derive(Debug, Clone)]
pub struct ProjectComponentStatus {
    pub component_id: String,
    pub version: Option<String>,
    pub version_source: Option<String>,
}

#[derive(Debug, Clone)]
pub struct ProjectStatusSnapshot {
    pub health: Option<ServerHealth>,
    pub component_versions: Option<Vec<ProjectComponentStatus>>,
}

pub fn collect_status(project_id: &str, health_only: bool) -> ProjectStatusSnapshot {
    let proj = match super::load(project_id) {
        Ok(project) => project,
        Err(_) => {
            return ProjectStatusSnapshot {
                health: None,
                component_versions: None,
            };
        }
    };

    let health = health::collect_project_health(&proj);
    let component_versions = if health_only {
        None
    } else {
        collect_component_versions(project_id)
    };

    ProjectStatusSnapshot {
        health,
        component_versions,
    }
}

fn collect_component_versions(project_id: &str) -> Option<Vec<ProjectComponentStatus>> {
    let config = DeployConfig {
        component_ids: vec![],
        all: true,
        outdated: false,
        dry_run: false,
        check: true,
        force: false,
        skip_build: true,
        keep_deps: false,
        expected_version: None,
        no_pull: true,
        head: true,
    };

    deploy::run(project_id, &config).ok().map(|result| {
        result
            .results
            .iter()
            .map(|r| ProjectComponentStatus {
                component_id: r.id.clone(),
                version: r.remote_version.clone(),
                version_source: Some("live".to_string()),
            })
            .collect()
    })
}