//! Reads a field into memory. use actix_web::{web::BytesMut, HttpRequest}; use futures_core::future::LocalBoxFuture; use futures_util::TryStreamExt as _; use mime::Mime; use crate::{ form::{FieldReader, Limits}, Field, MultipartError, }; /// Read the field into memory. #[derive(Debug)] pub struct Bytes { /// The data. pub data: actix_web::web::Bytes, /// The value of the `Content-Type` header. pub content_type: Option, /// The `filename` value in the `Content-Disposition` header. pub file_name: Option, } impl<'t> FieldReader<'t> for Bytes { type Future = LocalBoxFuture<'t, Result>; fn read_field(_: &'t HttpRequest, mut field: Field, limits: &'t mut Limits) -> Self::Future { Box::pin(async move { let mut buf = BytesMut::with_capacity(131_072); while let Some(chunk) = field.try_next().await? { limits.try_consume_limits(chunk.len(), true)?; buf.extend(chunk); } Ok(Bytes { data: buf.freeze(), content_type: field.content_type().map(ToOwned::to_owned), file_name: field .content_disposition() .expect("multipart form fields should have a content-disposition header") .get_filename() .map(ToOwned::to_owned), }) }) } }