summaryrefslogtreecommitdiffstats
path: root/backup/src/main.rs
blob: 2f5f06ab79fed8edb0b2e8893b741ee5136b746c (plain) (blame)
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
use chrono::Local;
use clap::Parser;
use duct::cmd;
use regex::Regex;
use serde::Deserialize;
use std::{
    error::Error,
    fs::{self, File},
    io::{BufRead, BufReader},
    path::{Path, PathBuf},
    process::Command,
};

/// Backup-Tool mit inkrementeller Sicherung und Rotation
#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
struct Args {
    /// Pfad zur Konfigurationsdatei (JSON)
    #[arg(short, long)]
    config: PathBuf,

    /// Ausführliche Ausgabe
    #[arg(short, long, default_value_t = false)]
    verbose: bool,
}

#[derive(Debug, Deserialize)]
struct Config {
    backup_dir: String,
    rotate_dir: String,
    timestamp_file: String,
    source_file: String,
    exclude_file: String,
    cycles: Option<u32>
}

fn read_lines<P: AsRef<Path>>(path: P) -> Result<Vec<String>, Box<dyn Error>> {
    let file = File::open(path)?;
    let reader = BufReader::new(file);
    Ok(reader.lines().filter_map(Result::ok).filter(|l| !l.trim().is_empty()).collect())
}

fn get_backup_number(backup_dir: &Path) -> Result<u32, Box<dyn Error>> {
    let mut highest = 0;
    let pattern = Regex::new(r"backup-(\d{2})\.tar\.zst")?;

    for entry in fs::read_dir(backup_dir)? {
        let path = entry?.path();
        if let Some(fname) = path.file_name().and_then(|n| n.to_str()) {
            if let Some(caps) = pattern.captures(fname) {
                if let Ok(num) = caps[1].parse::<u32>() {
                    if num > highest {
                        highest = num;
                    }
                }
            }
        }
    }

    Ok(highest)
}

fn main() -> Result<(), Box<dyn Error>> {
    let args = Args::parse();
    let config_str = fs::read_to_string(&args.config)?;
    let config: Config = serde_json::from_str(&config_str)?;

    let backup_dir = Path::new(&config.backup_dir);
    let rotate_dir = Path::new(&config.rotate_dir);
    let timestamp_file = Path::new(&config.timestamp_file);
    let source_list = read_lines(&config.source_file)?;
    let exclude_list = read_lines(&config.exclude_file)?;

    fs::create_dir_all(backup_dir)?;

    let mut source_paths: Vec<String> = vec![];
    for s in &source_list {
        if Path::new(s).exists() {
            source_paths.push(s.clone());
        } else if args.verbose {
            eprintln!("WARNING: '{}' existiert nicht", s);
        }
    }

    let mut exclude_args: Vec<String> = vec![];
    for e in &exclude_list {
        if Path::new(e).exists() {
            exclude_args.push(format!("--exclude={}", e));
        } else if args.verbose {
            eprintln!("WARNING: '{}' existiert nicht", e);
        }
    }

    let mut backup_nr = get_backup_number(backup_dir)? + 1;
    if backup_nr > config.cycles.unwrap_or(30) {
        backup_nr = 1;

        let now = Local::now();
        let rotate_subdir = rotate_dir.join(format!("{}-{}", now.format("%Y-%m-%d"), now.format("%H-%M-%S-%3f")));
        fs::create_dir_all(&rotate_subdir)?;

        for entry in fs::read_dir(backup_dir)? {
            let entry = entry?;
            let dest = rotate_subdir.join(entry.file_name());
            fs::rename(entry.path(), dest)?;
        }

        if args.verbose {
            println!("INFO: Backup-Rotation durchgeführt");
        }

        // Dump 1
        let dump1 = rotate_subdir.join("backup_mastodon-db-1.sql.zst");
        cmd!("docker", "exec", "mastodon-db-1", "pg_dumpall", "-U", "postgres")
            .pipe(cmd!("zstd", "-9"))
            .stdout_file(File::create(dump1)?)
            .run()?;

        // Dump 2
        let dump2 = rotate_subdir.join("backup_db.sql.zst");
        cmd!("pg_dumpall", "-U", "postgres")
            .pipe(cmd!("zstd", "-9"))
            .stdout_file(File::create(dump2)?)
            .run()?;

        if args.verbose {
            println!("INFO: Datenbank-Dumps gespeichert");
        }
    }

    let backup_filename = format!("backup-{:02}.tar.zst", backup_nr);
    let backup_path = backup_dir.join(&backup_filename);

    let mut tar_cmd = Command::new("tar");

    for excl in &exclude_args {
        tar_cmd.arg(excl);
    }

    tar_cmd
        .arg("-cvp")
        .arg("-I")
        .arg("zstd -9 -T1")
        .arg("-f")
        .arg(&backup_path)
        .arg("-g")
        .arg(timestamp_file);

    for src in &source_paths {
        tar_cmd.arg(src);
    }

    let tar_status = tar_cmd.status()?;
    if !tar_status.success() {
        return Err("ERROR: Fehler beim Erstellen des Tar-Backups".into());
    }

    // Log-Dateien behandeln
    cmd!("find", "/var/log", "-type", "f", "-name", "*.log", "-exec", "truncate", "-s", "0", "{}", ";").run()?;
    cmd!("find", "/var/log", "-type", "f", "-name", "*.gz", "-exec", "rm", "-f", "{}", ";").run()?;

    println!("INFO: Backup erfolgreich als: {}", backup_path.display());
    Ok(())
}