17 releases (stable)

5.0.1 Aug 25, 2022
4.0.0 Jul 18, 2022
3.0.0 Mar 15, 2022
2.2.0 Oct 4, 2021
0.1.2 Feb 28, 2020

#152 in Encoding

Download history 3438/week @ 2023-08-11 2800/week @ 2023-08-18 3191/week @ 2023-08-25 2596/week @ 2023-09-01 2649/week @ 2023-09-08 2653/week @ 2023-09-15 2796/week @ 2023-09-22 2875/week @ 2023-09-29 2818/week @ 2023-10-06 4221/week @ 2023-10-13 3829/week @ 2023-10-20 4606/week @ 2023-10-27 4133/week @ 2023-11-03 3664/week @ 2023-11-10 3780/week @ 2023-11-17 2656/week @ 2023-11-24

15,171 downloads per month
Used in 5 crates

MIT license

42KB
577 lines

actix-web-validator Latest Version Documentation Coverage Build Status

This crate is a Rust library for providing validation mechanism to actix-web with Validator crate

Installation

This crate works with Cargo and can be found on crates.io with a Cargo.toml like:

[dependencies]
actix-web-validator = "5.0.1"
validator = { version = "0.16", features = ["derive"] }
serde = { version = "1", features = ["derive"] }

Supported extractors:

  • actix_web::web::Json
  • actix_web::web::Query
  • actix_web::web::Path
  • actix_web::web::Form
  • serde_qs::actix::QsQuery

Supported actix_web versions:

  • For actix-web-validator 0.* supported version of actix-web is 1.*
  • For actix-web-validator 1.* supported version of actix-web is 2.*
  • For actix-web-validator 2.* supported version of actix-web is 3.*
  • For actix-web-validator 3+ supported version of actix-web is 4.*

Example:

use actix_web::{web, App};
use serde::Deserialize;
use actix_web_validator::Query;
use validator::Validate;

#[derive(Debug, Deserialize)]
pub enum ResponseType {
    Token,
    Code
}

#[derive(Deserialize, Validate)]
pub struct AuthRequest {
    #[validate(range(min = 1000, max = 9999))]
    id: u64,
    response_type: ResponseType,
}

// Use `Query` extractor for query information (and destructure it within the signature).
// This handler gets called only if the request's query string contains a `id` and
// `response_type` fields.
// The correct request for this handler would be `/index.html?id=1234&response_type=Code"`.
async fn index(info: Query<AuthRequest>) -> String {
    format!("Authorization request for client with id={} and type={:?}!", info.id, info.response_type)
}

fn main() {
    let app = App::new().service(
        web::resource("/index.html").route(web::get().to(index))); // <- use `Query` extractor
}

License

actix-web-validator is licensed under MIT license (LICENSE or http://opensource.org/licenses/MIT)

Dependencies

~16–29MB
~516K SLoC