feat: Support changing master password
All checks were successful
Rust CI / Rust CI (pull_request) Successful in 2m27s

This commit is contained in:
Awiteb 2024-05-15 18:46:04 +03:00
parent 74a42d9813
commit 21092a15e4
Signed by: awiteb
GPG key ID: 3F6B55640AA6682F
2 changed files with 44 additions and 1 deletions

View file

@ -0,0 +1,39 @@
// Lprs - A local CLI vaults manager. For human and machine use
// Copyright (C) 2024 Awiteb <a@4rs.nl>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/gpl-3.0.html>.
use clap::Args;
use sha2::{Digest, Sha256};
use crate::{utils, vault::Vaults, LprsCommand, LprsResult};
#[derive(Debug, Args)]
/// Change master password, reencrypt the vaults with new password
pub struct ChangeMasterPassword {
/// The new master password, if there is no value for it you will prompt it
#[allow(clippy::option_option)]
new_password: Option<String>,
}
impl LprsCommand for ChangeMasterPassword {
fn run(self, mut vault_manager: Vaults) -> LprsResult<()> {
vault_manager.master_password =
utils::user_secret(Some(self.new_password), "New master password:", true)?
.map(|s| Sha256::digest(s).into())
.expect("We wrap it in `Some`, so is will return a secret");
vault_manager.try_export()?;
Ok(())
}
}

View file

@ -23,6 +23,8 @@ use crate::{impl_commands, utils, vault::Vaults, LprsCommand, LprsResult};
/// Add command, used to add new vault to the vaults file /// Add command, used to add new vault to the vaults file
pub mod add_command; pub mod add_command;
/// Change master password, reencrypt the vaults with new password
pub mod change_master_password_command;
/// Clean command, used to clean the vaults file (remove all vaults) /// Clean command, used to clean the vaults file (remove all vaults)
pub mod clean_command; pub mod clean_command;
/// Generate shell completion /// Generate shell completion
@ -67,11 +69,13 @@ pub enum Commands {
Export(export_command::Export), Export(export_command::Export),
/// Import vaults /// Import vaults
Import(import_command::Import), Import(import_command::Import),
/// Change master password, reencrypt the vaults with new password
ChangeMasterPassword(change_master_password_command::ChangeMasterPassword),
/// Generate shell completion /// Generate shell completion
Completion(completion_command::Completion), Completion(completion_command::Completion),
} }
impl_commands!(Commands, Add Remove List Clean Edit Gen Get Export Import Completion); impl_commands!(Commands, Add Remove List Clean Edit Gen Get Export Import ChangeMasterPassword Completion);
#[derive(Parser, Debug)] #[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)] #[command(author, version, about, long_about = None)]