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
use super::{RequestBodyLimitLayer, ResponseBody, ResponseFuture};
use http::{Request, Response};
use http_body::{Body, Limited};
use std::task::{Context, Poll};
use tower_service::Service;
#[derive(Clone, Copy, Debug)]
pub struct RequestBodyLimit<S> {
pub(crate) inner: S,
pub(crate) limit: usize,
}
impl<S> RequestBodyLimit<S> {
pub fn new(inner: S, limit: usize) -> Self {
Self { inner, limit }
}
define_inner_service_accessors!();
pub fn layer(limit: usize) -> RequestBodyLimitLayer {
RequestBodyLimitLayer::new(limit)
}
}
impl<ReqBody, ResBody, S> Service<Request<ReqBody>> for RequestBodyLimit<S>
where
ResBody: Body,
S: Service<Request<Limited<ReqBody>>, Response = Response<ResBody>>,
{
type Response = Response<ResponseBody<ResBody>>;
type Error = S::Error;
type Future = ResponseFuture<S::Future>;
#[inline]
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
self.inner.poll_ready(cx)
}
fn call(&mut self, req: Request<ReqBody>) -> Self::Future {
let content_length = req
.headers()
.get(http::header::CONTENT_LENGTH)
.and_then(|value| value.to_str().ok()?.parse::<usize>().ok());
let body_limit = match content_length {
Some(len) if len > self.limit => return ResponseFuture::payload_too_large(),
Some(len) => self.limit.min(len),
None => self.limit,
};
let req = req.map(|body| Limited::new(body, body_limit));
ResponseFuture::new(self.inner.call(req))
}
}