fn0-cli 0.1.2

CLI for fn0 cloud
use crate::config::Config;
use crate::utils::credentials;
use color_eyre::{Result, eyre::eyre};
use std::path::{Path, PathBuf};
use uuid::Uuid;

pub async fn execute() -> Result<()> {
    let config_path = PathBuf::from("fn0.toml");
    let mut config = Config::load(&config_path)
        .map_err(|_| eyre!("fn0.toml not found. Run 'fn0 init' first."))?;

    let project_name = config
        .name
        .clone()
        .ok_or_else(|| eyre!("'name' field missing in fn0.toml"))?;

    let creds = credentials::require()?;

    let wasm_path = PathBuf::from("dist/component.wasm");
    let dist_dir = Path::new("dist");
    let bundle_path = dist_dir.join("bundle.raw.tar");

    let env_yaml = fn0_deploy::read_env_yaml(Path::new(".")).map_err(|e| eyre!(e))?;
    fn0_deploy::create_raw_bundle_wasm(&wasm_path, env_yaml.as_deref(), &bundle_path)
        .map_err(|e| eyre!(e))?;

    let client = reqwest::Client::new();
    let mut project_id = config.project_id.clone();
    let project_id_resolved = fn0_deploy::ensure_project_id(
        &client,
        &creds.control_url,
        &creds.token,
        &project_name,
        &mut project_id,
    )
    .await
    .map_err(|e| eyre!(e))?;

    if config.project_id != project_id {
        config.project_id = project_id;
        config.save(&config_path)?;
        println!("Saved project_id to fn0.toml");
    }

    let build_id = Uuid::new_v4().to_string();
    let jobs: Vec<fn0_deploy::CronJob> = Vec::new();
    let cron_updated_at = chrono::Utc::now().to_rfc3339();
    fn0_deploy::deploy_wasm(
        &creds.control_url,
        &creds.token,
        &project_id_resolved,
        &build_id,
        &bundle_path,
        &jobs,
        &cron_updated_at,
    )
    .await
    .map_err(|e| eyre!(e))?;

    Ok(())
}