2019-03-26 15:14:32 -07:00
|
|
|
//! `Middleware` for compressing response body.
|
|
|
|
use std::cmp;
|
2019-03-09 09:49:11 -08:00
|
|
|
use std::marker::PhantomData;
|
2019-03-01 22:51:32 -08:00
|
|
|
use std::str::FromStr;
|
|
|
|
|
2019-03-26 15:14:32 -07:00
|
|
|
use actix_http::body::MessageBody;
|
|
|
|
use actix_http::encoding::Encoder;
|
|
|
|
use actix_http::http::header::{ContentEncoding, ACCEPT_ENCODING};
|
2019-03-30 02:29:11 +03:00
|
|
|
use actix_http::{Response, ResponseBuilder};
|
2019-03-04 21:37:57 -08:00
|
|
|
use actix_service::{Service, Transform};
|
|
|
|
use futures::future::{ok, FutureResult};
|
2019-03-01 22:51:32 -08:00
|
|
|
use futures::{Async, Future, Poll};
|
|
|
|
|
|
|
|
use crate::service::{ServiceRequest, ServiceResponse};
|
|
|
|
|
2019-03-27 11:29:31 -07:00
|
|
|
struct Enc(ContentEncoding);
|
|
|
|
|
|
|
|
/// Helper trait that allows to set specific encoding for response.
|
|
|
|
pub trait BodyEncoding {
|
|
|
|
fn encoding(&mut self, encoding: ContentEncoding) -> &mut Self;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BodyEncoding for ResponseBuilder {
|
|
|
|
fn encoding(&mut self, encoding: ContentEncoding) -> &mut Self {
|
|
|
|
self.extensions_mut().insert(Enc(encoding));
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-30 02:29:11 +03:00
|
|
|
impl<B> BodyEncoding for Response<B> {
|
|
|
|
fn encoding(&mut self, encoding: ContentEncoding) -> &mut Self {
|
|
|
|
self.extensions_mut().insert(Enc(encoding));
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-01 22:51:32 -08:00
|
|
|
#[derive(Debug, Clone)]
|
2019-03-24 11:29:35 -07:00
|
|
|
/// `Middleware` for compressing response body.
|
2019-03-27 11:29:31 -07:00
|
|
|
///
|
|
|
|
/// Use `BodyEncoding` trait for overriding response compression.
|
|
|
|
/// To disable compression set encoding to `ContentEncoding::Identity` value.
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use actix_web::{web, middleware::encoding, App, HttpResponse};
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let app = App::new()
|
|
|
|
/// .wrap(encoding::Compress::default())
|
|
|
|
/// .service(
|
|
|
|
/// web::resource("/test")
|
|
|
|
/// .route(web::get().to(|| HttpResponse::Ok()))
|
|
|
|
/// .route(web::head().to(|| HttpResponse::MethodNotAllowed()))
|
|
|
|
/// );
|
|
|
|
/// }
|
|
|
|
/// ```
|
2019-03-01 22:51:32 -08:00
|
|
|
pub struct Compress(ContentEncoding);
|
|
|
|
|
|
|
|
impl Compress {
|
2019-03-24 11:29:35 -07:00
|
|
|
/// Create new `Compress` middleware with default encoding.
|
2019-03-01 22:51:32 -08:00
|
|
|
pub fn new(encoding: ContentEncoding) -> Self {
|
|
|
|
Compress(encoding)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Compress {
|
|
|
|
fn default() -> Self {
|
|
|
|
Compress::new(ContentEncoding::Auto)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-09 09:49:11 -08:00
|
|
|
impl<S, P, B> Transform<S> for Compress
|
2019-03-04 21:37:57 -08:00
|
|
|
where
|
|
|
|
P: 'static,
|
|
|
|
B: MessageBody,
|
2019-03-09 09:49:11 -08:00
|
|
|
S: Service<Request = ServiceRequest<P>, Response = ServiceResponse<B>>,
|
2019-03-04 21:37:57 -08:00
|
|
|
S::Future: 'static,
|
|
|
|
{
|
2019-03-09 09:49:11 -08:00
|
|
|
type Request = ServiceRequest<P>;
|
2019-03-04 21:37:57 -08:00
|
|
|
type Response = ServiceResponse<Encoder<B>>;
|
|
|
|
type Error = S::Error;
|
|
|
|
type InitError = ();
|
|
|
|
type Transform = CompressMiddleware<S>;
|
|
|
|
type Future = FutureResult<Self::Transform, Self::InitError>;
|
|
|
|
|
|
|
|
fn new_transform(&self, service: S) -> Self::Future {
|
|
|
|
ok(CompressMiddleware {
|
|
|
|
service,
|
|
|
|
encoding: self.0,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct CompressMiddleware<S> {
|
|
|
|
service: S,
|
|
|
|
encoding: ContentEncoding,
|
|
|
|
}
|
|
|
|
|
2019-03-09 09:49:11 -08:00
|
|
|
impl<S, P, B> Service for CompressMiddleware<S>
|
2019-03-01 22:51:32 -08:00
|
|
|
where
|
|
|
|
P: 'static,
|
|
|
|
B: MessageBody,
|
2019-03-09 09:49:11 -08:00
|
|
|
S: Service<Request = ServiceRequest<P>, Response = ServiceResponse<B>>,
|
2019-03-01 22:51:32 -08:00
|
|
|
S::Future: 'static,
|
|
|
|
{
|
2019-03-09 09:49:11 -08:00
|
|
|
type Request = ServiceRequest<P>;
|
2019-03-01 22:51:32 -08:00
|
|
|
type Response = ServiceResponse<Encoder<B>>;
|
|
|
|
type Error = S::Error;
|
|
|
|
type Future = CompressResponse<S, P, B>;
|
|
|
|
|
|
|
|
fn poll_ready(&mut self) -> Poll<(), Self::Error> {
|
2019-03-04 21:37:57 -08:00
|
|
|
self.service.poll_ready()
|
2019-03-01 22:51:32 -08:00
|
|
|
}
|
|
|
|
|
2019-03-04 21:37:57 -08:00
|
|
|
fn call(&mut self, req: ServiceRequest<P>) -> Self::Future {
|
2019-03-01 22:51:32 -08:00
|
|
|
// negotiate content-encoding
|
|
|
|
let encoding = if let Some(val) = req.headers.get(ACCEPT_ENCODING) {
|
|
|
|
if let Ok(enc) = val.to_str() {
|
2019-03-04 21:37:57 -08:00
|
|
|
AcceptEncoding::parse(enc, self.encoding)
|
2019-03-01 22:51:32 -08:00
|
|
|
} else {
|
|
|
|
ContentEncoding::Identity
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ContentEncoding::Identity
|
|
|
|
};
|
|
|
|
|
|
|
|
CompressResponse {
|
|
|
|
encoding,
|
2019-03-04 21:37:57 -08:00
|
|
|
fut: self.service.call(req),
|
2019-03-09 09:49:11 -08:00
|
|
|
_t: PhantomData,
|
2019-03-01 22:51:32 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub struct CompressResponse<S, P, B>
|
|
|
|
where
|
|
|
|
P: 'static,
|
|
|
|
B: MessageBody,
|
2019-03-09 09:49:11 -08:00
|
|
|
S: Service,
|
2019-03-01 22:51:32 -08:00
|
|
|
S::Future: 'static,
|
|
|
|
{
|
|
|
|
fut: S::Future,
|
|
|
|
encoding: ContentEncoding,
|
2019-03-09 09:49:11 -08:00
|
|
|
_t: PhantomData<(P, B)>,
|
2019-03-01 22:51:32 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<S, P, B> Future for CompressResponse<S, P, B>
|
|
|
|
where
|
|
|
|
P: 'static,
|
|
|
|
B: MessageBody,
|
2019-03-09 09:49:11 -08:00
|
|
|
S: Service<Request = ServiceRequest<P>, Response = ServiceResponse<B>>,
|
2019-03-01 22:51:32 -08:00
|
|
|
S::Future: 'static,
|
|
|
|
{
|
|
|
|
type Item = ServiceResponse<Encoder<B>>;
|
|
|
|
type Error = S::Error;
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
|
|
|
let resp = futures::try_ready!(self.fut.poll());
|
|
|
|
|
2019-03-27 11:29:31 -07:00
|
|
|
let enc = if let Some(enc) = resp.head().extensions().get::<Enc>() {
|
|
|
|
enc.0
|
|
|
|
} else {
|
|
|
|
self.encoding
|
|
|
|
};
|
|
|
|
|
2019-03-01 22:51:32 -08:00
|
|
|
Ok(Async::Ready(resp.map_body(move |head, body| {
|
2019-03-27 11:29:31 -07:00
|
|
|
Encoder::response(enc, head, body)
|
2019-03-01 22:51:32 -08:00
|
|
|
})))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct AcceptEncoding {
|
|
|
|
encoding: ContentEncoding,
|
|
|
|
quality: f64,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Eq for AcceptEncoding {}
|
|
|
|
|
|
|
|
impl Ord for AcceptEncoding {
|
|
|
|
fn cmp(&self, other: &AcceptEncoding) -> cmp::Ordering {
|
|
|
|
if self.quality > other.quality {
|
|
|
|
cmp::Ordering::Less
|
|
|
|
} else if self.quality < other.quality {
|
|
|
|
cmp::Ordering::Greater
|
|
|
|
} else {
|
|
|
|
cmp::Ordering::Equal
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PartialOrd for AcceptEncoding {
|
|
|
|
fn partial_cmp(&self, other: &AcceptEncoding) -> Option<cmp::Ordering> {
|
|
|
|
Some(self.cmp(other))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PartialEq for AcceptEncoding {
|
|
|
|
fn eq(&self, other: &AcceptEncoding) -> bool {
|
|
|
|
self.quality == other.quality
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AcceptEncoding {
|
|
|
|
fn new(tag: &str) -> Option<AcceptEncoding> {
|
|
|
|
let parts: Vec<&str> = tag.split(';').collect();
|
|
|
|
let encoding = match parts.len() {
|
|
|
|
0 => return None,
|
|
|
|
_ => ContentEncoding::from(parts[0]),
|
|
|
|
};
|
|
|
|
let quality = match parts.len() {
|
|
|
|
1 => encoding.quality(),
|
|
|
|
_ => match f64::from_str(parts[1]) {
|
|
|
|
Ok(q) => q,
|
|
|
|
Err(_) => 0.0,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
Some(AcceptEncoding { encoding, quality })
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Parse a raw Accept-Encoding header value into an ordered list.
|
|
|
|
pub fn parse(raw: &str, encoding: ContentEncoding) -> ContentEncoding {
|
|
|
|
let mut encodings: Vec<_> = raw
|
|
|
|
.replace(' ', "")
|
|
|
|
.split(',')
|
|
|
|
.map(|l| AcceptEncoding::new(l))
|
|
|
|
.collect();
|
|
|
|
encodings.sort();
|
|
|
|
|
|
|
|
for enc in encodings {
|
|
|
|
if let Some(enc) = enc {
|
|
|
|
if encoding == ContentEncoding::Auto {
|
|
|
|
return enc.encoding;
|
|
|
|
} else if encoding == enc.encoding {
|
|
|
|
return encoding;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ContentEncoding::Identity
|
|
|
|
}
|
|
|
|
}
|