mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-13 00:00:35 +02:00
* Add extension and state benchmarks * wip * Arc the state everywhere * don't require `S: Clone` * fix example
75 lines
1.9 KiB
Rust
75 lines
1.9 KiB
Rust
//! Run with
|
|
//!
|
|
//! ```not_rust
|
|
//! cd examples && cargo run -p example-versioning
|
|
//! ```
|
|
|
|
use axum::{
|
|
async_trait,
|
|
extract::{FromRequest, Path, RequestParts},
|
|
http::StatusCode,
|
|
response::{IntoResponse, Response},
|
|
routing::get,
|
|
Router,
|
|
};
|
|
use std::{collections::HashMap, net::SocketAddr};
|
|
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
tracing_subscriber::registry()
|
|
.with(tracing_subscriber::EnvFilter::new(
|
|
std::env::var("RUST_LOG").unwrap_or_else(|_| "example_versioning=debug".into()),
|
|
))
|
|
.with(tracing_subscriber::fmt::layer())
|
|
.init();
|
|
|
|
// build our application with some routes
|
|
let app = Router::new().route("/:version/foo", 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();
|
|
}
|
|
|
|
async fn handler(version: Version) {
|
|
println!("received request with version {:?}", version);
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
enum Version {
|
|
V1,
|
|
V2,
|
|
V3,
|
|
}
|
|
|
|
#[async_trait]
|
|
impl<S, B> FromRequest<S, B> for Version
|
|
where
|
|
B: Send,
|
|
S: Send + Sync,
|
|
{
|
|
type Rejection = Response;
|
|
|
|
async fn from_request(req: &mut RequestParts<S, B>) -> Result<Self, Self::Rejection> {
|
|
let params = Path::<HashMap<String, String>>::from_request(req)
|
|
.await
|
|
.map_err(IntoResponse::into_response)?;
|
|
|
|
let version = params
|
|
.get("version")
|
|
.ok_or_else(|| (StatusCode::NOT_FOUND, "version param missing").into_response())?;
|
|
|
|
match version.as_str() {
|
|
"v1" => Ok(Version::V1),
|
|
"v2" => Ok(Version::V2),
|
|
"v3" => Ok(Version::V3),
|
|
_ => Err((StatusCode::NOT_FOUND, "unknown version").into_response()),
|
|
}
|
|
}
|
|
}
|