feat: constant for handling missing password

This commit is contained in:
Marli Frost 2021-06-04 18:42:20 +01:00
parent 3fd44ffd5d
commit 61de5d51ac
No known key found for this signature in database
GPG key ID: CB0BEA7CF9BD1245
3 changed files with 19 additions and 8 deletions

View file

@ -489,11 +489,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"
), ),