-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(multipart): optional content-disposition for non-form-data reques…
…ts (#3416)
- Loading branch information
Showing
16 changed files
with
473 additions
and
242 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
use actix_multipart::form::{json::Json as MpJson, tempfile::TempFile, MultipartForm}; | ||
use actix_web::{middleware::Logger, post, App, HttpServer, Responder}; | ||
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")] | ||
async fn post_video(MultipartForm(form): MultipartForm<UploadForm>) -> impl Responder { | ||
format!( | ||
"Uploaded file {}, with size: {}\ntemporary file ({}) was deleted\n", | ||
form.json.name, | ||
form.file.size, | ||
form.file.file.path().display(), | ||
) | ||
} | ||
|
||
#[actix_web::main] | ||
async fn main() -> std::io::Result<()> { | ||
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info")); | ||
|
||
HttpServer::new(move || App::new().service(post_video).wrap(Logger::default())) | ||
.workers(2) | ||
.bind(("127.0.0.1", 8080))? | ||
.run() | ||
.await | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.