Merge branch 'master' into feature/test-all-methods

This commit is contained in:
Jack Fletcher 2021-06-07 00:10:05 +01:00
commit ff6e1828c1
5 changed files with 21 additions and 10 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "zip" name = "zip"
version = "0.5.12" version = "0.5.13"
authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>", "Marli Frost <marli@frost.red>", "Ryan Levick <ryan.levick@gmail.com>"] authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>", "Marli Frost <marli@frost.red>", "Ryan Levick <ryan.levick@gmail.com>"]
license = "MIT" license = "MIT"
repository = "https://github.com/zip-rs/zip.git" repository = "https://github.com/zip-rs/zip.git"

View file

@ -4,7 +4,7 @@ zip-rs
[![Build Status](https://img.shields.io/github/workflow/status/zip-rs/zip/CI)](https://github.com/zip-rs/zip/actions?query=branch%3Amaster+workflow%3ACI) [![Build Status](https://img.shields.io/github/workflow/status/zip-rs/zip/CI)](https://github.com/zip-rs/zip/actions?query=branch%3Amaster+workflow%3ACI)
[![Crates.io version](https://img.shields.io/crates/v/zip.svg)](https://crates.io/crates/zip) [![Crates.io version](https://img.shields.io/crates/v/zip.svg)](https://crates.io/crates/zip)
[Documentation](https://docs.rs/zip/0.5.10/zip/) [Documentation](https://docs.rs/zip/0.5.13/zip/)
Info Info

View file

@ -503,11 +503,7 @@ impl<R: Read + io::Seek> ZipArchive<R> {
let data = &mut self.files[file_number]; let data = &mut self.files[file_number];
match (password, data.encrypted) { match (password, data.encrypted) {
(None, true) => { (None, true) => return Err(ZipError::UnsupportedArchive(ZipError::PASSWORD_REQUIRED)),
return Err(ZipError::UnsupportedArchive(
"Password required to decrypt file",
))
}
(Some(_), false) => password = None, //Password supplied, but none needed! Discard. (Some(_), false) => password = None, //Password supplied, but none needed! Discard.
_ => {} _ => {}
} }

View file

@ -32,6 +32,21 @@ pub enum ZipError {
FileNotFound, FileNotFound,
} }
impl ZipError {
/// The text used as an error when a password is required and not supplied
///
/// ```rust,no_run
/// # use zip::result::ZipError;
/// # let mut archive = zip::ZipArchive::new(std::io::Cursor::new(&[])).unwrap();
/// match archive.by_index(1) {
/// Err(ZipError::UnsupportedArchive(ZipError::PASSWORD_REQUIRED)) => eprintln!("a password is needed to unzip this file"),
/// _ => (),
/// }
/// # ()
/// ```
pub const PASSWORD_REQUIRED: &'static str = "Password required to decrypt file";
}
impl From<ZipError> for io::Error { impl From<ZipError> for io::Error {
fn from(err: ZipError) -> io::Error { fn from(err: ZipError) -> io::Error {
io::Error::new(io::ErrorKind::Other, err) io::Error::new(io::ErrorKind::Other, err)

View file

@ -47,9 +47,9 @@ fn encrypted_file() {
// No password // No password
let file = archive.by_index(0); let file = archive.by_index(0);
match file { match file {
Err(zip::result::ZipError::UnsupportedArchive("Password required to decrypt file")) => { Err(zip::result::ZipError::UnsupportedArchive(
() zip::result::ZipError::PASSWORD_REQUIRED,
} )) => (),
Err(_) => panic!( Err(_) => panic!(
"Expected PasswordRequired error when opening encrypted file without password" "Expected PasswordRequired error when opening encrypted file without password"
), ),