mirror of
https://github.com/actix/examples
synced 2024-12-04 18:51:55 +01:00
71 lines
2.0 KiB
Rust
71 lines
2.0 KiB
Rust
|
use actix_service::{Service, Transform};
|
||
|
use actix_web::error::PayloadError;
|
||
|
use actix_web::{dev::ServiceRequest, dev::ServiceResponse, Error, HttpMessage};
|
||
|
use bytes::BytesMut;
|
||
|
use futures::future::{ok, FutureResult};
|
||
|
use futures::stream::Stream;
|
||
|
use futures::{Future, Poll};
|
||
|
use std::cell::RefCell;
|
||
|
use std::rc::Rc;
|
||
|
|
||
|
pub struct Logging;
|
||
|
|
||
|
impl<S: 'static, B> Transform<S> for Logging
|
||
|
where
|
||
|
S: Service<Request = ServiceRequest, Response = ServiceResponse<B>, Error = Error>,
|
||
|
S::Future: 'static,
|
||
|
B: 'static,
|
||
|
{
|
||
|
type Request = ServiceRequest;
|
||
|
type Response = ServiceResponse<B>;
|
||
|
type Error = Error;
|
||
|
type InitError = ();
|
||
|
type Transform = LoggingMiddleware<S>;
|
||
|
type Future = FutureResult<Self::Transform, Self::InitError>;
|
||
|
|
||
|
fn new_transform(&self, service: S) -> Self::Future {
|
||
|
ok(LoggingMiddleware {
|
||
|
service: Rc::new(RefCell::new(service)),
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub struct LoggingMiddleware<S> {
|
||
|
// This is special: We need this to avoid lifetime issues.
|
||
|
service: Rc<RefCell<S>>,
|
||
|
}
|
||
|
|
||
|
impl<S, B> Service for LoggingMiddleware<S>
|
||
|
where
|
||
|
S: Service<Request = ServiceRequest, Response = ServiceResponse<B>, Error = Error>
|
||
|
+ 'static,
|
||
|
S::Future: 'static,
|
||
|
B: 'static,
|
||
|
{
|
||
|
type Request = ServiceRequest;
|
||
|
type Response = ServiceResponse<B>;
|
||
|
type Error = Error;
|
||
|
type Future = Box<dyn Future<Item = Self::Response, Error = Self::Error>>;
|
||
|
|
||
|
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
|
||
|
self.service.poll_ready()
|
||
|
}
|
||
|
|
||
|
fn call(&mut self, mut req: ServiceRequest) -> Self::Future {
|
||
|
let mut svc = self.service.clone();
|
||
|
|
||
|
Box::new(
|
||
|
req.take_payload()
|
||
|
.fold(BytesMut::new(), move |mut body, chunk| {
|
||
|
body.extend_from_slice(&chunk);
|
||
|
Ok::<_, PayloadError>(body)
|
||
|
})
|
||
|
.map_err(|e| e.into())
|
||
|
.and_then(move |bytes| {
|
||
|
println!("request body: {:?}", bytes);
|
||
|
svc.call(req).and_then(|res| Ok(res))
|
||
|
}),
|
||
|
)
|
||
|
}
|
||
|
}
|