Add support for svgs

This commit is contained in:
Edward Shen 2021-10-27 02:23:28 -07:00
parent d2755f82c9
commit 372a160558
Signed by: edward
GPG key ID: 19182661E818369F
2 changed files with 60 additions and 56 deletions

View file

@ -39,13 +39,12 @@ pub fn decrypt(
nonce: Nonce, nonce: Nonce,
maybe_password: Option<Key>, maybe_password: Option<Key>,
) -> Result<DecryptedData, PasteCompleteConstructionError> { ) -> Result<DecryptedData, PasteCompleteConstructionError> {
let container = &mut container;
log!("Stage 1 decryption started."); log!("Stage 1 decryption started.");
let start = now(); let start = now();
if let Some(password) = maybe_password { if let Some(password) = maybe_password {
crate::render_message("Decrypting Stage 1...".into()); crate::render_message("Decrypting Stage 1...".into());
open_in_place(container, &nonce.increment(), &password).map_err(|_| { open_in_place(&mut container, &nonce.increment(), &password).map_err(|_| {
crate::render_message("Unable to decrypt paste with the provided password.".into()); crate::render_message("Unable to decrypt paste with the provided password.".into());
PasteCompleteConstructionError::StageOneFailure PasteCompleteConstructionError::StageOneFailure
})?; })?;
@ -55,7 +54,7 @@ pub fn decrypt(
log!("Stage 2 decryption started."); log!("Stage 2 decryption started.");
let start = now(); let start = now();
crate::render_message("Decrypting Stage 2...".into()); crate::render_message("Decrypting Stage 2...".into());
open_in_place(container, &nonce, &key).map_err(|_| { open_in_place(&mut container, &nonce, &key).map_err(|_| {
crate::render_message( crate::render_message(
"Unable to decrypt paste with the provided encryption key and nonce.".into(), "Unable to decrypt paste with the provided encryption key and nonce.".into(),
); );
@ -63,10 +62,7 @@ pub fn decrypt(
})?; })?;
log!(format!("Stage 2 completed in {}ms", now() - start)); log!(format!("Stage 2 completed in {}ms", now() - start));
if let Ok(decrypted) = std::str::from_utf8(container) { let mime_type = tree_magic_mini::from_u8(&container);
Ok(DecryptedData::String(Arc::new(decrypted.to_owned())))
} else {
let mime_type = tree_magic_mini::from_u8(container);
log!("Mimetype: ", mime_type); log!("Mimetype: ", mime_type);
log!("Blob conversion started."); log!("Blob conversion started.");
@ -80,15 +76,17 @@ pub fn decrypt(
let mut blob_props = BlobPropertyBag::new(); let mut blob_props = BlobPropertyBag::new();
blob_props.type_(mime_type); blob_props.type_(mime_type);
let blob = Arc::new( let blob = Arc::new(
Blob::new_with_u8_array_sequence_and_options( Blob::new_with_u8_array_sequence_and_options(blob_chunks.dyn_ref().unwrap(), &blob_props)
blob_chunks.dyn_ref().unwrap(),
&blob_props,
)
.unwrap(), .unwrap(),
); );
log!(format!("Blob conversion completed in {}ms", now() - start)); log!(format!("Blob conversion completed in {}ms", now() - start));
if mime_type.starts_with("image/") || mime_type == "application/x-riff" { if mime_type.starts_with("text/") {
String::from_utf8(container)
.map(Arc::new)
.map(DecryptedData::String)
.map_err(|_| PasteCompleteConstructionError::InvalidEncoding)
} else if mime_type.starts_with("image/") || mime_type == "application/x-riff" {
Ok(DecryptedData::Image(blob, container.len())) Ok(DecryptedData::Image(blob, container.len()))
} else if mime_type.starts_with("audio/") { } else if mime_type.starts_with("audio/") {
Ok(DecryptedData::Audio(blob)) Ok(DecryptedData::Audio(blob))
@ -123,12 +121,12 @@ pub fn decrypt(
Ok(DecryptedData::Blob(blob)) Ok(DecryptedData::Blob(blob))
} }
} }
}
#[derive(Debug)] #[derive(Debug)]
pub enum PasteCompleteConstructionError { pub enum PasteCompleteConstructionError {
StageOneFailure, StageOneFailure,
StageTwoFailure, StageTwoFailure,
InvalidEncoding,
} }
impl std::error::Error for PasteCompleteConstructionError {} impl std::error::Error for PasteCompleteConstructionError {}
@ -142,6 +140,10 @@ impl Display for PasteCompleteConstructionError {
PasteCompleteConstructionError::StageTwoFailure => { PasteCompleteConstructionError::StageTwoFailure => {
write!(f, "Failed to decrypt stage two.") write!(f, "Failed to decrypt stage two.")
} }
PasteCompleteConstructionError::InvalidEncoding => write!(
f,
"Got an file with a text/* mime type, but was unable to parsed as valid UTF-8?"
),
} }
} }
} }

View file

@ -177,6 +177,8 @@ function createArchivePasteUi({ expiration, data, entries }) {
return a.name.toLowerCase().localeCompare(b.name.toLowerCase()); return a.name.toLowerCase().localeCompare(b.name.toLowerCase());
}); });
// This doesn't get sub directories and their folders, but hey it's close
// enough
entries.sort((a, b) => { entries.sort((a, b) => {
return b.name.includes("/") - a.name.includes("/"); return b.name.includes("/") - a.name.includes("/");
}); });