mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 11:27:43 +03:00
rage: Move CLI definitions into modules
This commit is contained in:
parent
a1173d4a74
commit
8303080cda
6 changed files with 229 additions and 212 deletions
34
rage/src/bin/rage-keygen/cli.rs
Normal file
34
rage/src/bin/rage-keygen/cli.rs
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
use clap::{builder::Styles, ArgAction, Parser};
|
||||||
|
|
||||||
|
use crate::fl;
|
||||||
|
|
||||||
|
#[derive(Debug, Parser)]
|
||||||
|
#[command(display_name = "rage-keygen")]
|
||||||
|
#[command(name = "rage-keygen")]
|
||||||
|
#[command(version)]
|
||||||
|
#[command(help_template = format!("\
|
||||||
|
{{before-help}}{{about-with-newline}}
|
||||||
|
{}{}:{} {{usage}}
|
||||||
|
|
||||||
|
{{all-args}}{{after-help}}\
|
||||||
|
",
|
||||||
|
Styles::default().get_usage().render(),
|
||||||
|
fl!("usage-header"),
|
||||||
|
Styles::default().get_usage().render_reset()))]
|
||||||
|
#[command(next_help_heading = fl!("flags-header"))]
|
||||||
|
#[command(disable_help_flag(true))]
|
||||||
|
#[command(disable_version_flag(true))]
|
||||||
|
pub(crate) struct AgeOptions {
|
||||||
|
#[arg(action = ArgAction::Help, short, long)]
|
||||||
|
#[arg(help = fl!("help-flag-help"))]
|
||||||
|
pub(crate) help: Option<bool>,
|
||||||
|
|
||||||
|
#[arg(action = ArgAction::Version, short = 'V', long)]
|
||||||
|
#[arg(help = fl!("help-flag-version"))]
|
||||||
|
pub(crate) version: Option<bool>,
|
||||||
|
|
||||||
|
#[arg(short, long)]
|
||||||
|
#[arg(value_name = fl!("output"))]
|
||||||
|
#[arg(help = fl!("keygen-help-flag-output"))]
|
||||||
|
pub(crate) output: Option<String>,
|
||||||
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
#![forbid(unsafe_code)]
|
#![forbid(unsafe_code)]
|
||||||
|
|
||||||
use age::{cli_common::file_io, secrecy::ExposeSecret};
|
use age::{cli_common::file_io, secrecy::ExposeSecret};
|
||||||
use clap::{builder::Styles, ArgAction, Parser};
|
use clap::Parser;
|
||||||
use i18n_embed::{
|
use i18n_embed::{
|
||||||
fluent::{fluent_language_loader, FluentLanguageLoader},
|
fluent::{fluent_language_loader, FluentLanguageLoader},
|
||||||
DesktopLanguageRequester,
|
DesktopLanguageRequester,
|
||||||
|
@ -10,6 +10,7 @@ use lazy_static::lazy_static;
|
||||||
use rust_embed::RustEmbed;
|
use rust_embed::RustEmbed;
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
|
|
||||||
|
mod cli;
|
||||||
mod error;
|
mod error;
|
||||||
|
|
||||||
#[derive(RustEmbed)]
|
#[derive(RustEmbed)]
|
||||||
|
@ -31,37 +32,6 @@ macro_rules! fl {
|
||||||
}};
|
}};
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Parser)]
|
|
||||||
#[command(display_name = "rage-keygen")]
|
|
||||||
#[command(name = "rage-keygen")]
|
|
||||||
#[command(version)]
|
|
||||||
#[command(help_template = format!("\
|
|
||||||
{{before-help}}{{about-with-newline}}
|
|
||||||
{}{}:{} {{usage}}
|
|
||||||
|
|
||||||
{{all-args}}{{after-help}}\
|
|
||||||
",
|
|
||||||
Styles::default().get_usage().render(),
|
|
||||||
fl!("usage-header"),
|
|
||||||
Styles::default().get_usage().render_reset()))]
|
|
||||||
#[command(next_help_heading = fl!("flags-header"))]
|
|
||||||
#[command(disable_help_flag(true))]
|
|
||||||
#[command(disable_version_flag(true))]
|
|
||||||
struct AgeOptions {
|
|
||||||
#[arg(action = ArgAction::Help, short, long)]
|
|
||||||
#[arg(help = fl!("help-flag-help"))]
|
|
||||||
help: Option<bool>,
|
|
||||||
|
|
||||||
#[arg(action = ArgAction::Version, short = 'V', long)]
|
|
||||||
#[arg(help = fl!("help-flag-version"))]
|
|
||||||
version: Option<bool>,
|
|
||||||
|
|
||||||
#[arg(short, long)]
|
|
||||||
#[arg(value_name = fl!("output"))]
|
|
||||||
#[arg(help = fl!("keygen-help-flag-output"))]
|
|
||||||
output: Option<String>,
|
|
||||||
}
|
|
||||||
|
|
||||||
fn main() -> Result<(), error::Error> {
|
fn main() -> Result<(), error::Error> {
|
||||||
env_logger::builder()
|
env_logger::builder()
|
||||||
.format_timestamp(None)
|
.format_timestamp(None)
|
||||||
|
@ -76,7 +46,7 @@ fn main() -> Result<(), error::Error> {
|
||||||
// Isolation Marks, so we disable them for now.
|
// Isolation Marks, so we disable them for now.
|
||||||
LANGUAGE_LOADER.set_use_isolating(false);
|
LANGUAGE_LOADER.set_use_isolating(false);
|
||||||
|
|
||||||
let opts = AgeOptions::parse();
|
let opts = cli::AgeOptions::parse();
|
||||||
|
|
||||||
let mut output = file_io::OutputWriter::new(
|
let mut output = file_io::OutputWriter::new(
|
||||||
opts.output,
|
opts.output,
|
||||||
|
|
53
rage/src/bin/rage-mount/cli.rs
Normal file
53
rage/src/bin/rage-mount/cli.rs
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
use clap::{builder::Styles, ArgAction, Parser};
|
||||||
|
|
||||||
|
use crate::fl;
|
||||||
|
|
||||||
|
#[derive(Debug, Parser)]
|
||||||
|
#[command(display_name = "rage-mount")]
|
||||||
|
#[command(name = "rage-mount")]
|
||||||
|
#[command(version)]
|
||||||
|
#[command(help_template = format!("\
|
||||||
|
{{before-help}}{{about-with-newline}}
|
||||||
|
{}{}:{} {{usage}}
|
||||||
|
|
||||||
|
{{all-args}}{{after-help}}\
|
||||||
|
",
|
||||||
|
Styles::default().get_usage().render(),
|
||||||
|
fl!("usage-header"),
|
||||||
|
Styles::default().get_usage().render_reset()))]
|
||||||
|
#[command(next_help_heading = fl!("flags-header"))]
|
||||||
|
#[command(disable_help_flag(true))]
|
||||||
|
#[command(disable_version_flag(true))]
|
||||||
|
pub(crate) struct AgeMountOptions {
|
||||||
|
#[arg(help_heading = fl!("args-header"))]
|
||||||
|
#[arg(value_name = fl!("mnt-filename"))]
|
||||||
|
#[arg(help = fl!("help-arg-mnt-filename"))]
|
||||||
|
pub(crate) filename: String,
|
||||||
|
|
||||||
|
#[arg(help_heading = fl!("args-header"))]
|
||||||
|
#[arg(value_name = fl!("mnt-mountpoint"))]
|
||||||
|
#[arg(help = fl!("help-arg-mnt-mountpoint"))]
|
||||||
|
pub(crate) mountpoint: String,
|
||||||
|
|
||||||
|
#[arg(action = ArgAction::Help, short, long)]
|
||||||
|
#[arg(help = fl!("help-flag-help"))]
|
||||||
|
pub(crate) help: Option<bool>,
|
||||||
|
|
||||||
|
#[arg(action = ArgAction::Version, short = 'V', long)]
|
||||||
|
#[arg(help = fl!("help-flag-version"))]
|
||||||
|
pub(crate) version: Option<bool>,
|
||||||
|
|
||||||
|
#[arg(short, long)]
|
||||||
|
#[arg(value_name = fl!("mnt-types"))]
|
||||||
|
#[arg(help = fl!("help-arg-mnt-types", types = "\"tar\", \"zip\""))]
|
||||||
|
pub(crate) types: String,
|
||||||
|
|
||||||
|
#[arg(long, value_name = "WF")]
|
||||||
|
#[arg(help = fl!("help-flag-max-work-factor"))]
|
||||||
|
pub(crate) max_work_factor: Option<u8>,
|
||||||
|
|
||||||
|
#[arg(short, long)]
|
||||||
|
#[arg(value_name = fl!("identity"))]
|
||||||
|
#[arg(help = fl!("help-flag-identity"))]
|
||||||
|
pub(crate) identity: Vec<String>,
|
||||||
|
}
|
|
@ -5,7 +5,7 @@ use age::{
|
||||||
cli_common::{read_identities, read_secret},
|
cli_common::{read_identities, read_secret},
|
||||||
stream::StreamReader,
|
stream::StreamReader,
|
||||||
};
|
};
|
||||||
use clap::{builder::Styles, ArgAction, CommandFactory, Parser};
|
use clap::{CommandFactory, Parser};
|
||||||
use fuse_mt::FilesystemMT;
|
use fuse_mt::FilesystemMT;
|
||||||
use fuser::MountOption;
|
use fuser::MountOption;
|
||||||
use i18n_embed::{
|
use i18n_embed::{
|
||||||
|
@ -21,6 +21,7 @@ use std::fs::File;
|
||||||
use std::io;
|
use std::io;
|
||||||
use std::sync::mpsc;
|
use std::sync::mpsc;
|
||||||
|
|
||||||
|
mod cli;
|
||||||
mod tar;
|
mod tar;
|
||||||
mod zip;
|
mod zip;
|
||||||
|
|
||||||
|
@ -32,6 +33,7 @@ lazy_static! {
|
||||||
static ref LANGUAGE_LOADER: FluentLanguageLoader = fluent_language_loader!();
|
static ref LANGUAGE_LOADER: FluentLanguageLoader = fluent_language_loader!();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[macro_export]
|
||||||
macro_rules! fl {
|
macro_rules! fl {
|
||||||
($message_id:literal) => {{
|
($message_id:literal) => {{
|
||||||
i18n_embed_fl::fl!($crate::LANGUAGE_LOADER, $message_id)
|
i18n_embed_fl::fl!($crate::LANGUAGE_LOADER, $message_id)
|
||||||
|
@ -125,56 +127,6 @@ impl fmt::Debug for Error {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Parser)]
|
|
||||||
#[command(display_name = "rage-mount")]
|
|
||||||
#[command(name = "rage-mount")]
|
|
||||||
#[command(version)]
|
|
||||||
#[command(help_template = format!("\
|
|
||||||
{{before-help}}{{about-with-newline}}
|
|
||||||
{}{}:{} {{usage}}
|
|
||||||
|
|
||||||
{{all-args}}{{after-help}}\
|
|
||||||
",
|
|
||||||
Styles::default().get_usage().render(),
|
|
||||||
fl!("usage-header"),
|
|
||||||
Styles::default().get_usage().render_reset()))]
|
|
||||||
#[command(next_help_heading = fl!("flags-header"))]
|
|
||||||
#[command(disable_help_flag(true))]
|
|
||||||
#[command(disable_version_flag(true))]
|
|
||||||
struct AgeMountOptions {
|
|
||||||
#[arg(help_heading = fl!("args-header"))]
|
|
||||||
#[arg(value_name = fl!("mnt-filename"))]
|
|
||||||
#[arg(help = fl!("help-arg-mnt-filename"))]
|
|
||||||
filename: String,
|
|
||||||
|
|
||||||
#[arg(help_heading = fl!("args-header"))]
|
|
||||||
#[arg(value_name = fl!("mnt-mountpoint"))]
|
|
||||||
#[arg(help = fl!("help-arg-mnt-mountpoint"))]
|
|
||||||
mountpoint: String,
|
|
||||||
|
|
||||||
#[arg(action = ArgAction::Help, short, long)]
|
|
||||||
#[arg(help = fl!("help-flag-help"))]
|
|
||||||
help: Option<bool>,
|
|
||||||
|
|
||||||
#[arg(action = ArgAction::Version, short = 'V', long)]
|
|
||||||
#[arg(help = fl!("help-flag-version"))]
|
|
||||||
version: Option<bool>,
|
|
||||||
|
|
||||||
#[arg(short, long)]
|
|
||||||
#[arg(value_name = fl!("mnt-types"))]
|
|
||||||
#[arg(help = fl!("help-arg-mnt-types", types = "\"tar\", \"zip\""))]
|
|
||||||
types: String,
|
|
||||||
|
|
||||||
#[arg(long, value_name = "WF")]
|
|
||||||
#[arg(help = fl!("help-flag-max-work-factor"))]
|
|
||||||
max_work_factor: Option<u8>,
|
|
||||||
|
|
||||||
#[arg(short, long)]
|
|
||||||
#[arg(value_name = fl!("identity"))]
|
|
||||||
#[arg(help = fl!("help-flag-identity"))]
|
|
||||||
identity: Vec<String>,
|
|
||||||
}
|
|
||||||
|
|
||||||
fn mount_fs<T: FilesystemMT + Send + Sync + 'static, F>(
|
fn mount_fs<T: FilesystemMT + Send + Sync + 'static, F>(
|
||||||
open: F,
|
open: F,
|
||||||
mountpoint: String,
|
mountpoint: String,
|
||||||
|
@ -242,11 +194,11 @@ fn main() -> Result<(), Error> {
|
||||||
LANGUAGE_LOADER.set_use_isolating(false);
|
LANGUAGE_LOADER.set_use_isolating(false);
|
||||||
|
|
||||||
if console::user_attended() && args().len() == 1 {
|
if console::user_attended() && args().len() == 1 {
|
||||||
AgeMountOptions::command().print_help()?;
|
cli::AgeMountOptions::command().print_help()?;
|
||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
|
|
||||||
let opts = AgeMountOptions::parse();
|
let opts = cli::AgeMountOptions::parse();
|
||||||
|
|
||||||
if opts.filename.is_empty() {
|
if opts.filename.is_empty() {
|
||||||
return Err(Error::MissingFilename);
|
return Err(Error::MissingFilename);
|
||||||
|
|
130
rage/src/bin/rage/cli.rs
Normal file
130
rage/src/bin/rage/cli.rs
Normal file
|
@ -0,0 +1,130 @@
|
||||||
|
use std::path::Path;
|
||||||
|
|
||||||
|
use clap::{builder::Styles, ArgAction, Parser};
|
||||||
|
|
||||||
|
use crate::fl;
|
||||||
|
|
||||||
|
fn binary_name() -> String {
|
||||||
|
if let Some(arg) = std::env::args_os().next() {
|
||||||
|
Path::new(&arg)
|
||||||
|
.file_name()
|
||||||
|
.expect("is not directory")
|
||||||
|
.to_string_lossy()
|
||||||
|
.to_string()
|
||||||
|
} else {
|
||||||
|
"rage".into()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn usage() -> String {
|
||||||
|
let binary_name = binary_name();
|
||||||
|
let recipient = fl!("recipient");
|
||||||
|
let identity = fl!("identity");
|
||||||
|
let input = fl!("input");
|
||||||
|
let output = fl!("output");
|
||||||
|
|
||||||
|
format!(
|
||||||
|
"{binary_name} [--encrypt] -r {recipient} [-i {identity}] [-a] [-o {output}] [{input}]\n \
|
||||||
|
{binary_name} --decrypt [-i {identity}] [-o {output}] [{input}]",
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
fn after_help() -> String {
|
||||||
|
let binary_name = binary_name();
|
||||||
|
let keygen_name = format!("{}-keygen", binary_name);
|
||||||
|
let example_a = format!("$ {} -o key.txt", keygen_name);
|
||||||
|
let example_a_output = "age1ql3z7hjy54pw3hyww5ayyfg7zqgvc7w3j2elw8zmrj2kg5sfn9aqmcac8p";
|
||||||
|
let example_b = format!(
|
||||||
|
"$ tar cvz ~/data | {} -r {} > data.tar.gz.age",
|
||||||
|
binary_name, example_a_output,
|
||||||
|
);
|
||||||
|
let example_c = format!(
|
||||||
|
"$ {} -d -i key.txt -o data.tar.gz data.tar.gz.age",
|
||||||
|
binary_name,
|
||||||
|
);
|
||||||
|
|
||||||
|
fl!(
|
||||||
|
"rage-after-help",
|
||||||
|
keygen_name = keygen_name,
|
||||||
|
example_a = example_a,
|
||||||
|
example_a_output = example_a_output,
|
||||||
|
example_b = example_b,
|
||||||
|
example_c = example_c,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Parser)]
|
||||||
|
#[command(version)]
|
||||||
|
#[command(help_template = format!("\
|
||||||
|
{{before-help}}{{about-with-newline}}
|
||||||
|
{}{}:{} {{usage}}
|
||||||
|
|
||||||
|
{{all-args}}{{after-help}}\
|
||||||
|
",
|
||||||
|
Styles::default().get_usage().render(),
|
||||||
|
fl!("usage-header"),
|
||||||
|
Styles::default().get_usage().render_reset()))]
|
||||||
|
#[command(override_usage(usage()))]
|
||||||
|
#[command(next_help_heading = fl!("flags-header"))]
|
||||||
|
#[command(disable_help_flag(true))]
|
||||||
|
#[command(disable_version_flag(true))]
|
||||||
|
#[command(after_help(after_help()))]
|
||||||
|
pub(crate) struct AgeOptions {
|
||||||
|
#[arg(help_heading = fl!("args-header"))]
|
||||||
|
#[arg(value_name = fl!("input"))]
|
||||||
|
#[arg(help = fl!("help-arg-input"))]
|
||||||
|
pub(crate) input: Option<String>,
|
||||||
|
|
||||||
|
#[arg(action = ArgAction::Help, short, long)]
|
||||||
|
#[arg(help = fl!("help-flag-help"))]
|
||||||
|
pub(crate) help: Option<bool>,
|
||||||
|
|
||||||
|
#[arg(action = ArgAction::Version, short = 'V', long)]
|
||||||
|
#[arg(help = fl!("help-flag-version"))]
|
||||||
|
pub(crate) version: Option<bool>,
|
||||||
|
|
||||||
|
#[arg(short, long)]
|
||||||
|
#[arg(help = fl!("help-flag-encrypt"))]
|
||||||
|
pub(crate) encrypt: bool,
|
||||||
|
|
||||||
|
#[arg(short, long)]
|
||||||
|
#[arg(help = fl!("help-flag-decrypt"))]
|
||||||
|
pub(crate) decrypt: bool,
|
||||||
|
|
||||||
|
#[arg(short, long)]
|
||||||
|
#[arg(help = fl!("help-flag-passphrase"))]
|
||||||
|
pub(crate) passphrase: bool,
|
||||||
|
|
||||||
|
#[arg(long, value_name = "WF")]
|
||||||
|
#[arg(help = fl!("help-flag-max-work-factor"))]
|
||||||
|
pub(crate) max_work_factor: Option<u8>,
|
||||||
|
|
||||||
|
#[arg(short, long)]
|
||||||
|
#[arg(help = fl!("help-flag-armor"))]
|
||||||
|
pub(crate) armor: bool,
|
||||||
|
|
||||||
|
#[arg(short, long)]
|
||||||
|
#[arg(value_name = fl!("recipient"))]
|
||||||
|
#[arg(help = fl!("help-flag-recipient"))]
|
||||||
|
pub(crate) recipient: Vec<String>,
|
||||||
|
|
||||||
|
#[arg(short = 'R', long)]
|
||||||
|
#[arg(value_name = fl!("recipients-file"))]
|
||||||
|
#[arg(help = fl!("help-flag-recipients-file"))]
|
||||||
|
pub(crate) recipients_file: Vec<String>,
|
||||||
|
|
||||||
|
#[arg(short, long)]
|
||||||
|
#[arg(value_name = fl!("identity"))]
|
||||||
|
#[arg(help = fl!("help-flag-identity"))]
|
||||||
|
pub(crate) identity: Vec<String>,
|
||||||
|
|
||||||
|
#[arg(short = 'j')]
|
||||||
|
#[arg(value_name = fl!("plugin-name"))]
|
||||||
|
#[arg(help = fl!("help-flag-plugin-name"))]
|
||||||
|
pub(crate) plugin_name: Option<String>,
|
||||||
|
|
||||||
|
#[arg(short, long)]
|
||||||
|
#[arg(value_name = fl!("output"))]
|
||||||
|
#[arg(help = fl!("help-flag-output"))]
|
||||||
|
pub(crate) output: Option<String>,
|
||||||
|
}
|
|
@ -9,7 +9,7 @@ use age::{
|
||||||
secrecy::ExposeSecret,
|
secrecy::ExposeSecret,
|
||||||
Identity, IdentityFile, IdentityFileEntry, Recipient,
|
Identity, IdentityFile, IdentityFileEntry, Recipient,
|
||||||
};
|
};
|
||||||
use clap::{builder::Styles, ArgAction, CommandFactory, Parser};
|
use clap::{CommandFactory, Parser};
|
||||||
use i18n_embed::{
|
use i18n_embed::{
|
||||||
fluent::{fluent_language_loader, FluentLanguageLoader},
|
fluent::{fluent_language_loader, FluentLanguageLoader},
|
||||||
DesktopLanguageRequester,
|
DesktopLanguageRequester,
|
||||||
|
@ -20,6 +20,9 @@ use std::fs::File;
|
||||||
use std::io::{self, BufRead, BufReader};
|
use std::io::{self, BufRead, BufReader};
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
|
|
||||||
|
mod cli;
|
||||||
|
use cli::AgeOptions;
|
||||||
|
|
||||||
mod error;
|
mod error;
|
||||||
|
|
||||||
#[derive(RustEmbed)]
|
#[derive(RustEmbed)]
|
||||||
|
@ -233,131 +236,6 @@ fn read_recipients(
|
||||||
Ok(recipients)
|
Ok(recipients)
|
||||||
}
|
}
|
||||||
|
|
||||||
fn binary_name() -> String {
|
|
||||||
if let Some(arg) = std::env::args_os().next() {
|
|
||||||
Path::new(&arg)
|
|
||||||
.file_name()
|
|
||||||
.expect("is not directory")
|
|
||||||
.to_string_lossy()
|
|
||||||
.to_string()
|
|
||||||
} else {
|
|
||||||
"rage".into()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn usage() -> String {
|
|
||||||
let binary_name = binary_name();
|
|
||||||
let recipient = fl!("recipient");
|
|
||||||
let identity = fl!("identity");
|
|
||||||
let input = fl!("input");
|
|
||||||
let output = fl!("output");
|
|
||||||
|
|
||||||
format!(
|
|
||||||
"{binary_name} [--encrypt] -r {recipient} [-i {identity}] [-a] [-o {output}] [{input}]\n \
|
|
||||||
{binary_name} --decrypt [-i {identity}] [-o {output}] [{input}]",
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn after_help() -> String {
|
|
||||||
let binary_name = binary_name();
|
|
||||||
let keygen_name = format!("{}-keygen", binary_name);
|
|
||||||
let example_a = format!("$ {} -o key.txt", keygen_name);
|
|
||||||
let example_a_output = "age1ql3z7hjy54pw3hyww5ayyfg7zqgvc7w3j2elw8zmrj2kg5sfn9aqmcac8p";
|
|
||||||
let example_b = format!(
|
|
||||||
"$ tar cvz ~/data | {} -r {} > data.tar.gz.age",
|
|
||||||
binary_name, example_a_output,
|
|
||||||
);
|
|
||||||
let example_c = format!(
|
|
||||||
"$ {} -d -i key.txt -o data.tar.gz data.tar.gz.age",
|
|
||||||
binary_name,
|
|
||||||
);
|
|
||||||
|
|
||||||
fl!(
|
|
||||||
"rage-after-help",
|
|
||||||
keygen_name = keygen_name,
|
|
||||||
example_a = example_a,
|
|
||||||
example_a_output = example_a_output,
|
|
||||||
example_b = example_b,
|
|
||||||
example_c = example_c,
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Parser)]
|
|
||||||
#[command(version)]
|
|
||||||
#[command(help_template = format!("\
|
|
||||||
{{before-help}}{{about-with-newline}}
|
|
||||||
{}{}:{} {{usage}}
|
|
||||||
|
|
||||||
{{all-args}}{{after-help}}\
|
|
||||||
",
|
|
||||||
Styles::default().get_usage().render(),
|
|
||||||
fl!("usage-header"),
|
|
||||||
Styles::default().get_usage().render_reset()))]
|
|
||||||
#[command(override_usage(usage()))]
|
|
||||||
#[command(next_help_heading = fl!("flags-header"))]
|
|
||||||
#[command(disable_help_flag(true))]
|
|
||||||
#[command(disable_version_flag(true))]
|
|
||||||
#[command(after_help(after_help()))]
|
|
||||||
struct AgeOptions {
|
|
||||||
#[arg(help_heading = fl!("args-header"))]
|
|
||||||
#[arg(value_name = fl!("input"))]
|
|
||||||
#[arg(help = fl!("help-arg-input"))]
|
|
||||||
input: Option<String>,
|
|
||||||
|
|
||||||
#[arg(action = ArgAction::Help, short, long)]
|
|
||||||
#[arg(help = fl!("help-flag-help"))]
|
|
||||||
help: Option<bool>,
|
|
||||||
|
|
||||||
#[arg(action = ArgAction::Version, short = 'V', long)]
|
|
||||||
#[arg(help = fl!("help-flag-version"))]
|
|
||||||
version: Option<bool>,
|
|
||||||
|
|
||||||
#[arg(short, long)]
|
|
||||||
#[arg(help = fl!("help-flag-encrypt"))]
|
|
||||||
encrypt: bool,
|
|
||||||
|
|
||||||
#[arg(short, long)]
|
|
||||||
#[arg(help = fl!("help-flag-decrypt"))]
|
|
||||||
decrypt: bool,
|
|
||||||
|
|
||||||
#[arg(short, long)]
|
|
||||||
#[arg(help = fl!("help-flag-passphrase"))]
|
|
||||||
passphrase: bool,
|
|
||||||
|
|
||||||
#[arg(long, value_name = "WF")]
|
|
||||||
#[arg(help = fl!("help-flag-max-work-factor"))]
|
|
||||||
max_work_factor: Option<u8>,
|
|
||||||
|
|
||||||
#[arg(short, long)]
|
|
||||||
#[arg(help = fl!("help-flag-armor"))]
|
|
||||||
armor: bool,
|
|
||||||
|
|
||||||
#[arg(short, long)]
|
|
||||||
#[arg(value_name = fl!("recipient"))]
|
|
||||||
#[arg(help = fl!("help-flag-recipient"))]
|
|
||||||
recipient: Vec<String>,
|
|
||||||
|
|
||||||
#[arg(short = 'R', long)]
|
|
||||||
#[arg(value_name = fl!("recipients-file"))]
|
|
||||||
#[arg(help = fl!("help-flag-recipients-file"))]
|
|
||||||
recipients_file: Vec<String>,
|
|
||||||
|
|
||||||
#[arg(short, long)]
|
|
||||||
#[arg(value_name = fl!("identity"))]
|
|
||||||
#[arg(help = fl!("help-flag-identity"))]
|
|
||||||
identity: Vec<String>,
|
|
||||||
|
|
||||||
#[arg(short = 'j')]
|
|
||||||
#[arg(value_name = fl!("plugin-name"))]
|
|
||||||
#[arg(help = fl!("help-flag-plugin-name"))]
|
|
||||||
plugin_name: Option<String>,
|
|
||||||
|
|
||||||
#[arg(short, long)]
|
|
||||||
#[arg(value_name = fl!("output"))]
|
|
||||||
#[arg(help = fl!("help-flag-output"))]
|
|
||||||
output: Option<String>,
|
|
||||||
}
|
|
||||||
|
|
||||||
fn set_up_io(
|
fn set_up_io(
|
||||||
input: Option<String>,
|
input: Option<String>,
|
||||||
output: Option<String>,
|
output: Option<String>,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue