1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2025-07-22 17:18:35 +00:00
conduit/src/service/media/mod.rs

222 lines
7.9 KiB
Rust
Raw Normal View History

2022-09-07 13:25:51 +02:00
mod data;
pub use data::Data;
2022-10-05 20:41:05 +02:00
use crate::{services, Result};
2022-09-07 13:25:51 +02:00
use image::{imageops::FilterType, GenericImageView};
2022-10-08 13:04:55 +02:00
use tokio::{
fs::File,
io::{AsyncReadExt, AsyncWriteExt},
};
2020-05-18 17:53:34 +02:00
pub struct FileMeta {
pub content_disposition: Option<String>,
pub content_type: Option<String>,
pub file: Vec<u8>,
}
2022-10-05 12:45:54 +02:00
pub struct Service {
2022-10-08 13:02:52 +02:00
pub db: &'static dyn Data,
2020-05-18 17:53:34 +02:00
}
2022-10-05 12:45:54 +02:00
impl Service {
2021-06-04 08:06:12 +04:30
/// Uploads a file.
pub async fn create(
2020-05-18 17:53:34 +02:00
&self,
mxc: String,
2022-10-05 15:33:57 +02:00
content_disposition: Option<&str>,
content_type: Option<&str>,
2020-05-18 17:53:34 +02:00
file: &[u8],
) -> Result<()> {
2022-09-07 13:25:51 +02:00
// Width, Height = 0 if it's not a thumbnail
2022-10-05 20:34:31 +02:00
let key = self
.db
.create_file_metadata(mxc, 0, 0, content_disposition, content_type)?;
2020-05-18 17:53:34 +02:00
2022-09-07 13:25:51 +02:00
let path = services().globals.get_media_file(&key);
2021-06-04 08:06:12 +04:30
let mut f = File::create(path).await?;
f.write_all(file).await?;
2020-05-18 17:53:34 +02:00
Ok(())
}
/// Uploads or replaces a file thumbnail.
#[allow(clippy::too_many_arguments)]
2021-06-04 08:06:12 +04:30
pub async fn upload_thumbnail(
&self,
mxc: String,
2022-10-05 15:33:57 +02:00
content_disposition: Option<&str>,
content_type: Option<&str>,
width: u32,
height: u32,
file: &[u8],
) -> Result<()> {
2022-10-05 20:34:31 +02:00
let key =
self.db
.create_file_metadata(mxc, width, height, content_disposition, content_type)?;
2022-09-07 13:25:51 +02:00
let path = services().globals.get_media_file(&key);
2021-06-04 08:06:12 +04:30
let mut f = File::create(path).await?;
f.write_all(file).await?;
Ok(())
}
2020-05-18 17:53:34 +02:00
/// Downloads a file.
2022-09-07 13:25:51 +02:00
pub async fn get(&self, mxc: String) -> Result<Option<FileMeta>> {
2022-10-05 20:34:31 +02:00
if let Ok((content_disposition, content_type, key)) =
self.db.search_file_metadata(mxc, 0, 0)
{
2022-09-07 13:25:51 +02:00
let path = services().globals.get_media_file(&key);
2021-06-08 20:53:24 +04:30
let mut file = Vec::new();
2021-06-04 08:06:12 +04:30
File::open(path).await?.read_to_end(&mut file).await?;
2020-05-18 17:53:34 +02:00
Ok(Some(FileMeta {
content_disposition,
content_type,
2021-06-04 08:06:12 +04:30
file,
}))
2020-05-19 18:31:34 +02:00
} else {
Ok(None)
}
}
/// 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 18:31:34 +02:00
/// Downloads a file's thumbnail.
///
/// 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 16:58:32 +04:30
pub async fn get_thumbnail(
&self,
2022-09-07 13:25:51 +02:00
mxc: String,
2021-06-06 16:58:32 +04:30
width: u32,
height: u32,
) -> Result<Option<FileMeta>> {
let (width, height, crop) = self
.thumbnail_properties(width, height)
.unwrap_or((0, 0, false)); // 0, 0 because that's the original file
2022-10-05 20:34:31 +02:00
if let Ok((content_disposition, content_type, key)) =
self.db.search_file_metadata(mxc.clone(), width, height)
{
2020-05-19 18:31:34 +02:00
// Using saved thumbnail
2022-09-07 13:25:51 +02:00
let path = services().globals.get_media_file(&key);
2021-06-08 20:53:24 +04:30
let mut file = Vec::new();
2021-06-04 08:06:12 +04:30
File::open(path).await?.read_to_end(&mut file).await?;
2020-05-19 18:31:34 +02:00
Ok(Some(FileMeta {
content_disposition,
content_type,
file: file.to_vec(),
}))
2022-10-05 20:34:31 +02:00
} else if let Ok((content_disposition, content_type, key)) =
self.db.search_file_metadata(mxc.clone(), 0, 0)
{
2020-05-19 18:31:34 +02:00
// Generate a thumbnail
2022-09-07 13:25:51 +02:00
let path = services().globals.get_media_file(&key);
2021-06-08 20:53:24 +04:30
let mut file = Vec::new();
2021-06-04 08:06:12 +04:30
File::open(path).await?.read_to_end(&mut file).await?;
2021-06-06 16:58:32 +04:30
2020-05-19 18:31:34 +02:00
if let Ok(image) = image::load_from_memory(&file) {
let original_width = image.width();
let original_height = image.height();
if width > original_width || height > original_height {
return Ok(Some(FileMeta {
content_disposition,
content_type,
file: file.to_vec(),
}));
}
let thumbnail = if crop {
image.resize_to_fill(width, height, FilterType::CatmullRom)
} 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);
let use_width = nratio <= ratio;
let intermediate = if use_width {
u64::from(original_height) * u64::from(width)
/ u64::from(original_width)
} 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 11:52:10 +01:00
image.thumbnail_exact(exact_width, exact_height)
};
2020-05-19 18:31:34 +02:00
let mut thumbnail_bytes = Vec::new();
2020-05-19 23:50:20 +02:00
thumbnail.write_to(&mut thumbnail_bytes, image::ImageOutputFormat::Png)?;
2020-05-19 18:31:34 +02:00
// Save thumbnail in database so we don't have to generate it again next time
2022-10-05 20:34:31 +02:00
let thumbnail_key = self.db.create_file_metadata(
mxc,
width,
height,
content_disposition.as_deref(),
content_type.as_deref(),
)?;
2020-05-19 18:31:34 +02:00
2022-09-07 13:25:51 +02:00
let path = services().globals.get_media_file(&thumbnail_key);
2021-06-04 08:06:12 +04:30
let mut f = File::create(path).await?;
f.write_all(&thumbnail_bytes).await?;
2021-06-06 16:58:32 +04:30
Ok(Some(FileMeta {
content_disposition,
content_type,
2021-06-06 16:58:32 +04:30
file: thumbnail_bytes.to_vec(),
}))
2020-05-19 18:31:34 +02:00
} else {
// Couldn't parse file to generate thumbnail, send original
Ok(Some(FileMeta {
content_disposition,
content_type,
2021-06-06 16:58:32 +04:30
file: file.to_vec(),
}))
2020-05-19 18:31:34 +02:00
}
2020-05-18 17:53:34 +02:00
} else {
Ok(None)
}
}
}