35 releases

0.7.0-beta.7 Mar 28, 2024
0.7.0-beta.6 Dec 22, 2023
0.7.0-beta.4 Jul 18, 2023
0.7.0-beta.0 Sep 24, 2022
0.3.0 Jul 25, 2018

#82 in HTTP server

Download history 272/week @ 2023-12-24 213/week @ 2023-12-31 395/week @ 2024-01-07 322/week @ 2024-01-14 227/week @ 2024-01-21 246/week @ 2024-01-28 451/week @ 2024-02-04 246/week @ 2024-02-11 301/week @ 2024-02-18 369/week @ 2024-02-25 294/week @ 2024-03-03 264/week @ 2024-03-10 215/week @ 2024-03-17 243/week @ 2024-03-24 360/week @ 2024-03-31 151/week @ 2024-04-07

986 downloads per month
Used in 3 crates (2 directly)

GPL-3.0 license

345KB
888 lines

Actix Form Data

A library for retrieving form data from Actix Web's multipart streams. It can stream uploaded files onto the filesystem (its main purpose), but it can also parse associated form data.

Usage

Add it to your dependencies.

# Cargo.toml

[dependencies]
actix-web = "4.0.0"
actix-form-data = "0.6.0"

Require it in your project.

// src/lib.rs or src/main.rs

use form_data::{Field, Form, Value};

Overview

First, you'd create a form structure you want to parse from the multipart stream.

let form = Form::<()>::new().field("field-name", Field::text());

This creates a form with one required field named "field-name" that will be parsed as text.

Then, pass it as a middleware.

App::new()
    .wrap(form.clone())
    .service(resource("/upload").route(post().to(upload)))

In your handler, get the value

async fn upload(uploaded_content: Value<()>) -> HttpResponse {
    ...
}

And interact with it

let field_value = match value {
    Value::Map(mut hashmap) => {
        hashmap.remove("field-name")?;
    }
    _ => return None,
};

...

Example

/// examples/simple.rs

use actix_form_data::{Error, Field, Form, Value};
use actix_web::{
    web::{post, resource},
    App, HttpResponse, HttpServer,
};
use futures_util::stream::StreamExt;

async fn upload(uploaded_content: Value<()>) -> HttpResponse {
    println!("Uploaded Content: {:#?}", uploaded_content);
    HttpResponse::Created().finish()
}

#[actix_rt::main]
async fn main() -> Result<(), anyhow::Error> {
    let form = Form::new()
        .field("Hey", Field::text())
        .field(
            "Hi",
            Field::map()
                .field("One", Field::int())
                .field("Two", Field::float())
                .finalize(),
        )
        .field(
            "files",
            Field::array(Field::file(|_, _, mut stream| async move {
                while let Some(res) = stream.next().await {
                    res?;
                }
                Ok(()) as Result<(), Error>
            })),
        );

    println!("{:?}", form);

    HttpServer::new(move || {
        App::new()
            .wrap(form.clone())
            .service(resource("/upload").route(post().to(upload)))
    })
    .bind("127.0.0.1:8080")?
    .run()
    .await?;

    Ok(())
}

Contributing

Feel free to open issues for anything you find an issue with. Please note that any contributed code will be licensed under the GPLv3.

License

Copyright © 2021 Riley Trautman

Actix Form Data is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Actix Form Data is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. This file is part of Actix Form Data.

You should have received a copy of the GNU General Public License along with Actix Form Data. If not, see http://www.gnu.org/licenses/.

Dependencies

~17–31MB
~532K SLoC