use crate::{ error::Error, ffmpeg::InputFormat, magick::{video_mp4, video_webm, ValidInputType}, serde_str::Serde, store::Store, }; use actix_web::web; #[derive(Copy, Clone, Debug, serde::Deserialize, serde::Serialize)] #[serde(untagged)] enum MaybeHumanDate { HumanDate(#[serde(with = "time::serde::rfc3339")] time::OffsetDateTime), OldDate(#[serde(serialize_with = "time::serde::rfc3339::serialize")] time::OffsetDateTime), } #[derive(Clone, Debug, serde::Deserialize, serde::Serialize)] pub(crate) struct Details { width: usize, height: usize, frames: Option, content_type: Serde, created_at: MaybeHumanDate, } impl Details { pub(crate) fn is_motion(&self) -> bool { self.content_type.type_() == "video" || self.content_type.type_() == "image" && self.content_type.subtype() == "gif" } #[tracing::instrument("Details from bytes", skip(input))] pub(crate) async fn from_bytes(input: web::Bytes, hint: ValidInputType) -> Result { let details = if hint.is_video() { crate::ffmpeg::details_bytes(input.clone()).await? } else { None }; let details = if let Some(details) = details { details } else { crate::magick::details_bytes(input, Some(hint)).await? }; Ok(Details::now( details.width, details.height, details.mime_type, details.frames, )) } #[tracing::instrument("Details from store")] pub(crate) async fn from_store( store: S, identifier: S::Identifier, expected_format: Option, ) -> Result { let details = if expected_format.map(|t| t.is_video()).unwrap_or(true) { crate::ffmpeg::details_store(&store, &identifier).await? } else { None }; let details = if let Some(details) = details { details } else { crate::magick::details_store(store, identifier, expected_format).await? }; Ok(Details::now( details.width, details.height, details.mime_type, details.frames, )) } pub(crate) fn now( width: usize, height: usize, content_type: mime::Mime, frames: Option, ) -> Self { Details { width, height, frames, content_type: Serde::new(content_type), created_at: MaybeHumanDate::HumanDate(time::OffsetDateTime::now_utc()), } } pub(crate) fn content_type(&self) -> mime::Mime { (*self.content_type).clone() } pub(crate) fn system_time(&self) -> std::time::SystemTime { self.created_at.into() } pub(crate) fn to_input_format(&self) -> Option { if *self.content_type == mime::IMAGE_GIF { return Some(InputFormat::Gif); } if *self.content_type == video_mp4() { return Some(InputFormat::Mp4); } if *self.content_type == video_webm() { return Some(InputFormat::Webm); } None } } impl From for std::time::SystemTime { fn from(this: MaybeHumanDate) -> Self { match this { MaybeHumanDate::OldDate(old) => old.into(), MaybeHumanDate::HumanDate(human) => human.into(), } } }