pict-rs/src/validate/exiftool.rs

14 lines
400 B
Rust
Raw Normal View History

use actix_web::web::Bytes;
use crate::{exiftool::ExifError, process::Process, read::BoxRead};
#[tracing::instrument(level = "trace", skip(input))]
2023-08-05 17:41:06 +00:00
pub(crate) fn clear_metadata_bytes_read(
input: Bytes,
timeout: u64,
) -> Result<BoxRead<'static>, ExifError> {
2023-08-05 17:41:06 +00:00
let process = Process::run("exiftool", &["-all=", "-", "-out", "-"], timeout)?;
Ok(Box::pin(process.bytes_read(input)))
}