age: Return correct response encoding for confirm command

This commit is contained in:
Jack Grigg 2022-05-01 19:24:41 +00:00
parent 56597a6815
commit 1324b80562
3 changed files with 7 additions and 1 deletions

View file

@ -10,6 +10,7 @@ to 1.0.0 are beta releases.
### Added ### Added
- `age_core::io::{DebugReader, DebugWriter}` - `age_core::io::{DebugReader, DebugWriter}`
- `age_core::plugin::Error::Unsupported` - `age_core::plugin::Error::Unsupported`
- `age_core::plugin::Reply::ok_with_metadata`
### Changed ### Changed
- MSRV is now 1.56.0. - MSRV is now 1.56.0.

View file

@ -382,6 +382,11 @@ impl<'a, R: Read, W: Write> Reply<'a, R, W> {
) )
} }
/// Reply with `ok`, metadata, and optional data.
pub fn ok_with_metadata<S: AsRef<str>>(self, metadata: &[S], data: Option<&[u8]>) -> Response {
Response(self.0.send(RESPONSE_OK, metadata, data.unwrap_or_default()))
}
/// The command failed (for example, the user failed to respond to an input request). /// The command failed (for example, the user failed to respond to an input request).
pub fn fail(self) -> Response { pub fn fail(self) -> Response {
Response(self.0.send::<&str>(RESPONSE_FAIL, &[], &[])) Response(self.0.send::<&str>(RESPONSE_FAIL, &[], &[]))

View file

@ -269,7 +269,7 @@ fn handle_confirm<R: io::Read, W: io::Write, C: Callbacks>(
.as_ref() .as_ref()
.map(|s| s.borrow()), .map(|s| s.borrow()),
) { ) {
reply.ok(Some(if value { "yes" } else { "no" }.as_bytes())) reply.ok_with_metadata(&[if value { "yes" } else { "no" }], None)
} else { } else {
reply.fail() reply.fail()
} }