actix-form-data/README.md

125 lines
3.4 KiB
Markdown
Raw Permalink Normal View History

# 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.
2019-07-30 22:14:57 +00:00
- [Read the documentation on docs.rs](https://docs.rs/actix-form-data)
- [Find the crate on crates.io](https://crates.io/crates/actix-form-data)
- [Join the discussion on Matrix](https://matrix.to/#/!YIoRgrEUMubvazlYIH:asonix.dog?via=asonix.dog)
2018-04-30 20:44:17 +00:00
### Usage
Add it to your dependencies.
```toml
# Cargo.toml
[dependencies]
2022-03-08 17:51:12 +00:00
actix-web = "4.0.0"
actix-form-data = "0.6.0"
```
Require it in your project.
```rust
// 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.
```rust
2021-09-11 22:35:48 +00:00
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.
2020-06-06 02:40:44 +00:00
Then, pass it as a middleware.
```rust
2020-06-06 02:40:44 +00:00
App::new()
.wrap(form.clone())
.service(resource("/upload").route(post().to(upload)))
```
In your handler, get the value
2019-05-09 23:43:23 +00:00
2020-06-06 02:40:44 +00:00
```rust
2022-03-08 18:07:33 +00:00
async fn upload(uploaded_content: Value<()>) -> HttpResponse {
2019-05-09 23:43:23 +00:00
...
}
```
2020-06-06 02:40:44 +00:00
And interact with it
```rust
let field_value = match value {
2019-05-09 23:43:23 +00:00
Value::Map(mut hashmap) => {
2020-06-06 02:40:44 +00:00
hashmap.remove("field-name")?;
2019-05-09 23:43:23 +00:00
}
_ => return None,
};
2020-06-06 02:40:44 +00:00
...
```
#### Example
```rust
/// examples/simple.rs
2020-06-06 02:40:44 +00:00
use actix_form_data::{Error, Field, Form, Value};
2019-05-09 23:43:23 +00:00
use actix_web::{
2020-06-06 02:40:44 +00:00
web::{post, resource},
2019-05-09 23:43:23 +00:00
App, HttpResponse, HttpServer,
};
2022-03-08 18:07:33 +00:00
use futures_util::stream::StreamExt;
2021-09-11 22:35:48 +00:00
async fn upload(uploaded_content: Value<()>) -> HttpResponse {
2020-06-06 02:40:44 +00:00
println!("Uploaded Content: {:#?}", uploaded_content);
HttpResponse::Created().finish()
}
2020-06-06 02:40:44 +00:00
#[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(),
)
2020-06-06 02:40:44 +00:00
.field(
"files",
Field::array(Field::file(|_, _, mut stream| async move {
while let Some(res) = stream.next().await {
res?;
}
Ok(()) as Result<(), Error>
})),
);
println!("{:?}", form);
2019-05-09 23:43:23 +00:00
HttpServer::new(move || {
App::new()
2020-06-06 02:40:44 +00:00
.wrap(form.clone())
2019-05-09 23:43:23 +00:00
.service(resource("/upload").route(post().to(upload)))
})
.bind("127.0.0.1:8080")?
2020-06-06 02:40:44 +00:00
.run()
.await?;
2019-05-09 23:43:23 +00:00
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
2021-02-10 21:19:32 +00:00
Copyright © 2021 Riley Trautman
2018-04-30 20:51:42 +00:00
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.
2018-04-30 20:51:42 +00:00
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.
2018-04-30 20:51:42 +00:00
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/](http://www.gnu.org/licenses/).