2021-06-04 03:36:12 +00:00
|
|
|
use crate::database::globals::Globals;
|
2021-06-06 12:28:32 +00:00
|
|
|
use image::{imageops::FilterType, GenericImageView};
|
2020-10-19 13:29:36 +00:00
|
|
|
|
2021-06-06 12:28:32 +00:00
|
|
|
use super::abstraction::Tree;
|
2020-05-18 15:53:34 +00:00
|
|
|
use crate::{utils, Error, Result};
|
2021-06-08 16:10:00 +00:00
|
|
|
use std::{mem, sync::Arc};
|
2021-09-13 17:45:56 +00:00
|
|
|
use tokio::{
|
|
|
|
fs::File,
|
|
|
|
io::{AsyncReadExt, AsyncWriteExt},
|
|
|
|
};
|
2020-05-18 15:53:34 +00:00
|
|
|
|
2020-07-28 12:59:30 +00:00
|
|
|
pub struct FileMeta {
|
2021-05-30 19:55:43 +00:00
|
|
|
pub content_disposition: Option<String>,
|
2020-11-18 13:36:12 +00:00
|
|
|
pub content_type: Option<String>,
|
2020-07-28 12:59:30 +00:00
|
|
|
pub file: Vec<u8>,
|
|
|
|
}
|
2020-07-26 03:56:50 +00:00
|
|
|
|
2020-05-18 15:53:34 +00:00
|
|
|
pub struct Media {
|
2021-06-08 16:10:00 +00:00
|
|
|
pub(super) mediaid_file: Arc<dyn Tree>, // MediaId = MXC + WidthHeight + ContentDisposition + ContentType
|
2020-05-18 15:53:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Media {
|
2021-06-04 03:36:12 +00:00
|
|
|
/// Uploads a file.
|
|
|
|
pub async fn create(
|
2020-05-18 15:53:34 +00:00
|
|
|
&self,
|
|
|
|
mxc: String,
|
2021-06-04 03:36:12 +00:00
|
|
|
globals: &Globals,
|
2021-05-30 19:55:43 +00:00
|
|
|
content_disposition: &Option<&str>,
|
2020-11-11 19:30:12 +00:00
|
|
|
content_type: &Option<&str>,
|
2020-05-18 15:53:34 +00:00
|
|
|
file: &[u8],
|
|
|
|
) -> Result<()> {
|
|
|
|
let mut key = mxc.as_bytes().to_vec();
|
|
|
|
key.push(0xff);
|
2020-05-19 16:31:34 +00:00
|
|
|
key.extend_from_slice(&0_u32.to_be_bytes()); // Width = 0 if it's not a thumbnail
|
|
|
|
key.extend_from_slice(&0_u32.to_be_bytes()); // Height = 0 if it's not a thumbnail
|
|
|
|
key.push(0xff);
|
2021-05-30 19:55:43 +00:00
|
|
|
key.extend_from_slice(
|
|
|
|
content_disposition
|
|
|
|
.as_ref()
|
|
|
|
.map(|f| f.as_bytes())
|
|
|
|
.unwrap_or_default(),
|
|
|
|
);
|
2020-05-18 15:53:34 +00:00
|
|
|
key.push(0xff);
|
2020-11-11 19:30:12 +00:00
|
|
|
key.extend_from_slice(
|
|
|
|
content_type
|
|
|
|
.as_ref()
|
|
|
|
.map(|c| c.as_bytes())
|
|
|
|
.unwrap_or_default(),
|
|
|
|
);
|
2020-05-18 15:53:34 +00:00
|
|
|
|
2021-06-04 03:36:12 +00:00
|
|
|
let path = globals.get_media_file(&key);
|
|
|
|
let mut f = File::create(path).await?;
|
|
|
|
f.write_all(file).await?;
|
2020-05-18 15:53:34 +00:00
|
|
|
|
2021-06-04 03:36:12 +00:00
|
|
|
self.mediaid_file.insert(&key, &[])?;
|
2020-05-18 15:53:34 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-09-14 12:20:38 +00:00
|
|
|
/// Uploads or replaces a file thumbnail.
|
2021-07-14 10:31:38 +00:00
|
|
|
#[allow(clippy::too_many_arguments)]
|
2021-06-04 03:36:12 +00:00
|
|
|
pub async fn upload_thumbnail(
|
2020-09-14 12:20:38 +00:00
|
|
|
&self,
|
|
|
|
mxc: String,
|
2021-06-04 03:36:12 +00:00
|
|
|
globals: &Globals,
|
2021-05-30 19:55:43 +00:00
|
|
|
content_disposition: &Option<String>,
|
2020-11-11 19:30:12 +00:00
|
|
|
content_type: &Option<String>,
|
2020-09-14 12:20:38 +00:00
|
|
|
width: u32,
|
|
|
|
height: u32,
|
|
|
|
file: &[u8],
|
|
|
|
) -> Result<()> {
|
|
|
|
let mut key = mxc.as_bytes().to_vec();
|
|
|
|
key.push(0xff);
|
|
|
|
key.extend_from_slice(&width.to_be_bytes());
|
|
|
|
key.extend_from_slice(&height.to_be_bytes());
|
|
|
|
key.push(0xff);
|
2021-05-30 19:55:43 +00:00
|
|
|
key.extend_from_slice(
|
|
|
|
content_disposition
|
|
|
|
.as_ref()
|
|
|
|
.map(|f| f.as_bytes())
|
|
|
|
.unwrap_or_default(),
|
|
|
|
);
|
2020-09-14 12:20:38 +00:00
|
|
|
key.push(0xff);
|
2020-11-11 19:30:12 +00:00
|
|
|
key.extend_from_slice(
|
|
|
|
content_type
|
|
|
|
.as_ref()
|
|
|
|
.map(|c| c.as_bytes())
|
|
|
|
.unwrap_or_default(),
|
|
|
|
);
|
2020-09-14 12:20:38 +00:00
|
|
|
|
2021-06-04 03:36:12 +00:00
|
|
|
let path = globals.get_media_file(&key);
|
|
|
|
let mut f = File::create(path).await?;
|
|
|
|
f.write_all(file).await?;
|
|
|
|
|
|
|
|
self.mediaid_file.insert(&key, &[])?;
|
2020-09-14 12:20:38 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-05-18 15:53:34 +00:00
|
|
|
/// Downloads a file.
|
2021-06-04 03:36:12 +00:00
|
|
|
pub async fn get(&self, globals: &Globals, mxc: &str) -> Result<Option<FileMeta>> {
|
2020-05-18 15:53:34 +00:00
|
|
|
let mut prefix = mxc.as_bytes().to_vec();
|
|
|
|
prefix.push(0xff);
|
2020-05-19 16:31:34 +00:00
|
|
|
prefix.extend_from_slice(&0_u32.to_be_bytes()); // Width = 0 if it's not a thumbnail
|
|
|
|
prefix.extend_from_slice(&0_u32.to_be_bytes()); // Height = 0 if it's not a thumbnail
|
|
|
|
prefix.push(0xff);
|
2020-05-18 15:53:34 +00:00
|
|
|
|
2021-08-02 08:13:34 +00:00
|
|
|
let first = self.mediaid_file.scan_prefix(prefix).next();
|
|
|
|
if let Some((key, _)) = first {
|
2021-06-08 12:35:13 +00:00
|
|
|
let path = globals.get_media_file(&key);
|
2021-06-08 16:23:24 +00:00
|
|
|
let mut file = Vec::new();
|
2021-06-04 03:36:12 +00:00
|
|
|
File::open(path).await?.read_to_end(&mut file).await?;
|
2020-05-19 16:31:34 +00:00
|
|
|
let mut parts = key.rsplit(|&b| b == 0xff);
|
|
|
|
|
2020-11-18 13:36:12 +00:00
|
|
|
let content_type = parts
|
|
|
|
.next()
|
|
|
|
.map(|bytes| {
|
2021-06-17 18:34:14 +00:00
|
|
|
utils::string_from_bytes(bytes).map_err(|_| {
|
2020-11-18 13:36:12 +00:00
|
|
|
Error::bad_database("Content type in mediaid_file is invalid unicode.")
|
2021-06-17 18:34:14 +00:00
|
|
|
})
|
2020-11-18 13:36:12 +00:00
|
|
|
})
|
|
|
|
.transpose()?;
|
2020-05-18 15:53:34 +00:00
|
|
|
|
2021-05-30 19:55:43 +00:00
|
|
|
let content_disposition_bytes = parts
|
2020-05-18 15:53:34 +00:00
|
|
|
.next()
|
2020-06-11 08:03:08 +00:00
|
|
|
.ok_or_else(|| Error::bad_database("Media ID in db is invalid."))?;
|
2020-06-09 13:13:17 +00:00
|
|
|
|
2021-05-30 19:55:43 +00:00
|
|
|
let content_disposition = if content_disposition_bytes.is_empty() {
|
2020-05-18 15:53:34 +00:00
|
|
|
None
|
|
|
|
} else {
|
2021-05-30 19:55:43 +00:00
|
|
|
Some(
|
|
|
|
utils::string_from_bytes(content_disposition_bytes).map_err(|_| {
|
|
|
|
Error::bad_database(
|
|
|
|
"Content Disposition in mediaid_file is invalid unicode.",
|
|
|
|
)
|
|
|
|
})?,
|
|
|
|
)
|
2020-05-18 15:53:34 +00:00
|
|
|
};
|
|
|
|
|
2020-07-28 12:59:30 +00:00
|
|
|
Ok(Some(FileMeta {
|
2021-05-30 19:55:43 +00:00
|
|
|
content_disposition,
|
2020-07-28 12:59:30 +00:00
|
|
|
content_type,
|
2021-06-04 03:36:12 +00:00
|
|
|
file,
|
2020-07-28 12:59:30 +00:00
|
|
|
}))
|
2020-05-19 16:31:34 +00:00
|
|
|
} else {
|
|
|
|
Ok(None)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-19 13:29:36 +00:00
|
|
|
/// Returns width, height of the thumbnail and whether it should be cropped. Returns None when
|
|
|
|
/// the server should send the original file.
|
|
|
|
pub fn thumbnail_properties(&self, width: u32, height: u32) -> Option<(u32, u32, bool)> {
|
|
|
|
match (width, height) {
|
|
|
|
(0..=32, 0..=32) => Some((32, 32, true)),
|
|
|
|
(0..=96, 0..=96) => Some((96, 96, true)),
|
|
|
|
(0..=320, 0..=240) => Some((320, 240, false)),
|
|
|
|
(0..=640, 0..=480) => Some((640, 480, false)),
|
|
|
|
(0..=800, 0..=600) => Some((800, 600, false)),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-19 16:31:34 +00:00
|
|
|
/// Downloads a file's thumbnail.
|
2020-10-19 13:29:36 +00:00
|
|
|
///
|
|
|
|
/// Here's an example on how it works:
|
|
|
|
///
|
|
|
|
/// - Client requests an image with width=567, height=567
|
|
|
|
/// - Server rounds that up to (800, 600), so it doesn't have to save too many thumbnails
|
|
|
|
/// - Server rounds that up again to (958, 600) to fix the aspect ratio (only for width,height>96)
|
|
|
|
/// - Server creates the thumbnail and sends it to the user
|
|
|
|
///
|
|
|
|
/// For width,height <= 96 the server uses another thumbnailing algorithm which crops the image afterwards.
|
2021-06-06 12:28:32 +00:00
|
|
|
pub async fn get_thumbnail(
|
|
|
|
&self,
|
|
|
|
mxc: String,
|
|
|
|
globals: &Globals,
|
|
|
|
width: u32,
|
|
|
|
height: u32,
|
|
|
|
) -> Result<Option<FileMeta>> {
|
2020-10-19 13:29:36 +00:00
|
|
|
let (width, height, crop) = self
|
|
|
|
.thumbnail_properties(width, height)
|
|
|
|
.unwrap_or((0, 0, false)); // 0, 0 because that's the original file
|
|
|
|
|
2020-05-19 16:31:34 +00:00
|
|
|
let mut main_prefix = mxc.as_bytes().to_vec();
|
|
|
|
main_prefix.push(0xff);
|
|
|
|
|
|
|
|
let mut thumbnail_prefix = main_prefix.clone();
|
|
|
|
thumbnail_prefix.extend_from_slice(&width.to_be_bytes());
|
|
|
|
thumbnail_prefix.extend_from_slice(&height.to_be_bytes());
|
|
|
|
thumbnail_prefix.push(0xff);
|
|
|
|
|
|
|
|
let mut original_prefix = main_prefix;
|
|
|
|
original_prefix.extend_from_slice(&0_u32.to_be_bytes()); // Width = 0 if it's not a thumbnail
|
|
|
|
original_prefix.extend_from_slice(&0_u32.to_be_bytes()); // Height = 0 if it's not a thumbnail
|
|
|
|
original_prefix.push(0xff);
|
|
|
|
|
2021-08-02 08:13:34 +00:00
|
|
|
let first_thumbnailprefix = self.mediaid_file.scan_prefix(thumbnail_prefix).next();
|
|
|
|
let first_originalprefix = self.mediaid_file.scan_prefix(original_prefix).next();
|
|
|
|
if let Some((key, _)) = first_thumbnailprefix {
|
2020-05-19 16:31:34 +00:00
|
|
|
// Using saved thumbnail
|
2021-06-08 12:35:13 +00:00
|
|
|
let path = globals.get_media_file(&key);
|
2021-06-08 16:23:24 +00:00
|
|
|
let mut file = Vec::new();
|
2021-06-04 03:36:12 +00:00
|
|
|
File::open(path).await?.read_to_end(&mut file).await?;
|
2020-05-19 16:31:34 +00:00
|
|
|
let mut parts = key.rsplit(|&b| b == 0xff);
|
|
|
|
|
2020-11-18 13:36:12 +00:00
|
|
|
let content_type = parts
|
|
|
|
.next()
|
|
|
|
.map(|bytes| {
|
2021-06-17 18:34:14 +00:00
|
|
|
utils::string_from_bytes(bytes).map_err(|_| {
|
2020-11-18 13:36:12 +00:00
|
|
|
Error::bad_database("Content type in mediaid_file is invalid unicode.")
|
2021-06-17 18:34:14 +00:00
|
|
|
})
|
2020-11-18 13:36:12 +00:00
|
|
|
})
|
|
|
|
.transpose()?;
|
2020-05-18 15:53:34 +00:00
|
|
|
|
2021-05-30 19:55:43 +00:00
|
|
|
let content_disposition_bytes = parts
|
2020-05-19 16:31:34 +00:00
|
|
|
.next()
|
2020-06-11 08:03:08 +00:00
|
|
|
.ok_or_else(|| Error::bad_database("Media ID in db is invalid."))?;
|
2020-06-09 13:13:17 +00:00
|
|
|
|
2021-05-30 19:55:43 +00:00
|
|
|
let content_disposition = if content_disposition_bytes.is_empty() {
|
2020-05-19 16:31:34 +00:00
|
|
|
None
|
|
|
|
} else {
|
2020-06-09 13:13:17 +00:00
|
|
|
Some(
|
2021-05-30 19:55:43 +00:00
|
|
|
utils::string_from_bytes(content_disposition_bytes).map_err(|_| {
|
|
|
|
Error::bad_database("Content Disposition in db is invalid.")
|
|
|
|
})?,
|
2020-06-09 13:13:17 +00:00
|
|
|
)
|
2020-05-19 16:31:34 +00:00
|
|
|
};
|
|
|
|
|
2020-07-28 12:59:30 +00:00
|
|
|
Ok(Some(FileMeta {
|
2021-05-30 19:55:43 +00:00
|
|
|
content_disposition,
|
2020-07-28 12:59:30 +00:00
|
|
|
content_type,
|
|
|
|
file: file.to_vec(),
|
|
|
|
}))
|
2021-08-02 08:13:34 +00:00
|
|
|
} else if let Some((key, _)) = first_originalprefix {
|
2020-05-19 16:31:34 +00:00
|
|
|
// Generate a thumbnail
|
2021-06-08 12:35:13 +00:00
|
|
|
let path = globals.get_media_file(&key);
|
2021-06-08 16:23:24 +00:00
|
|
|
let mut file = Vec::new();
|
2021-06-04 03:36:12 +00:00
|
|
|
File::open(path).await?.read_to_end(&mut file).await?;
|
2021-06-06 12:28:32 +00:00
|
|
|
|
2020-05-19 16:31:34 +00:00
|
|
|
let mut parts = key.rsplit(|&b| b == 0xff);
|
|
|
|
|
2020-11-18 13:36:12 +00:00
|
|
|
let content_type = parts
|
|
|
|
.next()
|
|
|
|
.map(|bytes| {
|
2021-06-17 18:34:14 +00:00
|
|
|
utils::string_from_bytes(bytes).map_err(|_| {
|
2020-11-18 13:36:12 +00:00
|
|
|
Error::bad_database("Content type in mediaid_file is invalid unicode.")
|
2021-06-17 18:34:14 +00:00
|
|
|
})
|
2020-11-18 13:36:12 +00:00
|
|
|
})
|
|
|
|
.transpose()?;
|
2020-05-19 16:31:34 +00:00
|
|
|
|
2021-05-30 19:55:43 +00:00
|
|
|
let content_disposition_bytes = parts
|
2020-05-19 16:31:34 +00:00
|
|
|
.next()
|
2020-06-11 08:03:08 +00:00
|
|
|
.ok_or_else(|| Error::bad_database("Media ID in db is invalid."))?;
|
2020-06-09 13:13:17 +00:00
|
|
|
|
2021-05-30 19:55:43 +00:00
|
|
|
let content_disposition = if content_disposition_bytes.is_empty() {
|
2020-05-19 16:31:34 +00:00
|
|
|
None
|
|
|
|
} else {
|
2021-05-30 19:55:43 +00:00
|
|
|
Some(
|
|
|
|
utils::string_from_bytes(content_disposition_bytes).map_err(|_| {
|
|
|
|
Error::bad_database(
|
|
|
|
"Content Disposition in mediaid_file is invalid unicode.",
|
|
|
|
)
|
|
|
|
})?,
|
|
|
|
)
|
2020-05-19 16:31:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if let Ok(image) = image::load_from_memory(&file) {
|
2020-10-19 13:29:36 +00:00
|
|
|
let original_width = image.width();
|
|
|
|
let original_height = image.height();
|
|
|
|
if width > original_width || height > original_height {
|
|
|
|
return Ok(Some(FileMeta {
|
2021-05-30 19:55:43 +00:00
|
|
|
content_disposition,
|
2020-10-19 13:29:36 +00:00
|
|
|
content_type,
|
|
|
|
file: file.to_vec(),
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
let thumbnail = if crop {
|
2021-03-23 18:46:54 +00:00
|
|
|
image.resize_to_fill(width, height, FilterType::CatmullRom)
|
2020-10-19 13:29:36 +00:00
|
|
|
} else {
|
|
|
|
let (exact_width, exact_height) = {
|
|
|
|
// Copied from image::dynimage::resize_dimensions
|
|
|
|
let ratio = u64::from(original_width) * u64::from(height);
|
|
|
|
let nratio = u64::from(width) * u64::from(original_height);
|
|
|
|
|
2021-03-23 18:46:54 +00:00
|
|
|
let use_width = nratio <= ratio;
|
2020-10-19 13:29:36 +00:00
|
|
|
let intermediate = if use_width {
|
2021-03-23 18:46:54 +00:00
|
|
|
u64::from(original_height) * u64::from(width)
|
|
|
|
/ u64::from(original_width)
|
2020-10-19 13:29:36 +00:00
|
|
|
} else {
|
|
|
|
u64::from(original_width) * u64::from(height)
|
|
|
|
/ u64::from(original_height)
|
|
|
|
};
|
|
|
|
if use_width {
|
|
|
|
if intermediate <= u64::from(::std::u32::MAX) {
|
|
|
|
(width, intermediate as u32)
|
|
|
|
} else {
|
|
|
|
(
|
|
|
|
(u64::from(width) * u64::from(::std::u32::MAX) / intermediate)
|
|
|
|
as u32,
|
|
|
|
::std::u32::MAX,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
} else if intermediate <= u64::from(::std::u32::MAX) {
|
|
|
|
(intermediate as u32, height)
|
|
|
|
} else {
|
|
|
|
(
|
|
|
|
::std::u32::MAX,
|
|
|
|
(u64::from(height) * u64::from(::std::u32::MAX) / intermediate)
|
|
|
|
as u32,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-03-24 10:52:10 +00:00
|
|
|
image.thumbnail_exact(exact_width, exact_height)
|
2020-10-19 13:29:36 +00:00
|
|
|
};
|
|
|
|
|
2020-05-19 16:31:34 +00:00
|
|
|
let mut thumbnail_bytes = Vec::new();
|
2020-05-19 21:50:20 +00:00
|
|
|
thumbnail.write_to(&mut thumbnail_bytes, image::ImageOutputFormat::Png)?;
|
2020-05-19 16:31:34 +00:00
|
|
|
|
|
|
|
// Save thumbnail in database so we don't have to generate it again next time
|
|
|
|
let mut thumbnail_key = key.to_vec();
|
|
|
|
let width_index = thumbnail_key
|
|
|
|
.iter()
|
|
|
|
.position(|&b| b == 0xff)
|
2020-06-11 08:03:08 +00:00
|
|
|
.ok_or_else(|| Error::bad_database("Media in db is invalid."))?
|
2020-05-19 16:31:34 +00:00
|
|
|
+ 1;
|
|
|
|
let mut widthheight = width.to_be_bytes().to_vec();
|
|
|
|
widthheight.extend_from_slice(&height.to_be_bytes());
|
|
|
|
|
|
|
|
thumbnail_key.splice(
|
|
|
|
width_index..width_index + 2 * mem::size_of::<u32>(),
|
|
|
|
widthheight,
|
|
|
|
);
|
|
|
|
|
2021-06-04 03:36:12 +00:00
|
|
|
let path = globals.get_media_file(&thumbnail_key);
|
|
|
|
let mut f = File::create(path).await?;
|
|
|
|
f.write_all(&thumbnail_bytes).await?;
|
2021-06-06 12:28:32 +00:00
|
|
|
|
2021-06-04 03:36:12 +00:00
|
|
|
self.mediaid_file.insert(&thumbnail_key, &[])?;
|
2020-05-19 16:31:34 +00:00
|
|
|
|
2020-07-28 12:59:30 +00:00
|
|
|
Ok(Some(FileMeta {
|
2021-05-30 19:55:43 +00:00
|
|
|
content_disposition,
|
2020-07-28 12:59:30 +00:00
|
|
|
content_type,
|
2021-06-06 12:28:32 +00:00
|
|
|
file: thumbnail_bytes.to_vec(),
|
2020-07-28 12:59:30 +00:00
|
|
|
}))
|
2020-05-19 16:31:34 +00:00
|
|
|
} else {
|
2020-12-08 09:33:44 +00:00
|
|
|
// Couldn't parse file to generate thumbnail, send original
|
|
|
|
Ok(Some(FileMeta {
|
2021-05-30 19:55:43 +00:00
|
|
|
content_disposition,
|
2020-12-08 09:33:44 +00:00
|
|
|
content_type,
|
2021-06-06 12:28:32 +00:00
|
|
|
file: file.to_vec(),
|
2020-12-08 09:33:44 +00:00
|
|
|
}))
|
2020-05-19 16:31:34 +00:00
|
|
|
}
|
2020-05-18 15:53:34 +00:00
|
|
|
} else {
|
|
|
|
Ok(None)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|