1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
use std::{error::Error, time::Instant};
use tide::{Middleware, Next, Request};
use tracing::{error, error_span, info, info_span, warn, warn_span};
use tracing_futures::Instrument;
#[derive(Debug, Default, Clone)]
pub struct TraceMiddleware;
impl TraceMiddleware {
#[must_use]
pub const fn new() -> Self {
Self
}
async fn log<'a, State: Clone + Send + Sync + 'static>(
&'a self,
ctx: Request<State>,
next: Next<'a, State>,
) -> tide::Result {
let path = ctx.url().path().to_owned();
let method = ctx.method().to_string();
Ok(async {
info!(method = method.as_str());
let start = Instant::now();
let response = next.run(ctx).await;
let status = response.status();
async {
info!(status = status as u16);
info!(duration = &format!("{:?}", start.elapsed()).as_str());
if status.is_server_error() {
async {
if let Some(error) = response.error() {
let error: &(dyn Error) = error.as_ref();
error!(error)
}
error!("Response sent")
}
.instrument(error_span!("Internal error"))
.await
} else if status.is_client_error() {
async { warn!("Response sent") }
.instrument(warn_span!("Client error"))
.await
} else {
info!("Response sent")
}
}
.instrument(info_span!("Response"))
.await;
response
}
.instrument(info_span!("Request", path = path.as_str()))
.await)
}
}
#[async_trait::async_trait]
impl<State: Clone + Send + Sync + 'static> Middleware<State> for TraceMiddleware {
async fn handle(&self, req: Request<State>, next: Next<'_, State>) -> tide::Result {
self.log(req, next).await
}
}