awmp

Docs Crates.io

A convenience library for working with multipart/form-data in actix-web 1.x.

This library uses actix-multipart internally, and is not a replacement for actix-multipart. It saves multipart file data to tempfiles and collects text data, handling all blocking I/O operations.

Provides some configuration options in PartsConfig:

Usage

```rust use actix_web::FromRequest;

pub fn upload(mut parts: awmp::Parts) -> Result { let qs = parts.texts.toquerystring();

let file_parts = parts
    .files
    .remove("file")
    .pop()
    .and_then(|f| f.persist("/tmp").ok())
    .map(|f| format!("File uploaded to: {}", f.display()))
    .unwrap_or_default();

let body = [format!("Text parts: {}", &qs), file_parts].join(", ");

Ok(actix_web::HttpResponse::Ok().body(body))

}

fn main() -> Result<(), Box<::std::error::Error>> { actixweb::HttpServer::new(move || { actixweb::App::new() .data(awmp::Parts::configure(|cfg| cfg.withfilelimit(1000000))) .route("/", actix_web::web::post().to(upload)) }) .bind("0.0.0.0:3000")? .run()?;

Ok(())

} ```

Current version: 0.3.0

License: MIT