mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-17 00:00:16 +02:00
* begin threading the state through * Pass state to extractors * make state extractor work * make sure nesting with different states work * impl Service for MethodRouter<()> * Fix some of axum-macro's tests * Implement more traits for `State` * Update examples to use `State` * consistent naming of request body param * swap type params * Default the state param to () * fix docs references * Docs and handler state refactoring * docs clean ups * more consistent naming * when does MethodRouter implement Service? * add missing docs * use `Router`'s default state type param * changelog * don't use default type param for FromRequest and RequestParts probably safer for library authors so you don't accidentally forget * fix examples * minor docs tweaks * clarify how to convert handlers into services * group methods in one impl block * make sure merged `MethodRouter`s can access state * fix docs link * test merge with same state type * Document how to access state from middleware * Port cookie extractors to use state to extract keys (#1250) * Updates ECOSYSTEM with a new sample project (#1252) * Avoid unhelpful compiler suggestion (#1251) * fix docs typo * document how library authors should access state * Add `RequestParts::with_state` * fix example * apply suggestions from review * add relevant changes to axum-extra and axum-core changelogs * Add `route_service_with_tsr` * fix trybuild expectations * make sure `SpaRouter` works with routers that have state * Change order of type params on FromRequest and RequestParts * reverse order of `RequestParts::with_state` args to match type params * Add `FromRef` trait (#1268) * Add `FromRef` trait * Remove unnecessary type params * format * fix docs link * format examples * Avoid unnecessary `MethodRouter` * apply suggestions from review Co-authored-by: Dani Pardo <[email protected]> Co-authored-by: Jonas Platte <[email protected]>
101 lines
2.7 KiB
Rust
101 lines
2.7 KiB
Rust
//! Run with
|
|
//!
|
|
//! ```not_rust
|
|
//! cd examples && cargo run -p example-validator
|
|
//!
|
|
//! curl '127.0.0.1:3000?name='
|
|
//! -> Input validation error: [name: Can not be empty]
|
|
//!
|
|
//! curl '127.0.0.1:3000?name=LT'
|
|
//! -> <h1>Hello, LT!</h1>
|
|
//! ```
|
|
|
|
use async_trait::async_trait;
|
|
use axum::{
|
|
extract::{Form, FromRequest, RequestParts},
|
|
http::StatusCode,
|
|
response::{Html, IntoResponse, Response},
|
|
routing::get,
|
|
BoxError, Router,
|
|
};
|
|
use serde::{de::DeserializeOwned, Deserialize};
|
|
use std::net::SocketAddr;
|
|
use thiserror::Error;
|
|
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};
|
|
use validator::Validate;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
tracing_subscriber::registry()
|
|
.with(tracing_subscriber::EnvFilter::new(
|
|
std::env::var("RUST_LOG").unwrap_or_else(|_| "example_validator=debug".into()),
|
|
))
|
|
.with(tracing_subscriber::fmt::layer())
|
|
.init();
|
|
|
|
// build our application with a route
|
|
let app = Router::new().route("/", get(handler));
|
|
|
|
// run it
|
|
let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
|
|
tracing::debug!("listening on {}", addr);
|
|
|
|
axum::Server::bind(&addr)
|
|
.serve(app.into_make_service())
|
|
.await
|
|
.unwrap();
|
|
}
|
|
|
|
#[derive(Debug, Deserialize, Validate)]
|
|
pub struct NameInput {
|
|
#[validate(length(min = 1, message = "Can not be empty"))]
|
|
pub name: String,
|
|
}
|
|
|
|
async fn handler(ValidatedForm(input): ValidatedForm<NameInput>) -> Html<String> {
|
|
Html(format!("<h1>Hello, {}!</h1>", input.name))
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, Default)]
|
|
pub struct ValidatedForm<T>(pub T);
|
|
|
|
#[async_trait]
|
|
impl<T, S, B> FromRequest<S, B> for ValidatedForm<T>
|
|
where
|
|
T: DeserializeOwned + Validate,
|
|
S: Send,
|
|
B: http_body::Body + Send,
|
|
B::Data: Send,
|
|
B::Error: Into<BoxError>,
|
|
{
|
|
type Rejection = ServerError;
|
|
|
|
async fn from_request(req: &mut RequestParts<S, B>) -> Result<Self, Self::Rejection> {
|
|
let Form(value) = Form::<T>::from_request(req).await?;
|
|
value.validate()?;
|
|
Ok(ValidatedForm(value))
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Error)]
|
|
pub enum ServerError {
|
|
#[error(transparent)]
|
|
ValidationError(#[from] validator::ValidationErrors),
|
|
|
|
#[error(transparent)]
|
|
AxumFormRejection(#[from] axum::extract::rejection::FormRejection),
|
|
}
|
|
|
|
impl IntoResponse for ServerError {
|
|
fn into_response(self) -> Response {
|
|
match self {
|
|
ServerError::ValidationError(_) => {
|
|
let message = format!("Input validation error: [{}]", self).replace('\n', ", ");
|
|
(StatusCode::BAD_REQUEST, message)
|
|
}
|
|
ServerError::AxumFormRejection(_) => (StatusCode::BAD_REQUEST, self.to_string()),
|
|
}
|
|
.into_response()
|
|
}
|
|
}
|