Skip to main content

systemprompt_cli/commands/admin/setup/
wizard.rs

1//! Top-level orchestration of the setup wizard.
2//!
3//! `execute` runs the end-to-end flow: detect the project root, resolve the
4//! environment, provision `PostgreSQL`, collect secrets, write the profile, and
5//! optionally run migrations, returning a [`SetupOutput`]. The dry-run and
6//! cancellation paths short-circuit without touching the filesystem.
7//!
8//! Copyright (c) systemprompt.io — Business Source License 1.1.
9//! See <https://systemprompt.io> for licensing details.
10
11use std::path::{Path, PathBuf};
12
13use crate::interactive::Prompter;
14use crate::shared::CommandOutput;
15use anyhow::Result;
16use systemprompt_logging::CliService;
17
18use super::common::PostgresConfig;
19use super::types::{DatabaseSetupInfo, SecretsConfiguredInfo, SetupOutput};
20use super::wizard_dry_run::execute_dry_run;
21use super::wizard_prompts::{
22    collect_secrets, detect_project_root, get_environment_name, print_summary, setup_postgres,
23    should_run_migrations,
24};
25use super::{SetupArgs, ai_config, common, profile, secrets};
26use crate::CliConfig;
27
28pub fn should_write(path: &Path, force: bool, config: &CliConfig) -> bool {
29    if force || !path.exists() {
30        return true;
31    }
32    if !config.is_json_output() {
33        CliService::info(&format!(
34            "Preserving existing {} (pass --force to overwrite)",
35            path.display()
36        ));
37    }
38    false
39}
40
41pub(super) async fn execute(
42    args: SetupArgs,
43    prompter: &dyn Prompter,
44    config: &CliConfig,
45) -> Result<CommandOutput> {
46    if !config.is_json_output() {
47        CliService::section("systemprompt.io Setup Wizard");
48    }
49
50    let project_root = detect_project_root()?;
51    announce_project(&project_root, config);
52
53    let env_name = get_environment_name(&args, prompter, config)?;
54
55    if !config.is_json_output() {
56        CliService::info(&format!("Configuring environment: {}", env_name));
57    }
58
59    if !confirm_setup(&args, prompter, &env_name, config)? {
60        return Ok(build_cancelled(&args, &env_name, config));
61    }
62
63    if args.dry_run {
64        let systemprompt_dir = project_root.join(".systemprompt");
65        return Ok(execute_dry_run(&args, &env_name, &systemprompt_dir, config));
66    }
67
68    if !config.is_json_output() {
69        CliService::section(&format!("Setting up '{}' environment", env_name));
70    }
71
72    let pg_config = setup_postgres(&args, prompter, config, &env_name).await?;
73
74    let connection_status = if common::test_connection(&pg_config).await {
75        "connected"
76    } else {
77        "unreachable"
78    };
79
80    let (secrets_data, profile_path) = write_configuration(
81        &args,
82        prompter,
83        config,
84        &env_name,
85        &project_root,
86        &pg_config,
87    )?;
88
89    let run_migrations = should_run_migrations(&args, prompter, config)?;
90    if run_migrations {
91        profile::run_migrations(&profile_path)?;
92    }
93
94    let output = SetupOutput {
95        environment: env_name.clone(),
96        profile_path: profile_path.to_string_lossy().to_string(),
97        database: database_info(&pg_config, connection_status, args.docker),
98        secrets_configured: secrets_info(&secrets_data),
99        migrations_run: run_migrations,
100        message: format!("Environment '{}' setup completed successfully", env_name),
101    };
102
103    if !config.is_json_output() {
104        print_summary(&env_name, &profile_path);
105    }
106
107    let result = CommandOutput::card_value("Setup Complete", &output);
108    if config.is_json_output() {
109        Ok(result)
110    } else {
111        Ok(result.with_skip_render())
112    }
113}
114
115fn announce_project(project_root: &Path, config: &CliConfig) {
116    if config.is_json_output() {
117        return;
118    }
119    let project_name = project_root
120        .file_name()
121        .and_then(|n| n.to_str())
122        .unwrap_or("systemprompt");
123    CliService::success(&format!(
124        "Project: {} ({})",
125        project_name,
126        project_root.display()
127    ));
128}
129
130fn confirm_setup(
131    args: &SetupArgs,
132    prompter: &dyn Prompter,
133    env_name: &str,
134    config: &CliConfig,
135) -> Result<bool> {
136    if args.dry_run || args.yes || !config.is_interactive() {
137        return Ok(true);
138    }
139    prompter.confirm(
140        &format!(
141            "This will create/update configuration for '{}' environment. Continue?",
142            env_name
143        ),
144        true,
145    )
146}
147
148#[expect(
149    clippy::too_many_arguments,
150    reason = "wizard step threads discrete, already-validated setup inputs"
151)]
152fn write_configuration(
153    args: &SetupArgs,
154    prompter: &dyn Prompter,
155    config: &CliConfig,
156    env_name: &str,
157    project_root: &Path,
158    pg_config: &PostgresConfig,
159) -> Result<(secrets::SecretsData, PathBuf)> {
160    let systemprompt_dir = project_root.join(".systemprompt");
161
162    let (mut secrets_data, primary_provider) = collect_secrets(args, prompter, config, env_name)?;
163    secrets_data.database_url = Some(pg_config.database_url());
164
165    let secrets_path = profile::profile_dir(&systemprompt_dir, env_name).join("secrets.json");
166    if should_write(&secrets_path, args.force, config) {
167        secrets::save(&secrets_data, &secrets_path)?;
168    }
169
170    let profile_data = profile::build(&profile::ProfileBuildParams {
171        env_name,
172        secrets_path: "secrets.json",
173        project_root,
174        bin_path: None,
175        secrets: &secrets_data,
176        default_provider: primary_provider.as_ref(),
177        port_offset: args.port_offset,
178        admin_email: args.admin_email.as_deref(),
179    })?;
180    let profile_path = profile::default_path(&systemprompt_dir, env_name);
181    if should_write(&profile_path, args.force, config) {
182        profile::save(&profile_data, &profile_path)?;
183    }
184
185    if let Some(primary) = primary_provider.as_ref() {
186        ai_config::reconcile(project_root, primary, &secrets_data, config)?;
187    }
188
189    Ok((secrets_data, profile_path))
190}
191
192pub fn database_info(
193    pg_config: &PostgresConfig,
194    connection_status: &str,
195    docker: bool,
196) -> DatabaseSetupInfo {
197    DatabaseSetupInfo {
198        host: pg_config.host.clone(),
199        port: pg_config.port,
200        name: pg_config.database.clone(),
201        user: pg_config.user.clone(),
202        connection_status: connection_status.to_owned(),
203        docker,
204    }
205}
206
207const fn secrets_info(secrets_data: &secrets::SecretsData) -> SecretsConfiguredInfo {
208    SecretsConfiguredInfo {
209        anthropic: secrets_data.anthropic.is_some(),
210        openai: secrets_data.openai.is_some(),
211        gemini: secrets_data.gemini.is_some(),
212        github: secrets_data.github.is_some(),
213    }
214}
215
216pub fn build_cancelled(args: &SetupArgs, env_name: &str, config: &CliConfig) -> CommandOutput {
217    let output = SetupOutput {
218        environment: env_name.to_owned(),
219        profile_path: String::new(),
220        database: DatabaseSetupInfo {
221            host: args.db_host.clone(),
222            port: args.db_port,
223            name: args.effective_db_name(env_name),
224            user: args.effective_db_user(env_name),
225            connection_status: "cancelled".to_owned(),
226            docker: args.docker,
227        },
228        secrets_configured: SecretsConfiguredInfo {
229            anthropic: args.anthropic_key.is_some(),
230            openai: args.openai_key.is_some(),
231            gemini: args.gemini_key.is_some(),
232            github: args.github_token.is_some(),
233        },
234        migrations_run: false,
235        message: "Setup cancelled by user".to_owned(),
236    };
237
238    if !config.is_json_output() {
239        CliService::info("Setup cancelled");
240    }
241
242    let result = CommandOutput::card_value("Setup Cancelled", &output);
243    if config.is_json_output() {
244        result
245    } else {
246        result.with_skip_render()
247    }
248}