rustic_rs/commands/config.rs
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
//! `config` subcommand
use crate::{status_err, Application, RUSTIC_APP};
use abscissa_core::{Command, Runnable, Shutdown};
use anyhow::Result;
use rustic_core::ConfigOptions;
/// `config` subcommand
#[derive(clap::Parser, Command, Debug)]
pub(crate) struct ConfigCmd {
/// Config options
#[clap(flatten)]
config_opts: ConfigOptions,
}
impl Runnable for ConfigCmd {
fn run(&self) {
if let Err(err) = self.inner_run() {
status_err!("{}", err);
RUSTIC_APP.shutdown(Shutdown::Crash);
};
}
}
impl ConfigCmd {
fn inner_run(&self) -> Result<()> {
let config = RUSTIC_APP.config();
let changed = config
.repository
.run_open(|repo| Ok(repo.apply_config(&self.config_opts)?))?;
if changed {
println!("saved new config");
} else {
println!("config is unchanged");
}
Ok(())
}
}