use crate::Body;
use http::{Request, Response};
use std::convert::identity;
pub fn before(
f: impl Fn(Request<Body>) -> Request<Body> + Send + Sync + 'static,
) -> impl Middleware {
create(f, identity)
}
pub fn after(
f: impl Fn(Response<Body>) -> Response<Body> + Send + Sync + 'static,
) -> impl Middleware {
create(identity, f)
}
pub fn create(
request: impl Fn(Request<Body>) -> Request<Body> + Send + Sync + 'static,
response: impl Fn(Response<Body>) -> Response<Body> + Send + Sync + 'static,
) -> impl Middleware {
struct Impl<F, G>(F, G);
impl<F, G> Middleware for Impl<F, G>
where
F: Fn(Request<Body>) -> Request<Body> + Send + Sync + 'static,
G: Fn(Response<Body>) -> Response<Body> + Send + Sync + 'static,
{
fn filter_request(&self, request: Request<Body>) -> Request<Body> {
(self.0)(request)
}
fn filter_response(&self, response: Response<Body>) -> Response<Body> {
(self.1)(response)
}
}
Impl(request, response)
}
pub trait Middleware: Send + Sync + 'static {
fn filter_request(&self, request: Request<Body>) -> Request<Body> {
request
}
fn filter_response(&self, response: Response<Body>) -> Response<Body> {
response
}
}