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

220 lines
5.6 KiB
Rust
Raw Normal View History

//! For middleware documentation, see [`Compress`].
use std::{
cmp,
future::Future,
marker::PhantomData,
pin::Pin,
str::FromStr,
task::{Context, Poll},
};
use actix_http::{
body::MessageBody,
encoding::Encoder,
http::header::{ContentEncoding, ACCEPT_ENCODING},
Error,
};
2019-03-05 05:37:57 +00:00
use actix_service::{Service, Transform};
2021-01-17 05:19:32 +00:00
use futures_core::ready;
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
use crate::{
dev::BodyEncoding,
service::{ServiceRequest, ServiceResponse},
};
2019-03-02 06:51:32 +00:00
/// Middleware for compressing response payloads.
///
/// Use `BodyEncoding` trait for overriding response compression. To disable compression set
/// encoding to `ContentEncoding::Identity`.
///
2021-02-10 12:10:03 +00:00
/// # Examples
/// ```rust
/// use actix_web::{web, middleware, App, HttpResponse};
///
/// let app = App::new()
/// .wrap(middleware::Compress::default())
/// .default_service(web::to(|| HttpResponse::NotFound()));
/// ```
#[derive(Debug, Clone)]
2019-03-02 06:51:32 +00:00
pub struct Compress(ContentEncoding);
impl Compress {
/// Create new `Compress` middleware with the specified 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
actix_service::forward_ready!(service);
2019-03-02 06:51:32 +00:00
#[allow(clippy::borrow_interior_mutable_const)]
fn call(&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
}
}
}
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();
2021-01-17 05:19:32 +00:00
match 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 = raw
2019-03-02 06:51:32 +00:00
.replace(' ', "")
.split(',')
.map(|l| AcceptEncoding::new(l))
.flatten()
.collect::<Vec<_>>();
2019-03-02 06:51:32 +00:00
encodings.sort();
for enc in encodings {
if encoding == ContentEncoding::Auto {
return enc.encoding;
} else if encoding == enc.encoding {
return encoding;
2019-03-02 06:51:32 +00:00
}
}
2019-03-02 06:51:32 +00:00
ContentEncoding::Identity
}
}