aboutsummaryrefslogtreecommitdiff
path: root/nitrocli/src/args.rs
diff options
context:
space:
mode:
authorRobin Krahl <robin.krahl@ireas.org>2018-12-27 17:27:08 +0100
committerDaniel Mueller <deso@posteo.net>2019-01-07 18:13:42 -0800
commit6a69bbf736966c493cead716026db92c5b44962a (patch)
tree1f77268f2e0abe04f18a5c29b0bf0afc35b8cafc /nitrocli/src/args.rs
parent9b73d152a4e154ac24491b98b3c5736aaa57bc0e (diff)
downloadnitrocli-6a69bbf736966c493cead716026db92c5b44962a.tar.gz
nitrocli-6a69bbf736966c493cead716026db92c5b44962a.tar.bz2
Implement the pws clear subcommand
This patch implements the pws clear command which allows the user to clear a slot in the password safe.
Diffstat (limited to 'nitrocli/src/args.rs')
-rw-r--r--nitrocli/src/args.rs22
1 files changed, 21 insertions, 1 deletions
diff --git a/nitrocli/src/args.rs b/nitrocli/src/args.rs
index 9982d0f..28ccb1f 100644
--- a/nitrocli/src/args.rs
+++ b/nitrocli/src/args.rs
@@ -326,6 +326,7 @@ impl str::FromStr for PinCommand {
#[derive(Debug)]
enum PwsCommand {
+ Clear,
Get,
Set,
}
@@ -333,6 +334,7 @@ enum PwsCommand {
impl PwsCommand {
fn execute(&self, args: Vec<String>) -> Result<()> {
match *self {
+ PwsCommand::Clear => pws_clear(args),
PwsCommand::Get => pws_get(args),
PwsCommand::Set => pws_set(args),
}
@@ -345,6 +347,7 @@ impl fmt::Display for PwsCommand {
f,
"{}",
match *self {
+ PwsCommand::Clear => "clear",
PwsCommand::Get => "get",
PwsCommand::Set => "set",
}
@@ -357,6 +360,7 @@ impl str::FromStr for PwsCommand {
fn from_str(s: &str) -> result::Result<Self, Self::Err> {
match s {
+ "clear" => Ok(PwsCommand::Clear),
"get" => Ok(PwsCommand::Get),
"set" => Ok(PwsCommand::Set),
_ => Err(()),
@@ -800,7 +804,7 @@ fn pws(args: Vec<String>) -> Result<()> {
let _ = parser.refer(&mut subcommand).required().add_argument(
"subcommand",
argparse::Store,
- "The subcommand to execute (get|set)",
+ "The subcommand to execute (clear|get|set)",
);
let _ = parser.refer(&mut subargs).add_argument(
"arguments",
@@ -889,6 +893,22 @@ fn pws_set(args: Vec<String>) -> Result<()> {
commands::pws_set(slot, &name, &login, &password)
}
+/// Clear a PWS slot.
+fn pws_clear(args: Vec<String>) -> Result<()> {
+ let mut slot: u8 = 0;
+ let mut parser = argparse::ArgumentParser::new();
+ parser.set_description("Clears a password safe slot");
+ let _ = parser.refer(&mut slot).required().add_argument(
+ "slot",
+ argparse::Store,
+ "The PWS slot to clear",
+ );
+ parse(&parser, args)?;
+ drop(parser);
+
+ commands::pws_clear(slot)
+}
+
/// Parse the command-line arguments and return the selected command and
/// the remaining arguments for the command.
fn parse_arguments(args: Vec<String>) -> Result<(Command, Vec<String>)> {