plugins: Add request-public command to bi-directional phase

This enables plugins to request a non-secret value, which won't trigger
any passphrase-specific user prompt (that e.g. hides the user's input).
This commit is contained in:
Jack Grigg 2021-02-05 22:50:42 +00:00
parent 933dfe1157
commit cb443e55e0
4 changed files with 68 additions and 2 deletions

View file

@ -65,6 +65,19 @@ impl<'a, 'b, R: io::Read, W: io::Write> Callbacks<Error> for BidirCallbacks<'a,
.map(|res| res.map(|_| ()))
}
fn request_public(&mut self, message: &str) -> plugin::Result<String, ()> {
self.0
.send("request-public", &[], message.as_bytes())
.and_then(|res| match res {
Ok(s) => String::from_utf8(s.body)
.map_err(|_| {
io::Error::new(io::ErrorKind::InvalidData, "response is not UTF-8")
})
.map(Ok),
Err(()) => Ok(Err(())),
})
}
/// Requests a secret value from the user, such as a passphrase.
///
/// `message` will be displayed to the user, providing context for the request.

View file

@ -227,6 +227,13 @@ pub trait Callbacks<E> {
/// inserting a hardware key.
fn message(&mut self, message: &str) -> age_core::plugin::Result<(), ()>;
/// Requests a non-secret value from the user.
///
/// `message` will be displayed to the user, providing context for the request.
///
/// To request secrets, use [`Callbacks::request_secret`].
fn request_public(&mut self, message: &str) -> age_core::plugin::Result<String, ()>;
/// Requests a secret value from the user, such as a passphrase.
///
/// `message` will be displayed to the user, providing context for the request.

View file

@ -68,6 +68,19 @@ impl<'a, 'b, R: io::Read, W: io::Write> Callbacks<Error> for BidirCallbacks<'a,
.map(|res| res.map(|_| ()))
}
fn request_public(&mut self, message: &str) -> plugin::Result<String, ()> {
self.0
.send("request-public", &[], message.as_bytes())
.and_then(|res| match res {
Ok(s) => String::from_utf8(s.body)
.map_err(|_| {
io::Error::new(io::ErrorKind::InvalidData, "response is not UTF-8")
})
.map(Ok),
Err(()) => Ok(Err(())),
})
}
/// Requests a secret value from the user, such as a passphrase.
///
/// `message` will be displayed to the user, providing context for the request.