aboutsummaryrefslogtreecommitdiff
path: root/src/activate.rs
blob: 64baa4fd81c34bc7d9f34474f00fe8a1f707f4ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
// SPDX-FileCopyrightText: 2020 Serokell <https://serokell.io/>
//
// SPDX-License-Identifier: MPL-2.0

use clap::Clap;

use std::process::Stdio;
use tokio::process::Command;

use std::path::Path;

extern crate pretty_env_logger;
#[macro_use]
extern crate log;

#[macro_use]
extern crate serde_derive;

#[macro_use]
mod utils;

/// Activation portion of the simple Rust Nix deploy tool
#[derive(Clap, Debug)]
#[clap(version = "1.0", author = "notgne2 <gen2@gen2.space>")]
struct Opts {
    profile_path: String,
    closure: String,

    /// Command for bootstrapping
    #[clap(long)]
    bootstrap_cmd: Option<String>,

    /// Auto rollback if failure
    #[clap(long)]
    auto_rollback: bool,
}

pub async fn activate(
    profile_path: String,
    closure: String,
    bootstrap_cmd: Option<String>,
    auto_rollback: bool,
) -> Result<(), Box<dyn std::error::Error>> {
    info!("Activating profile");

    let nix_env_set_exit_status = Command::new("nix-env")
        .arg("-p")
        .arg(&profile_path)
        .arg("--set")
        .arg(&closure)
        .stdout(Stdio::null())
        .status()
        .await?;

    if !nix_env_set_exit_status.success() {
        good_panic!("Failed to update nix-env generation");
    }

    if let (Some(bootstrap_cmd), false) = (bootstrap_cmd, !Path::new(&profile_path).exists()) {
        let bootstrap_status = Command::new("bash")
            .arg("-c")
            .arg(&bootstrap_cmd)
            .env("PROFILE", &profile_path)
            .stdout(Stdio::null())
            .stderr(Stdio::null())
            .status()
            .await;

        match bootstrap_status {
            Ok(s) if s.success() => (),
            _ => {
                tokio::fs::remove_file(&profile_path).await?;
                good_panic!("Failed to execute bootstrap command");
            }
        }
    }

    let activate_status = Command::new(format!("{}/activate", profile_path))
        .env("PROFILE", &profile_path)
        .status()
        .await;

    match activate_status {
        Ok(s) if s.success() => (),
        _ if auto_rollback => {
            error!("Failed to execute activation command");

            let nix_env_rollback_exit_status = Command::new("nix-env")
                .arg("-p")
                .arg(&profile_path)
                .arg("--rollback")
                .stdout(Stdio::null())
                .stderr(Stdio::null())
                .status()
                .await?;

            if !nix_env_rollback_exit_status.success() {
                good_panic!("`nix-env --rollback` failed");
            }

            debug!("Listing generations");

            let nix_env_list_generations_out = Command::new("nix-env")
                .arg("-p")
                .arg(&profile_path)
                .arg("--list-generations")
                .output()
                .await?;

            if !nix_env_list_generations_out.status.success() {
                good_panic!("Listing `nix-env` generations failed");
            }

            let generations_list = String::from_utf8(nix_env_list_generations_out.stdout)?;

            let last_generation_line = generations_list
                .lines()
                .last()
                .expect("Expected to find a generation in list");

            let last_generation_id = last_generation_line
                .split_whitespace()
                .next()
                .expect("Expected to get ID from generation entry");

            debug!("Removing generation entry {}", last_generation_line);
            warn!("Removing generation by ID {}", last_generation_id);

            let nix_env_delete_generation_exit_status = Command::new("nix-env")
                .arg("-p")
                .arg(&profile_path)
                .arg("--delete-generations")
                .arg(last_generation_id)
                .stdout(Stdio::null())
                .stderr(Stdio::null())
                .status()
                .await?;

            if !nix_env_delete_generation_exit_status.success() {
                good_panic!("Failed to delete failed generation");
            }

            info!("Attempting re-activate last generation");

            let re_activate_exit_status = Command::new(format!("{}/activate", profile_path))
                .env("PROFILE", &profile_path)
                .status()
                .await?;

            if !re_activate_exit_status.success() {
                good_panic!("Failed to re-activate the last generation");
            }

            std::process::exit(1);
        }
        _ => {}
    }

    Ok(())
}

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    if std::env::var("DEPLOY_LOG").is_err() {
        std::env::set_var("DEPLOY_LOG", "info");
    }

    pretty_env_logger::init_custom_env("DEPLOY_LOG");

    let opts: Opts = Opts::parse();

    activate(
        opts.profile_path,
        opts.closure,
        opts.bootstrap_cmd,
        opts.auto_rollback,
    )
    .await?;

    Ok(())
}