2021-01-05 09:51:58 +00:00
|
|
|
//! 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-04 21:37:57 -08:00
|
|
|
use actix_service::{Service, Transform};
|
2021-01-17 05:19:32 +00:00
|
|
|
use futures_core::ready;
|
2020-05-18 11:47:20 +09:00
|
|
|
use futures_util::future::{ok, Ready};
|
2019-11-20 23:33:22 +06:00
|
|
|
use pin_project::pin_project;
|
2019-03-01 22:51:32 -08:00
|
|
|
|
2021-01-05 09:51:58 +00:00
|
|
|
use crate::{
|
|
|
|
dev::BodyEncoding,
|
|
|
|
service::{ServiceRequest, ServiceResponse},
|
|
|
|
};
|
2019-03-01 22:51:32 -08:00
|
|
|
|
2021-01-05 09:51:58 +00:00
|
|
|
/// Middleware for compressing response payloads.
|
2019-03-27 11:29:31 -07:00
|
|
|
///
|
2021-01-05 09:51:58 +00:00
|
|
|
/// Use `BodyEncoding` trait for overriding response compression. To disable compression set
|
|
|
|
/// encoding to `ContentEncoding::Identity`.
|
2019-03-27 11:29:31 -07:00
|
|
|
///
|
2021-01-05 09:51:58 +00:00
|
|
|
/// # Usage
|
2019-03-27 11:29:31 -07:00
|
|
|
/// ```rust
|
2019-04-13 14:50:54 -07:00
|
|
|
/// use actix_web::{web, middleware, App, HttpResponse};
|
2019-03-27 11:29:31 -07:00
|
|
|
///
|
2021-01-05 09:51:58 +00:00
|
|
|
/// let app = App::new()
|
|
|
|
/// .wrap(middleware::Compress::default())
|
|
|
|
/// .default_service(web::to(|| HttpResponse::NotFound()));
|
2019-03-27 11:29:31 -07:00
|
|
|
/// ```
|
2021-01-05 09:51:58 +00:00
|
|
|
#[derive(Debug, Clone)]
|
2019-03-01 22:51:32 -08:00
|
|
|
pub struct Compress(ContentEncoding);
|
|
|
|
|
|
|
|
impl Compress {
|
2021-01-05 09:51:58 +00:00
|
|
|
/// Create new `Compress` middleware with the specified 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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-04 07:47:04 +08:00
|
|
|
impl<S, B> Transform<S, ServiceRequest> for Compress
|
2019-03-04 21:37:57 -08:00
|
|
|
where
|
|
|
|
B: MessageBody,
|
2021-01-04 07:47:04 +08:00
|
|
|
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error>,
|
2019-03-04 21:37:57 -08:00
|
|
|
{
|
|
|
|
type Response = ServiceResponse<Encoder<B>>;
|
2019-04-25 11:14:32 -07:00
|
|
|
type Error = Error;
|
2019-03-04 21:37:57 -08:00
|
|
|
type Transform = CompressMiddleware<S>;
|
2021-01-04 07:47:04 +08:00
|
|
|
type InitError = ();
|
2019-11-20 23:33:22 +06:00
|
|
|
type Future = Ready<Result<Self::Transform, Self::InitError>>;
|
2019-03-04 21:37:57 -08:00
|
|
|
|
|
|
|
fn new_transform(&self, service: S) -> Self::Future {
|
|
|
|
ok(CompressMiddleware {
|
|
|
|
service,
|
|
|
|
encoding: self.0,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct CompressMiddleware<S> {
|
|
|
|
service: S,
|
|
|
|
encoding: ContentEncoding,
|
|
|
|
}
|
|
|
|
|
2021-01-04 07:47:04 +08:00
|
|
|
impl<S, B> Service<ServiceRequest> for CompressMiddleware<S>
|
2019-03-01 22:51:32 -08:00
|
|
|
where
|
|
|
|
B: MessageBody,
|
2021-01-04 07:47:04 +08:00
|
|
|
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error>,
|
2019-03-01 22:51:32 -08:00
|
|
|
{
|
|
|
|
type Response = ServiceResponse<Encoder<B>>;
|
2019-04-25 11:14:32 -07:00
|
|
|
type Error = Error;
|
2019-04-13 14:50:54 -07:00
|
|
|
type Future = CompressResponse<S, B>;
|
2019-03-01 22:51:32 -08:00
|
|
|
|
2021-01-05 09:51:58 +00:00
|
|
|
actix_service::forward_ready!(service);
|
2019-03-01 22:51:32 -08:00
|
|
|
|
2020-06-22 20:09:48 +01:00
|
|
|
#[allow(clippy::borrow_interior_mutable_const)]
|
2021-02-06 17:00:40 -08:00
|
|
|
fn call(&self, req: ServiceRequest) -> Self::Future {
|
2019-03-01 22:51:32 -08:00
|
|
|
// negotiate content-encoding
|
2019-04-06 15:02:02 -07:00
|
|
|
let encoding = if let Some(val) = req.headers().get(&ACCEPT_ENCODING) {
|
2019-03-01 22:51:32 -08:00
|
|
|
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),
|
2021-01-04 00:49:02 +00:00
|
|
|
_phantom: PhantomData,
|
2019-03-01 22:51:32 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-20 23:33:22 +06:00
|
|
|
#[pin_project]
|
2019-04-13 14:50:54 -07:00
|
|
|
pub struct CompressResponse<S, B>
|
2019-03-01 22:51:32 -08:00
|
|
|
where
|
2021-01-04 07:47:04 +08:00
|
|
|
S: Service<ServiceRequest>,
|
2019-04-04 10:59:34 -07:00
|
|
|
B: MessageBody,
|
2019-03-01 22:51:32 -08:00
|
|
|
{
|
2019-11-20 23:33:22 +06:00
|
|
|
#[pin]
|
2019-03-01 22:51:32 -08:00
|
|
|
fut: S::Future,
|
|
|
|
encoding: ContentEncoding,
|
2021-01-04 00:49:02 +00:00
|
|
|
_phantom: PhantomData<B>,
|
2019-03-01 22:51:32 -08:00
|
|
|
}
|
|
|
|
|
2019-04-13 14:50:54 -07:00
|
|
|
impl<S, B> Future for CompressResponse<S, B>
|
2019-03-01 22:51:32 -08:00
|
|
|
where
|
|
|
|
B: MessageBody,
|
2021-01-04 07:47:04 +08:00
|
|
|
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error>,
|
2019-03-01 22:51:32 -08:00
|
|
|
{
|
2019-11-20 23:33:22 +06:00
|
|
|
type Output = Result<ServiceResponse<Encoder<B>>, Error>;
|
|
|
|
|
2019-12-08 00:46:51 +06:00
|
|
|
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
2019-11-20 23:33:22 +06:00
|
|
|
let this = self.project();
|
|
|
|
|
2021-01-17 05:19:32 +00:00
|
|
|
match ready!(this.fut.poll(cx)) {
|
2019-11-20 23:33:22 +06:00
|
|
|
Ok(resp) => {
|
2019-12-18 09:30:14 +06:00
|
|
|
let enc = if let Some(enc) = resp.response().get_encoding() {
|
2019-12-16 17:22:26 +06:00
|
|
|
enc
|
2019-11-20 23:33:22 +06: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-01 22:51:32 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct AcceptEncoding {
|
|
|
|
encoding: ContentEncoding,
|
|
|
|
quality: f64,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Eq for AcceptEncoding {}
|
|
|
|
|
|
|
|
impl Ord for AcceptEncoding {
|
2019-12-08 12:31:16 +06:00
|
|
|
#[allow(clippy::comparison_chain)]
|
2019-03-01 22:51:32 -08: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(),
|
2020-12-09 11:22:19 +00:00
|
|
|
_ => f64::from_str(parts[1]).unwrap_or(0.0),
|
2019-03-01 22:51:32 -08: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
|
|
|
|
}
|
|
|
|
}
|