mirror of
https://github.com/tokio-rs/axum.git
synced 2026-08-14 00:00:15 +02:00
78 lines
2.1 KiB
Rust
78 lines
2.1 KiB
Rust
//! Run with
|
|
//!
|
|
//! ```not_rust
|
|
//! cargo run -p example-print-request-response
|
|
//! ```
|
|
|
|
use axum::{
|
|
body::{Body, Bytes},
|
|
http::{Request, StatusCode},
|
|
middleware::{self, Next},
|
|
response::{IntoResponse, Response},
|
|
routing::post,
|
|
Router,
|
|
};
|
|
use std::net::SocketAddr;
|
|
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
tracing_subscriber::registry()
|
|
.with(
|
|
tracing_subscriber::EnvFilter::try_from_default_env()
|
|
.unwrap_or_else(|_| "example_print_request_response=debug,tower_http=debug".into()),
|
|
)
|
|
.with(tracing_subscriber::fmt::layer())
|
|
.init();
|
|
|
|
let app = Router::new()
|
|
.route("/", post(|| async move { "Hello from `POST /`" }))
|
|
.layer(middleware::from_fn(print_request_response));
|
|
|
|
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 print_request_response(
|
|
req: Request<Body>,
|
|
next: Next<Body>,
|
|
) -> Result<impl IntoResponse, (StatusCode, String)> {
|
|
let (parts, body) = req.into_parts();
|
|
let bytes = buffer_and_print("request", body).await?;
|
|
let req = Request::from_parts(parts, Body::from(bytes));
|
|
|
|
let res = next.run(req).await;
|
|
|
|
let (parts, body) = res.into_parts();
|
|
let bytes = buffer_and_print("response", body).await?;
|
|
let res = Response::from_parts(parts, Body::from(bytes));
|
|
|
|
Ok(res)
|
|
}
|
|
|
|
async fn buffer_and_print<B>(direction: &str, body: B) -> Result<Bytes, (StatusCode, String)>
|
|
where
|
|
B: axum::body::HttpBody<Data = Bytes>,
|
|
B::Error: std::fmt::Display,
|
|
{
|
|
let bytes = match hyper::body::to_bytes(body).await {
|
|
Ok(bytes) => bytes,
|
|
Err(err) => {
|
|
return Err((
|
|
StatusCode::BAD_REQUEST,
|
|
format!("failed to read {} body: {}", direction, err),
|
|
));
|
|
}
|
|
};
|
|
|
|
if let Ok(body) = std::str::from_utf8(&bytes) {
|
|
tracing::debug!("{} body = {:?}", direction, body);
|
|
}
|
|
|
|
Ok(bytes)
|
|
}
|