lprs/src/main.rs

79 lines
2.5 KiB
Rust
Raw Normal View History

// Lprs - A local CLI vault manager
2024-03-15 04:08:33 +01:00
// Copyright (C) 2024 Awiteb <a@4rs.nl>
2023-12-23 21:04:47 +01:00
//
// 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>.
2023-12-23 20:59:25 +01:00
use std::process::ExitCode;
use base64::{
alphabet,
engine::{general_purpose::PAD, GeneralPurpose},
};
use clap::Parser;
pub mod cli;
pub mod errors;
pub mod utils;
pub mod vault;
2023-12-23 20:59:25 +01:00
mod macros;
mod traits;
2023-12-26 18:53:07 +01:00
pub use errors::{Error as LprsError, Result as LprsResult};
use inquire::InquireError;
pub use traits::*;
2023-12-23 20:59:25 +01:00
pub const STANDARDBASE: GeneralPurpose = GeneralPurpose::new(&alphabet::STANDARD, PAD);
pub const DEFAULT_VAULTS_FILE: &str = "vaults.json";
#[cfg(feature = "update-notify")]
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
#[cfg(feature = "update-notify")]
pub const LAST_VERSION_CHECK_FILE: &str = ".last_version_check";
2023-12-23 20:59:25 +01:00
fn main() -> ExitCode {
pretty_env_logger::init();
#[cfg(feature = "update-notify")]
{
match utils::lprs_version() {
2024-01-07 19:51:22 +01:00
Ok(Some(new_version)) if new_version != VERSION => {
println!(
"Warning: The version you are using of lprs is outdated. There is a newer version, which is `{new_version}`, and your version is `{VERSION}`
2024-01-03 13:46:22 +01:00
\rYou can update via: `cargo install lprs --locked`
2024-03-15 04:08:33 +01:00
\rOr via git repo: `cargo install --locked --git https://git.4rs.nl/awiteb/lprs.git`
2024-01-03 13:46:22 +01:00
\rTo disable update notification: `cargo install lprs --locked --no-default-features`\n\n"
)
}
Err(err) => {
eprintln!("{err}");
return ExitCode::FAILURE;
}
_ => {}
}
}
2023-12-23 20:59:25 +01:00
if let Err(err) = cli::Cli::parse().run() {
if !matches!(
err,
LprsError::Inquire(InquireError::OperationCanceled)
| LprsError::Inquire(InquireError::OperationInterrupted)
) {
eprintln!("{err}");
return err.exit_code();
}
2023-12-23 20:59:25 +01:00
}
ExitCode::SUCCESS
2023-12-23 20:59:25 +01:00
}