atuin 18.15.1

atuin - magical shell history
use clap::Args;
use eyre::Result;

use atuin_client::{
    encryption::load_key,
    record::{sqlite_store::SqliteStore, store::Store},
    settings::Settings,
};

#[derive(Args, Debug)]
pub struct Verify {}

impl Verify {
    pub async fn run(&self, settings: &Settings, store: SqliteStore) -> Result<()> {
        println!("Verifying local store can be decrypted with the current key");

        let key = load_key(settings)?;

        match store.verify(&key.into()).await {
            Ok(()) => println!("Local store encryption verified OK"),
            Err(e) => println!("Failed to verify local store encryption: {e:?}"),
        }

        Ok(())
    }
}