1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-02 21:39:26 +00:00
actix-web/src/middleware/compress.rs

219 lines
5.9 KiB
Rust
Raw Normal View History

2019-03-26 22:14:32 +00:00
//! `Middleware` for compressing response body.
use std::cmp;
2019-11-20 17:33:22 +00:00
use std::future::Future;
use std::marker::PhantomData;
2019-11-20 17:33:22 +00:00
use std::pin::Pin;
2019-03-02 06:51:32 +00:00
use std::str::FromStr;
2019-11-20 17:33:22 +00:00
use std::task::{Context, Poll};
2019-03-02 06:51:32 +00:00
2019-03-26 22:14:32 +00:00
use actix_http::body::MessageBody;
use actix_http::encoding::Encoder;
use actix_http::http::header::{ContentEncoding, ACCEPT_ENCODING};
2019-12-16 11:22:26 +00:00
use actix_http::Error;
2019-03-05 05:37:57 +00:00
use actix_service::{Service, Transform};
2020-05-18 02:47:20 +00:00
use futures_util::future::{ok, Ready};
2019-11-20 17:33:22 +00:00
use pin_project::pin_project;
2019-03-02 06:51:32 +00:00
2019-12-16 11:22:26 +00:00
use crate::dev::BodyEncoding;
2019-03-02 06:51:32 +00:00
use crate::service::{ServiceRequest, ServiceResponse};
#[derive(Debug, Clone)]
2019-03-24 18:29:35 +00:00
/// `Middleware` for compressing response body.
///
/// Use `BodyEncoding` trait for overriding response compression.
/// To disable compression set encoding to `ContentEncoding::Identity` value.
///
/// ```rust
/// use actix_web::{web, middleware, App, HttpResponse};
///
/// fn main() {
/// let app = App::new()
/// .wrap(middleware::Compress::default())
/// .service(
/// web::resource("/test")
/// .route(web::get().to(|| HttpResponse::Ok()))
/// .route(web::head().to(|| HttpResponse::MethodNotAllowed()))
/// );
/// }
/// ```
2019-03-02 06:51:32 +00:00
pub struct Compress(ContentEncoding);
impl Compress {
2019-03-24 18:29:35 +00:00
/// Create new `Compress` middleware with default encoding.
2019-03-02 06:51:32 +00:00
pub fn new(encoding: ContentEncoding) -> Self {
Compress(encoding)
}
}
impl Default for Compress {
fn default() -> Self {
Compress::new(ContentEncoding::Auto)
}
}
impl<S, B> Transform<S, ServiceRequest> for Compress
2019-03-05 05:37:57 +00:00
where
B: MessageBody,
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error>,
2019-03-05 05:37:57 +00:00
{
type Response = ServiceResponse<Encoder<B>>;
2019-04-25 18:14:32 +00:00
type Error = Error;
2019-03-05 05:37:57 +00:00
type Transform = CompressMiddleware<S>;
type InitError = ();
2019-11-20 17:33:22 +00:00
type Future = Ready<Result<Self::Transform, Self::InitError>>;
2019-03-05 05:37:57 +00:00
fn new_transform(&self, service: S) -> Self::Future {
ok(CompressMiddleware {
service,
encoding: self.0,
})
}
}
pub struct CompressMiddleware<S> {
service: S,
encoding: ContentEncoding,
}
impl<S, B> Service<ServiceRequest> for CompressMiddleware<S>
2019-03-02 06:51:32 +00:00
where
B: MessageBody,
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error>,
2019-03-02 06:51:32 +00:00
{
type Response = ServiceResponse<Encoder<B>>;
2019-04-25 18:14:32 +00:00
type Error = Error;
type Future = CompressResponse<S, B>;
2019-03-02 06:51:32 +00:00
2019-12-07 18:46:51 +00:00
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
2019-11-20 17:33:22 +00:00
self.service.poll_ready(cx)
2019-03-02 06:51:32 +00:00
}
#[allow(clippy::borrow_interior_mutable_const)]
fn call(&mut self, req: ServiceRequest) -> Self::Future {
2019-03-02 06:51:32 +00:00
// negotiate content-encoding
let encoding = if let Some(val) = req.headers().get(&ACCEPT_ENCODING) {
2019-03-02 06:51:32 +00:00
if let Ok(enc) = val.to_str() {
2019-03-05 05:37:57 +00:00
AcceptEncoding::parse(enc, self.encoding)
2019-03-02 06:51:32 +00:00
} else {
ContentEncoding::Identity
}
} else {
ContentEncoding::Identity
};
CompressResponse {
encoding,
2019-03-05 05:37:57 +00:00
fut: self.service.call(req),
2021-01-04 00:49:02 +00:00
_phantom: PhantomData,
2019-03-02 06:51:32 +00:00
}
}
}
#[doc(hidden)]
2019-11-20 17:33:22 +00:00
#[pin_project]
pub struct CompressResponse<S, B>
2019-03-02 06:51:32 +00:00
where
S: Service<ServiceRequest>,
2019-04-04 17:59:34 +00:00
B: MessageBody,
2019-03-02 06:51:32 +00:00
{
2019-11-20 17:33:22 +00:00
#[pin]
2019-03-02 06:51:32 +00:00
fut: S::Future,
encoding: ContentEncoding,
2021-01-04 00:49:02 +00:00
_phantom: PhantomData<B>,
2019-03-02 06:51:32 +00:00
}
impl<S, B> Future for CompressResponse<S, B>
2019-03-02 06:51:32 +00:00
where
B: MessageBody,
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error>,
2019-03-02 06:51:32 +00:00
{
2019-11-20 17:33:22 +00:00
type Output = Result<ServiceResponse<Encoder<B>>, Error>;
2019-12-07 18:46:51 +00:00
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
2019-11-20 17:33:22 +00:00
let this = self.project();
2020-05-18 02:47:20 +00:00
match futures_util::ready!(this.fut.poll(cx)) {
2019-11-20 17:33:22 +00:00
Ok(resp) => {
2019-12-18 03:30:14 +00:00
let enc = if let Some(enc) = resp.response().get_encoding() {
2019-12-16 11:22:26 +00:00
enc
2019-11-20 17:33:22 +00:00
} else {
*this.encoding
};
Poll::Ready(Ok(
resp.map_body(move |head, body| Encoder::response(enc, head, body))
))
}
Err(e) => Poll::Ready(Err(e)),
}
2019-03-02 06:51:32 +00:00
}
}
struct AcceptEncoding {
encoding: ContentEncoding,
quality: f64,
}
impl Eq for AcceptEncoding {}
impl Ord for AcceptEncoding {
2019-12-08 06:31:16 +00:00
#[allow(clippy::comparison_chain)]
2019-03-02 06:51:32 +00:00
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(),
_ => f64::from_str(parts[1]).unwrap_or(0.0),
2019-03-02 06:51:32 +00:00
};
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
}
}