mirror of https://github.com/fafhrd91/actix-web
Merge 9fa392de97
into 78ac5cf482
This commit is contained in:
commit
3c26df0b2c
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
- Do not set content-encoding to identity for range requests
|
||||||
|
|
||||||
## 0.6.6
|
## 0.6.6
|
||||||
|
|
||||||
- Update `tokio-uring` dependency to `0.4`.
|
- Update `tokio-uring` dependency to `0.4`.
|
||||||
|
|
|
@ -14,7 +14,7 @@ use actix_web::{
|
||||||
http::{
|
http::{
|
||||||
header::{
|
header::{
|
||||||
self, Charset, ContentDisposition, ContentEncoding, DispositionParam, DispositionType,
|
self, Charset, ContentDisposition, ContentEncoding, DispositionParam, DispositionType,
|
||||||
ExtendedValue, HeaderValue,
|
ExtendedValue,
|
||||||
},
|
},
|
||||||
StatusCode,
|
StatusCode,
|
||||||
},
|
},
|
||||||
|
@ -534,27 +534,6 @@ impl NamedFile {
|
||||||
length = ranges[0].length;
|
length = ranges[0].length;
|
||||||
offset = ranges[0].start;
|
offset = ranges[0].start;
|
||||||
|
|
||||||
// When a Content-Encoding header is present in a 206 partial content response
|
|
||||||
// for video content, it prevents browser video players from starting playback
|
|
||||||
// before loading the whole video and also prevents seeking.
|
|
||||||
//
|
|
||||||
// See: https://github.com/actix/actix-web/issues/2815
|
|
||||||
//
|
|
||||||
// The assumption of this fix is that the video player knows to not send an
|
|
||||||
// Accept-Encoding header for this request and that downstream middleware will
|
|
||||||
// not attempt compression for requests without it.
|
|
||||||
//
|
|
||||||
// TODO: Solve question around what to do if self.encoding is set and partial
|
|
||||||
// range is requested. Reject request? Ignoring self.encoding seems wrong, too.
|
|
||||||
// In practice, it should not come up.
|
|
||||||
if req.headers().contains_key(&header::ACCEPT_ENCODING) {
|
|
||||||
// don't allow compression middleware to modify partial content
|
|
||||||
res.insert_header((
|
|
||||||
header::CONTENT_ENCODING,
|
|
||||||
HeaderValue::from_static("identity"),
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
res.insert_header((
|
res.insert_header((
|
||||||
header::CONTENT_RANGE,
|
header::CONTENT_RANGE,
|
||||||
format!("bytes {}-{}/{}", offset, offset + length - 1, self.md.len()),
|
format!("bytes {}-{}/{}", offset, offset + length - 1, self.md.len()),
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
use actix_files::{Files, NamedFile};
|
use actix_files::Files;
|
||||||
use actix_web::{
|
use actix_web::{
|
||||||
http::{
|
http::{
|
||||||
header::{self, HeaderValue},
|
header::{self, HeaderValue},
|
||||||
StatusCode,
|
StatusCode,
|
||||||
},
|
},
|
||||||
test::{self, TestRequest},
|
test::{self, TestRequest},
|
||||||
web, App,
|
App,
|
||||||
};
|
};
|
||||||
|
|
||||||
#[actix_web::test]
|
#[actix_web::test]
|
||||||
|
@ -35,31 +35,3 @@ async fn test_utf8_file_contents() {
|
||||||
Some(&HeaderValue::from_static("text/plain")),
|
Some(&HeaderValue::from_static("text/plain")),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[actix_web::test]
|
|
||||||
async fn partial_range_response_encoding() {
|
|
||||||
let srv = test::init_service(App::new().default_service(web::to(|| async {
|
|
||||||
NamedFile::open_async("./tests/test.binary").await.unwrap()
|
|
||||||
})))
|
|
||||||
.await;
|
|
||||||
|
|
||||||
// range request without accept-encoding returns no content-encoding header
|
|
||||||
let req = TestRequest::with_uri("/")
|
|
||||||
.append_header((header::RANGE, "bytes=10-20"))
|
|
||||||
.to_request();
|
|
||||||
let res = test::call_service(&srv, req).await;
|
|
||||||
assert_eq!(res.status(), StatusCode::PARTIAL_CONTENT);
|
|
||||||
assert!(!res.headers().contains_key(header::CONTENT_ENCODING));
|
|
||||||
|
|
||||||
// range request with accept-encoding returns a content-encoding header
|
|
||||||
let req = TestRequest::with_uri("/")
|
|
||||||
.append_header((header::RANGE, "bytes=10-20"))
|
|
||||||
.append_header((header::ACCEPT_ENCODING, "identity"))
|
|
||||||
.to_request();
|
|
||||||
let res = test::call_service(&srv, req).await;
|
|
||||||
assert_eq!(res.status(), StatusCode::PARTIAL_CONTENT);
|
|
||||||
assert_eq!(
|
|
||||||
res.headers().get(header::CONTENT_ENCODING).unwrap(),
|
|
||||||
"identity"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
|
@ -8,6 +8,10 @@
|
||||||
|
|
||||||
- Implement `FromIterator<(HeaderName, HeaderValue)>` for `HeaderMap`.
|
- Implement `FromIterator<(HeaderName, HeaderValue)>` for `HeaderMap`.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Prevent compression of Partial Content.
|
||||||
|
|
||||||
## 3.8.0
|
## 3.8.0
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -70,6 +70,7 @@ impl<B: MessageBody> Encoder<B> {
|
||||||
let should_encode = !(head.headers().contains_key(&CONTENT_ENCODING)
|
let should_encode = !(head.headers().contains_key(&CONTENT_ENCODING)
|
||||||
|| head.status == StatusCode::SWITCHING_PROTOCOLS
|
|| head.status == StatusCode::SWITCHING_PROTOCOLS
|
||||||
|| head.status == StatusCode::NO_CONTENT
|
|| head.status == StatusCode::NO_CONTENT
|
||||||
|
|| head.status == StatusCode::PARTIAL_CONTENT
|
||||||
|| encoding == ContentEncoding::Identity);
|
|| encoding == ContentEncoding::Identity);
|
||||||
|
|
||||||
let body = match body.try_into_bytes() {
|
let body = match body.try_into_bytes() {
|
||||||
|
|
Loading…
Reference in New Issue