2024-05-10 13:06:56 +02:00
|
|
|
// Lprs - A local CLI vaults manager. For human and machine use
|
2024-05-20 07:00:20 +02: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
|
2024-05-20 07:00:20 +02:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2023-12-23 21:04:47 +01:00
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2024-05-20 07:00:20 +02:00
|
|
|
// along with this program. If not, see <https://gnu.org/licenses/gpl-3.0.html>.
|
|
|
|
|
2024-05-05 21:42:16 +02:00
|
|
|
#![doc = include_str!("../README.md")]
|
2023-12-23 21:04:47 +01:00
|
|
|
|
2024-05-05 21:42:16 +02:00
|
|
|
use std::env;
|
2024-05-02 20:34:08 +02:00
|
|
|
use std::process::ExitCode;
|
2023-12-23 20:59:25 +01:00
|
|
|
|
2024-05-06 22:29:48 +02:00
|
|
|
use clap::Parser;
|
|
|
|
use inquire::InquireError;
|
|
|
|
|
2024-05-09 12:26:08 +02:00
|
|
|
/// A set of clap vaule parsers used to parse some CLI arguments
|
|
|
|
pub mod clap_parsers;
|
2024-05-05 21:42:16 +02:00
|
|
|
/// The main module of the lprs crate, contains the cli and the commands.
|
2023-12-23 20:59:25 +01:00
|
|
|
pub mod cli;
|
2024-05-05 21:42:16 +02:00
|
|
|
/// The errors module, contains the errors and the result type.
|
2023-12-23 20:59:25 +01:00
|
|
|
pub mod errors;
|
2024-05-05 21:42:16 +02:00
|
|
|
/// The utils module, contains the utility functions of all the modules.
|
2023-12-23 20:59:25 +01:00
|
|
|
pub mod utils;
|
2024-05-05 21:42:16 +02:00
|
|
|
/// The vault module, contains the vault struct and the vaults manager.
|
2024-03-18 21:32:48 +01:00
|
|
|
pub mod vault;
|
2023-12-23 20:59:25 +01:00
|
|
|
|
|
|
|
mod macros;
|
|
|
|
mod traits;
|
|
|
|
|
2024-05-02 20:34:08 +02:00
|
|
|
pub use base64::engine::general_purpose::STANDARD as BASE64;
|
2023-12-26 18:53:07 +01:00
|
|
|
pub use errors::{Error as LprsError, Result as LprsResult};
|
2024-01-02 19:59:53 +01:00
|
|
|
pub use traits::*;
|
2023-12-23 20:59:25 +01:00
|
|
|
|
2024-05-05 21:42:16 +02:00
|
|
|
/// The default vaults file name. Used to store the vaults.
|
2024-05-02 20:34:08 +02:00
|
|
|
pub const DEFAULT_VAULTS_FILE: &str = "vaults.lprs";
|
2024-01-02 19:59:53 +01:00
|
|
|
|
|
|
|
#[cfg(feature = "update-notify")]
|
2024-05-05 21:42:16 +02:00
|
|
|
/// The version of the lprs crate.
|
2024-01-02 19:59:53 +01:00
|
|
|
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
|
|
|
#[cfg(feature = "update-notify")]
|
2024-05-05 21:42:16 +02:00
|
|
|
/// The last version check file. Used to store the last version check time.
|
2024-01-02 19:59:53 +01:00
|
|
|
pub const LAST_VERSION_CHECK_FILE: &str = ".last_version_check";
|
2024-05-11 12:00:32 +02:00
|
|
|
/// The prefix of the reserved custom fields
|
|
|
|
const RESERVED_FIELD_PREFIX: &str = ".lprsfield.";
|
2023-12-23 20:59:25 +01:00
|
|
|
|
|
|
|
fn main() -> ExitCode {
|
2024-04-30 16:49:21 +02:00
|
|
|
let lprs_cli = cli::Cli::parse();
|
|
|
|
if lprs_cli.verbose {
|
2024-05-05 21:42:16 +02:00
|
|
|
env::set_var("RUST_LOG", "lprs");
|
2024-04-30 16:49:21 +02:00
|
|
|
}
|
2023-12-23 20:59:25 +01:00
|
|
|
pretty_env_logger::init();
|
|
|
|
|
2024-01-02 19:59:53 +01:00
|
|
|
#[cfg(feature = "update-notify")]
|
|
|
|
{
|
2024-04-30 16:49:21 +02:00
|
|
|
log::info!("Checking for new version of lprs...");
|
2024-01-02 19:59:53 +01:00
|
|
|
match utils::lprs_version() {
|
2024-01-07 19:51:22 +01:00
|
|
|
Ok(Some(new_version)) if new_version != VERSION => {
|
2024-01-02 19:59:53 +01:00
|
|
|
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"
|
2024-01-02 19:59:53 +01:00
|
|
|
)
|
|
|
|
}
|
|
|
|
Err(err) => {
|
|
|
|
eprintln!("{err}");
|
|
|
|
return ExitCode::FAILURE;
|
|
|
|
}
|
2024-04-30 16:49:21 +02:00
|
|
|
_ => {
|
|
|
|
log::info!("No new version found.");
|
|
|
|
}
|
2024-01-02 19:59:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-30 16:49:21 +02:00
|
|
|
if let Err(err) = lprs_cli.run() {
|
2024-04-29 17:50:32 +02:00
|
|
|
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
|
|
|
}
|
2024-04-29 17:50:32 +02:00
|
|
|
ExitCode::SUCCESS
|
2023-12-23 20:59:25 +01:00
|
|
|
}
|