mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-01 10:09:57 +00:00
376 lines
11 KiB
Rust
376 lines
11 KiB
Rust
use crate::{
|
|
config::{ImageFormat, VideoCodec},
|
|
error::{Error, UploadError},
|
|
process::Process,
|
|
repo::Alias,
|
|
store::{Store, StoreError},
|
|
};
|
|
use actix_web::web::Bytes;
|
|
use tokio::{
|
|
io::{AsyncRead, AsyncReadExt},
|
|
process::Command,
|
|
};
|
|
|
|
pub(crate) fn details_hint(alias: &Alias) -> Option<ValidInputType> {
|
|
let ext = alias.extension()?;
|
|
if ext.ends_with(".mp4") {
|
|
Some(ValidInputType::Mp4)
|
|
} else if ext.ends_with(".webm") {
|
|
Some(ValidInputType::Webm)
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
|
|
fn image_avif() -> mime::Mime {
|
|
"image/avif".parse().unwrap()
|
|
}
|
|
|
|
fn image_jxl() -> mime::Mime {
|
|
"image/jxl".parse().unwrap()
|
|
}
|
|
|
|
fn image_webp() -> mime::Mime {
|
|
"image/webp".parse().unwrap()
|
|
}
|
|
|
|
pub(crate) fn video_mp4() -> mime::Mime {
|
|
"video/mp4".parse().unwrap()
|
|
}
|
|
|
|
pub(crate) fn video_webm() -> mime::Mime {
|
|
"video/webm".parse().unwrap()
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
pub(crate) enum ValidInputType {
|
|
Mp4,
|
|
Webm,
|
|
Gif,
|
|
Avif,
|
|
Jpeg,
|
|
Jxl,
|
|
Png,
|
|
Webp,
|
|
}
|
|
|
|
impl ValidInputType {
|
|
const fn as_str(self) -> &'static str {
|
|
match self {
|
|
Self::Mp4 => "MP4",
|
|
Self::Webm => "WEBM",
|
|
Self::Gif => "GIF",
|
|
Self::Avif => "AVIF",
|
|
Self::Jpeg => "JPEG",
|
|
Self::Jxl => "JXL",
|
|
Self::Png => "PNG",
|
|
Self::Webp => "WEBP",
|
|
}
|
|
}
|
|
|
|
pub(crate) const fn as_ext(self) -> &'static str {
|
|
match self {
|
|
Self::Mp4 => ".mp4",
|
|
Self::Webm => ".webm",
|
|
Self::Gif => ".gif",
|
|
Self::Avif => ".avif",
|
|
Self::Jpeg => ".jpeg",
|
|
Self::Jxl => ".jxl",
|
|
Self::Png => ".png",
|
|
Self::Webp => ".webp",
|
|
}
|
|
}
|
|
|
|
pub(crate) const fn is_video(self) -> bool {
|
|
matches!(self, Self::Mp4 | Self::Webm | Self::Gif)
|
|
}
|
|
|
|
const fn video_hint(self) -> Option<&'static str> {
|
|
match self {
|
|
Self::Mp4 => Some(".mp4"),
|
|
Self::Webm => Some(".webm"),
|
|
Self::Gif => Some(".gif"),
|
|
_ => None,
|
|
}
|
|
}
|
|
|
|
pub(crate) const fn from_video_codec(codec: VideoCodec) -> Self {
|
|
match codec {
|
|
VideoCodec::Av1 | VideoCodec::Vp8 | VideoCodec::Vp9 => Self::Webm,
|
|
VideoCodec::H264 | VideoCodec::H265 => Self::Mp4,
|
|
}
|
|
}
|
|
|
|
pub(crate) const fn from_format(format: ImageFormat) -> Self {
|
|
match format {
|
|
ImageFormat::Avif => ValidInputType::Avif,
|
|
ImageFormat::Jpeg => ValidInputType::Jpeg,
|
|
ImageFormat::Jxl => ValidInputType::Jxl,
|
|
ImageFormat::Png => ValidInputType::Png,
|
|
ImageFormat::Webp => ValidInputType::Webp,
|
|
}
|
|
}
|
|
|
|
pub(crate) const fn to_format(self) -> Option<ImageFormat> {
|
|
match self {
|
|
Self::Avif => Some(ImageFormat::Avif),
|
|
Self::Jpeg => Some(ImageFormat::Jpeg),
|
|
Self::Jxl => Some(ImageFormat::Jxl),
|
|
Self::Png => Some(ImageFormat::Png),
|
|
Self::Webp => Some(ImageFormat::Webp),
|
|
_ => None,
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
pub(crate) struct Details {
|
|
pub(crate) mime_type: mime::Mime,
|
|
pub(crate) width: usize,
|
|
pub(crate) height: usize,
|
|
pub(crate) frames: Option<usize>,
|
|
}
|
|
|
|
#[tracing::instrument(level = "debug", skip(input))]
|
|
pub(crate) fn convert_bytes_read(
|
|
input: Bytes,
|
|
format: ImageFormat,
|
|
) -> std::io::Result<impl AsyncRead + Unpin> {
|
|
let process = Process::run(
|
|
"magick",
|
|
&[
|
|
"convert",
|
|
"-",
|
|
"-auto-orient",
|
|
"-strip",
|
|
format!("{}:-", format.as_magick_format()).as_str(),
|
|
],
|
|
)?;
|
|
|
|
Ok(process.bytes_read(input))
|
|
}
|
|
|
|
#[tracing::instrument(skip(input))]
|
|
pub(crate) async fn details_bytes(
|
|
input: Bytes,
|
|
hint: Option<ValidInputType>,
|
|
) -> Result<Details, Error> {
|
|
if let Some(hint) = hint.and_then(|hint| hint.video_hint()) {
|
|
let input_file = crate::tmp_file::tmp_file(Some(hint));
|
|
let input_file_str = input_file.to_str().ok_or(UploadError::Path)?;
|
|
crate::store::file_store::safe_create_parent(&input_file)
|
|
.await
|
|
.map_err(StoreError::from)?;
|
|
|
|
let mut tmp_one = crate::file::File::create(&input_file).await?;
|
|
tmp_one.write_from_bytes(input).await?;
|
|
tmp_one.close().await?;
|
|
|
|
return details_file(input_file_str).await;
|
|
}
|
|
|
|
let last_arg = if let Some(expected_format) = hint {
|
|
format!("{}:-", expected_format.as_str())
|
|
} else {
|
|
"-".to_owned()
|
|
};
|
|
|
|
let process = Process::run(
|
|
"magick",
|
|
&["identify", "-ping", "-format", "%w %h | %m\n", &last_arg],
|
|
)?;
|
|
|
|
let mut reader = process.bytes_read(input);
|
|
|
|
let mut bytes = Vec::new();
|
|
reader.read_to_end(&mut bytes).await?;
|
|
let s = String::from_utf8_lossy(&bytes);
|
|
|
|
parse_details(s)
|
|
}
|
|
|
|
#[tracing::instrument(skip(store))]
|
|
pub(crate) async fn details_store<S: Store + 'static>(
|
|
store: S,
|
|
identifier: S::Identifier,
|
|
hint: Option<ValidInputType>,
|
|
) -> Result<Details, Error> {
|
|
if let Some(hint) = hint.and_then(|hint| hint.video_hint()) {
|
|
let input_file = crate::tmp_file::tmp_file(Some(hint));
|
|
let input_file_str = input_file.to_str().ok_or(UploadError::Path)?;
|
|
crate::store::file_store::safe_create_parent(&input_file)
|
|
.await
|
|
.map_err(StoreError::from)?;
|
|
|
|
let mut tmp_one = crate::file::File::create(&input_file).await?;
|
|
tmp_one
|
|
.write_from_stream(store.to_stream(&identifier, None, None).await?)
|
|
.await?;
|
|
tmp_one.close().await?;
|
|
|
|
return details_file(input_file_str).await;
|
|
}
|
|
|
|
let last_arg = if let Some(expected_format) = hint {
|
|
format!("{}:-", expected_format.as_str())
|
|
} else {
|
|
"-".to_owned()
|
|
};
|
|
|
|
let process = Process::run(
|
|
"magick",
|
|
&["identify", "-ping", "-format", "%w %h | %m\n", &last_arg],
|
|
)?;
|
|
|
|
let mut reader = process.store_read(store, identifier);
|
|
|
|
let mut output = Vec::new();
|
|
reader.read_to_end(&mut output).await?;
|
|
|
|
let s = String::from_utf8_lossy(&output);
|
|
|
|
parse_details(s)
|
|
}
|
|
|
|
#[tracing::instrument]
|
|
pub(crate) async fn details_file(path_str: &str) -> Result<Details, Error> {
|
|
let process = Process::run(
|
|
"magick",
|
|
&["identify", "-ping", "-format", "%w %h | %m\n", path_str],
|
|
)?;
|
|
|
|
let mut reader = process.read();
|
|
|
|
let mut output = Vec::new();
|
|
reader.read_to_end(&mut output).await?;
|
|
tokio::fs::remove_file(path_str).await?;
|
|
|
|
let s = String::from_utf8_lossy(&output);
|
|
|
|
parse_details(s)
|
|
}
|
|
|
|
fn parse_details(s: std::borrow::Cow<'_, str>) -> Result<Details, Error> {
|
|
let frames = s.lines().count();
|
|
|
|
let mut lines = s.lines();
|
|
let first = lines.next().ok_or(UploadError::UnsupportedFormat)?;
|
|
|
|
let mut segments = first.split('|');
|
|
|
|
let dimensions = segments
|
|
.next()
|
|
.ok_or(UploadError::UnsupportedFormat)?
|
|
.trim();
|
|
tracing::debug!("dimensions: {}", dimensions);
|
|
let mut dims = dimensions.split(' ');
|
|
let width = dims
|
|
.next()
|
|
.ok_or(UploadError::UnsupportedFormat)?
|
|
.trim()
|
|
.parse()
|
|
.map_err(|_| UploadError::UnsupportedFormat)?;
|
|
let height = dims
|
|
.next()
|
|
.ok_or(UploadError::UnsupportedFormat)?
|
|
.trim()
|
|
.parse()
|
|
.map_err(|_| UploadError::UnsupportedFormat)?;
|
|
|
|
let format = segments
|
|
.next()
|
|
.ok_or(UploadError::UnsupportedFormat)?
|
|
.trim();
|
|
tracing::debug!("format: {}", format);
|
|
|
|
if !lines.all(|item| item.ends_with(format)) {
|
|
return Err(UploadError::UnsupportedFormat.into());
|
|
}
|
|
|
|
let mime_type = match format {
|
|
"MP4" => video_mp4(),
|
|
"WEBM" => video_webm(),
|
|
"GIF" => mime::IMAGE_GIF,
|
|
"AVIF" => image_avif(),
|
|
"JPEG" => mime::IMAGE_JPEG,
|
|
"JXL" => image_jxl(),
|
|
"PNG" => mime::IMAGE_PNG,
|
|
"WEBP" => image_webp(),
|
|
_ => return Err(UploadError::UnsupportedFormat.into()),
|
|
};
|
|
|
|
Ok(Details {
|
|
mime_type,
|
|
width,
|
|
height,
|
|
frames: if frames > 1 { Some(frames) } else { None },
|
|
})
|
|
}
|
|
|
|
pub(crate) async fn input_type_bytes(input: Bytes) -> Result<(Details, ValidInputType), Error> {
|
|
let details = details_bytes(input, None).await?;
|
|
let input_type = details.validate_input()?;
|
|
Ok((details, input_type))
|
|
}
|
|
|
|
fn process_image(args: Vec<String>, format: ImageFormat) -> std::io::Result<Process> {
|
|
let command = "magick";
|
|
let convert_args = ["convert", "-"];
|
|
let last_arg = format!("{}:-", format.as_magick_format());
|
|
|
|
Process::spawn(
|
|
Command::new(command)
|
|
.args(convert_args)
|
|
.args(args)
|
|
.arg(last_arg),
|
|
)
|
|
}
|
|
|
|
pub(crate) fn process_image_store_read<S: Store + 'static>(
|
|
store: S,
|
|
identifier: S::Identifier,
|
|
args: Vec<String>,
|
|
format: ImageFormat,
|
|
) -> std::io::Result<impl AsyncRead + Unpin> {
|
|
Ok(process_image(args, format)?.store_read(store, identifier))
|
|
}
|
|
|
|
pub(crate) fn process_image_async_read<A: AsyncRead + Unpin + 'static>(
|
|
async_read: A,
|
|
args: Vec<String>,
|
|
format: ImageFormat,
|
|
) -> std::io::Result<impl AsyncRead + Unpin> {
|
|
Ok(process_image(args, format)?.pipe_async_read(async_read))
|
|
}
|
|
|
|
impl Details {
|
|
#[tracing::instrument(level = "debug", name = "Validating input type")]
|
|
pub(crate) fn validate_input(&self) -> Result<ValidInputType, Error> {
|
|
if self.width > crate::CONFIG.media.max_width
|
|
|| self.height > crate::CONFIG.media.max_height
|
|
|| self.width * self.height > crate::CONFIG.media.max_area
|
|
{
|
|
return Err(UploadError::Dimensions.into());
|
|
}
|
|
|
|
if let Some(frames) = self.frames {
|
|
if frames > crate::CONFIG.media.max_frame_count {
|
|
return Err(UploadError::Frames.into());
|
|
}
|
|
}
|
|
|
|
let input_type = match (self.mime_type.type_(), self.mime_type.subtype()) {
|
|
(mime::VIDEO, mime::MP4 | mime::MPEG) => ValidInputType::Mp4,
|
|
(mime::VIDEO, subtype) if subtype.as_str() == "webm" => ValidInputType::Webm,
|
|
(mime::IMAGE, mime::GIF) => ValidInputType::Gif,
|
|
(mime::IMAGE, subtype) if subtype.as_str() == "avif" => ValidInputType::Avif,
|
|
(mime::IMAGE, mime::JPEG) => ValidInputType::Jpeg,
|
|
(mime::IMAGE, subtype) if subtype.as_str() == "jxl" => ValidInputType::Jxl,
|
|
(mime::IMAGE, mime::PNG) => ValidInputType::Png,
|
|
(mime::IMAGE, subtype) if subtype.as_str() == "webp" => ValidInputType::Webp,
|
|
_ => return Err(UploadError::UnsupportedFormat.into()),
|
|
};
|
|
|
|
Ok(input_type)
|
|
}
|
|
}
|