Skip to content

Commit

Permalink
Document running extractors from middleware (#1140)
Browse files Browse the repository at this point in the history
Fixes #1134
  • Loading branch information
davidpdrsn committed Jul 2, 2022
1 parent 8c31bee commit eff3b71
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions axum/src/docs/extract.md
Expand Up @@ -12,6 +12,7 @@ Types and traits for extracting data from requests.
- [Defining custom extractors](#defining-custom-extractors)
- [Accessing other extractors in `FromRequest` implementations](#accessing-other-extractors-in-fromrequest-implementations)
- [Request body extractors](#request-body-extractors)
- [Running extractors from middleware](#running-extractors-from-middleware)

# Intro

Expand Down Expand Up @@ -579,6 +580,62 @@ let app = Router::new()
# };
```

# Running extractors from middleware

Extractors can also be run from middleware by making a [`RequestParts`] and
running your extractor:

```rust
use axum::{
Router,
middleware::{self, Next},
extract::{RequestParts, TypedHeader},
http::{Request, StatusCode},
response::Response,
headers::authorization::{Authorization, Bearer},
};

async fn auth_middleware<B>(
request: Request<B>,
next: Next<B>,
) -> Result<Response, StatusCode>
where
B: Send,
{
// running extractors requires a `RequestParts`
let mut request_parts = RequestParts::new(request);

// `TypedHeader<Authorization<Bearer>>` extracts the auth token but
// `RequestParts::extract` works with anything that implements `FromRequest`
let auth = request_parts.extract::<TypedHeader<Authorization<Bearer>>>()
.await
.map_err(|_| StatusCode::UNAUTHORIZED)?;

if !token_is_valid(auth.token()) {
return Err(StatusCode::UNAUTHORIZED);
}

// get the request back so we can run `next`
//
// `try_into_request` will fail if you have extracted the request body. We
// know that `TypedHeader` never does that.
//
// see the `consume-body-in-extractor-or-middleware` example if you need to
// extract the body
let request = request_parts.try_into_request().expect("body extracted");

Ok(next.run(request).await)
}

fn token_is_valid(token: &str) -> bool {
// ...
# false
}

let app = Router::new().layer(middleware::from_fn(auth_middleware));
# let _: Router = app;
```

[`body::Body`]: crate::body::Body
[customize-extractor-error]: https://github.com/tokio-rs/axum/blob/main/examples/customize-extractor-error/src/main.rs
[`HeaderMap`]: https://docs.rs/http/latest/http/header/struct.HeaderMap.html
Expand Down

0 comments on commit eff3b71

Please sign in to comment.