feat: Ability to pass the master password as option #40

Merged
awiteb merged 1 commit from awiteb/fix-38 into master 2024-05-10 12:14:47 +02:00 AGit

View file

@ -17,6 +17,7 @@
use std::{fs, path::PathBuf};
use clap::Parser;
use sha2::{Digest, Sha256};
use crate::{impl_commands, utils, vault::Vaults, LprsCommand, LprsResult};
@ -78,6 +79,9 @@ pub struct Cli {
/// Show the logs in the stdout
#[arg(short, long)]
pub verbose: bool,
/// The master password, or you will prompt it
#[arg(short, long)]
pub master_password: Option<String>,
#[command(subcommand)]
/// The provided command to run
@ -121,8 +125,11 @@ impl Cli {
}
} else {
log::info!("Reloading the vaults file");
let master_password =
utils::master_password_prompt(fs::read(&vaults_file)?.is_empty())?;
let master_password = if let Some(plain_master_password) = self.master_password {
Sha256::digest(plain_master_password).into()
} else {
utils::master_password_prompt(fs::read(&vaults_file)?.is_empty())?
};
Vaults::try_reload(vaults_file, master_password)?
};