mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-26 17:17:22 +01:00
423308de3c
* 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 <dani.pardo@inmensys.com> Co-authored-by: Jonas Platte <jplatte+git@posteo.de>
58 lines
1.5 KiB
Rust
58 lines
1.5 KiB
Rust
use axum::{
|
|
body::Body,
|
|
extract::{
|
|
rejection::{ExtensionRejection, TypedHeaderRejection},
|
|
Extension, FromRequest, TypedHeader,
|
|
},
|
|
headers::{self, UserAgent},
|
|
};
|
|
use axum_macros::FromRequest;
|
|
use std::convert::Infallible;
|
|
|
|
#[derive(FromRequest)]
|
|
struct Extractor {
|
|
#[from_request(via(Extension))]
|
|
state: State,
|
|
#[from_request(via(TypedHeader))]
|
|
user_agent: UserAgent,
|
|
#[from_request(via(TypedHeader))]
|
|
content_type: headers::ContentType,
|
|
#[from_request(via(TypedHeader))]
|
|
etag: Option<headers::ETag>,
|
|
#[from_request(via(TypedHeader))]
|
|
host: Result<headers::Host, TypedHeaderRejection>,
|
|
}
|
|
|
|
fn assert_from_request()
|
|
where
|
|
Extractor: FromRequest<(), Body, Rejection = ExtractorRejection>,
|
|
{
|
|
}
|
|
|
|
fn assert_rejection(rejection: ExtractorRejection)
|
|
where
|
|
ExtractorRejection: std::fmt::Debug + std::fmt::Display + std::error::Error,
|
|
{
|
|
match rejection {
|
|
ExtractorRejection::State(inner) => {
|
|
let _: ExtensionRejection = inner;
|
|
}
|
|
ExtractorRejection::UserAgent(inner) => {
|
|
let _: TypedHeaderRejection = inner;
|
|
}
|
|
ExtractorRejection::ContentType(inner) => {
|
|
let _: TypedHeaderRejection = inner;
|
|
}
|
|
ExtractorRejection::Etag(inner) => {
|
|
let _: Infallible = inner;
|
|
}
|
|
ExtractorRejection::Host(inner) => {
|
|
let _: Infallible = inner;
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
struct State;
|
|
|
|
fn main() {}
|