age: Pass entire IdentityFile to parse_identity_files closure

This commit is contained in:
Jack Grigg 2024-08-23 22:49:47 +00:00
parent 5086bd65d9
commit d31fb568b7
2 changed files with 28 additions and 28 deletions

View file

@ -33,7 +33,8 @@ pub fn read_identities(
identities.push(Box::new(identity.with_callbacks(UiCallbacks))); identities.push(Box::new(identity.with_callbacks(UiCallbacks)));
Ok(()) Ok(())
}, },
|identities, entry| { |identities, identity_file| {
for entry in identity_file.into_identities() {
let entry = entry.into_identity(UiCallbacks); let entry = entry.into_identity(UiCallbacks);
#[cfg(feature = "plugin")] #[cfg(feature = "plugin")]
@ -53,6 +54,7 @@ pub fn read_identities(
let entry = entry.unwrap(); let entry = entry.unwrap();
identities.push(entry); identities.push(entry);
}
Ok(()) Ok(())
}, },
@ -72,7 +74,7 @@ pub(super) fn parse_identity_files<Ctx, E: From<ReadError> + From<io::Error>>(
crate::encrypted::Identity<ArmoredReader<BufReader<InputReader>>, UiCallbacks>, crate::encrypted::Identity<ArmoredReader<BufReader<InputReader>>, UiCallbacks>,
) -> Result<(), E>, ) -> Result<(), E>,
#[cfg(feature = "ssh")] ssh_identity: impl Fn(&mut Ctx, &str, crate::ssh::Identity) -> Result<(), E>, #[cfg(feature = "ssh")] ssh_identity: impl Fn(&mut Ctx, &str, crate::ssh::Identity) -> Result<(), E>,
identity_file_entry: impl Fn(&mut Ctx, crate::IdentityFileEntry) -> Result<(), E>, identity_file: impl Fn(&mut Ctx, crate::IdentityFile) -> Result<(), E>,
) -> Result<(), E> { ) -> Result<(), E> {
for filename in filenames { for filename in filenames {
#[cfg_attr(not(any(feature = "armor", feature = "ssh")), allow(unused_mut))] #[cfg_attr(not(any(feature = "armor", feature = "ssh")), allow(unused_mut))]
@ -135,11 +137,7 @@ pub(super) fn parse_identity_files<Ctx, E: From<ReadError> + From<io::Error>>(
reader.reset()?; reader.reset()?;
// Try parsing as multiple single-line age identities. // Try parsing as multiple single-line age identities.
let identity_file = IdentityFile::from_buffer(reader)?; identity_file(ctx, IdentityFile::from_buffer(reader)?)?;
for entry in identity_file.into_identities() {
identity_file_entry(ctx, entry)?;
}
} }
Ok(()) Ok(())

View file

@ -210,7 +210,8 @@ pub fn read_recipients(
recipients.push(recipient); recipients.push(recipient);
Ok(()) Ok(())
}, },
|recipients, entry| { |recipients, identity_file| {
for entry in identity_file.into_identities() {
#[cfg(feature = "plugin")] #[cfg(feature = "plugin")]
let (recipients, plugin_identities) = recipients; let (recipients, plugin_identities) = recipients;
match entry { match entry {
@ -218,6 +219,7 @@ pub fn read_recipients(
#[cfg(feature = "plugin")] #[cfg(feature = "plugin")]
IdentityFileEntry::Plugin(i) => plugin_identities.push(i), IdentityFileEntry::Plugin(i) => plugin_identities.push(i),
} }
}
Ok(()) Ok(())
}, },
)?; )?;