1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
use super::future::RequestDecompressionFuture as ResponseFuture;
use super::layer::RequestDecompressionLayer;
use crate::{
compression_utils::AcceptEncoding, decompression::body::BodyInner,
decompression::DecompressionBody, BoxError,
};
use bytes::Buf;
use http::{header, Request, Response};
use http_body::{combinators::UnsyncBoxBody, Body};
use std::task::{Context, Poll};
use tower_service::Service;
#[cfg(any(
feature = "decompression-gzip",
feature = "decompression-deflate",
feature = "decompression-br",
feature = "decompression-zstd",
))]
use crate::content_encoding::SupportedEncodings;
#[derive(Debug, Clone)]
pub struct RequestDecompression<S> {
pub(super) inner: S,
pub(super) accept: AcceptEncoding,
pub(super) pass_through_unaccepted: bool,
}
impl<S, ReqBody, ResBody, D> Service<Request<ReqBody>> for RequestDecompression<S>
where
S: Service<Request<DecompressionBody<ReqBody>>, Response = Response<ResBody>>,
ReqBody: Body,
ResBody: Body<Data = D> + Send + 'static,
S::Error: Into<BoxError>,
<ResBody as Body>::Error: Into<BoxError>,
D: Buf + 'static,
{
type Response = Response<UnsyncBoxBody<D, BoxError>>;
type Error = BoxError;
type Future = ResponseFuture<S::Future, ResBody, S::Error>;
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
self.inner.poll_ready(cx).map_err(Into::into)
}
fn call(&mut self, req: Request<ReqBody>) -> Self::Future {
let (mut parts, body) = req.into_parts();
let body =
if let header::Entry::Occupied(entry) = parts.headers.entry(header::CONTENT_ENCODING) {
match entry.get().as_bytes() {
#[cfg(feature = "decompression-gzip")]
b"gzip" if self.accept.gzip() => {
entry.remove();
parts.headers.remove(header::CONTENT_LENGTH);
BodyInner::gzip(crate::compression_utils::WrapBody::new(body))
}
#[cfg(feature = "decompression-deflate")]
b"deflate" if self.accept.deflate() => {
entry.remove();
parts.headers.remove(header::CONTENT_LENGTH);
BodyInner::deflate(crate::compression_utils::WrapBody::new(body))
}
#[cfg(feature = "decompression-br")]
b"br" if self.accept.br() => {
entry.remove();
parts.headers.remove(header::CONTENT_LENGTH);
BodyInner::brotli(crate::compression_utils::WrapBody::new(body))
}
#[cfg(feature = "decompression-zstd")]
b"zstd" if self.accept.zstd() => {
entry.remove();
parts.headers.remove(header::CONTENT_LENGTH);
BodyInner::zstd(crate::compression_utils::WrapBody::new(body))
}
b"identity" => BodyInner::identity(body),
_ if self.pass_through_unaccepted => BodyInner::identity(body),
_ => return ResponseFuture::unsupported_encoding(self.accept),
}
} else {
BodyInner::identity(body)
};
let body = DecompressionBody::new(body);
let req = Request::from_parts(parts, body);
ResponseFuture::inner(self.inner.call(req))
}
}
impl<S> RequestDecompression<S> {
pub fn new(service: S) -> Self {
Self {
inner: service,
accept: AcceptEncoding::default(),
pass_through_unaccepted: false,
}
}
define_inner_service_accessors!();
pub fn layer() -> RequestDecompressionLayer {
RequestDecompressionLayer::new()
}
pub fn pass_through_unaccepted(mut self, enabled: bool) -> Self {
self.pass_through_unaccepted = enabled;
self
}
#[cfg(feature = "decompression-gzip")]
pub fn gzip(mut self, enable: bool) -> Self {
self.accept.set_gzip(enable);
self
}
#[cfg(feature = "decompression-deflate")]
pub fn deflate(mut self, enable: bool) -> Self {
self.accept.set_deflate(enable);
self
}
#[cfg(feature = "decompression-br")]
pub fn br(mut self, enable: bool) -> Self {
self.accept.set_br(enable);
self
}
#[cfg(feature = "decompression-zstd")]
pub fn zstd(mut self, enable: bool) -> Self {
self.accept.set_zstd(enable);
self
}
pub fn no_gzip(mut self) -> Self {
self.accept.set_gzip(false);
self
}
pub fn no_deflate(mut self) -> Self {
self.accept.set_deflate(false);
self
}
pub fn no_br(mut self) -> Self {
self.accept.set_br(false);
self
}
pub fn no_zstd(mut self) -> Self {
self.accept.set_zstd(false);
self
}
}