2021-02-10 12:10:03 +00:00
|
|
|
//! Multipart form support for Actix Web.
|
2024-05-18 21:02:00 +02:00
|
|
|
//! # Examples
|
|
|
|
//! ```no_run
|
|
|
|
//! use actix_web::{post, App, HttpServer, Responder};
|
|
|
|
//!
|
|
|
|
//! use actix_multipart::form::{json::Json as MPJson, tempfile::TempFile, MultipartForm};
|
|
|
|
//! use serde::Deserialize;
|
|
|
|
//!
|
|
|
|
//! #[derive(Debug, Deserialize)]
|
|
|
|
//! struct Metadata {
|
|
|
|
//! name: String,
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! #[derive(Debug, MultipartForm)]
|
|
|
|
//! struct UploadForm {
|
|
|
|
//! #[multipart(limit = "100MB")]
|
|
|
|
//! file: TempFile,
|
|
|
|
//! json: MPJson<Metadata>,
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! #[post("/videos")]
|
|
|
|
//! pub async fn post_video(MultipartForm(form): MultipartForm<UploadForm>) -> impl Responder {
|
|
|
|
//! format!(
|
|
|
|
//! "Uploaded file {}, with size: {}",
|
|
|
|
//! form.json.name, form.file.size
|
|
|
|
//! )
|
|
|
|
//! }
|
|
|
|
//!
|
|
|
|
//! #[actix_web::main]
|
|
|
|
//! async fn main() -> std::io::Result<()> {
|
|
|
|
//! HttpServer::new(move || App::new().service(post_video))
|
|
|
|
//! .bind(("127.0.0.1", 8080))?
|
|
|
|
//! .run()
|
|
|
|
//! .await
|
|
|
|
//! }
|
|
|
|
//! ```
|
2020-09-10 12:54:27 +01:00
|
|
|
|
2021-12-08 06:09:56 +00:00
|
|
|
#![deny(rust_2018_idioms, nonstandard_style)]
|
|
|
|
#![warn(future_incompatible)]
|
2023-12-16 10:26:32 +00:00
|
|
|
#![allow(clippy::borrow_interior_mutable_const)]
|
2023-02-26 21:55:25 +00:00
|
|
|
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
|
|
|
|
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
|
|
|
|
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
2023-02-26 03:26:06 +00:00
|
|
|
|
|
|
|
// This allows us to use the actix_multipart_derive within this crate's tests
|
|
|
|
#[cfg(test)]
|
|
|
|
extern crate self as actix_multipart;
|
2019-07-17 15:08:30 +06:00
|
|
|
|
2019-04-03 12:28:58 -07:00
|
|
|
mod error;
|
|
|
|
mod extractor;
|
2023-02-26 03:26:06 +00:00
|
|
|
pub mod form;
|
2024-02-14 22:22:07 +00:00
|
|
|
mod server;
|
|
|
|
pub mod test;
|
2023-02-26 03:26:06 +00:00
|
|
|
|
2023-07-17 02:38:12 +01:00
|
|
|
pub use self::{
|
|
|
|
error::MultipartError,
|
|
|
|
server::{Field, Multipart},
|
2024-02-14 22:22:07 +00:00
|
|
|
test::{
|
|
|
|
create_form_data_payload_and_headers, create_form_data_payload_and_headers_with_boundary,
|
|
|
|
},
|
2023-07-17 02:38:12 +01:00
|
|
|
};
|