1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-11 01:39:33 +00:00

Fix NormalizePath middleware impl #806

This commit is contained in:
Nikolay Kim 2019-05-01 12:40:56 -07:00
parent 87284f0951
commit 6b34909537
2 changed files with 34 additions and 3 deletions

View file

@ -8,6 +8,10 @@
* Allow to construct `Data` instances to avoid double `Arc` for `Send + Sync` types.
### Fixed
* Fix `NormalizePath` middleware impl #806
## [1.0.0-beta.2] - 2019-04-24

View file

@ -1,6 +1,8 @@
//! `Middleware` to normalize request's URI
use actix_http::http::{HttpTryFrom, PathAndQuery, Uri};
use actix_service::{Service, Transform};
use bytes::Bytes;
use futures::future::{self, FutureResult};
use regex::Regex;
@ -77,7 +79,19 @@ where
let path = self.merge_slash.replace_all(path, "/");
if original_len != path.len() {
head.uri = path.parse().unwrap();
let mut parts = head.uri.clone().into_parts();
let pq = parts.path_and_query.as_ref().unwrap();
let path = if let Some(q) = pq.query() {
Bytes::from(format!("{}?{}", path, q))
} else {
Bytes::from(path.as_ref())
};
parts.path_and_query = Some(PathAndQuery::try_from(path).unwrap());
let uri = Uri::from_parts(parts).unwrap();
req.match_info_mut().get_mut().update(&uri);
req.head_mut().uri = uri;
}
self.service.call(req)
@ -90,8 +104,21 @@ mod tests {
use super::*;
use crate::dev::ServiceRequest;
use crate::test::{block_on, TestRequest};
use crate::HttpResponse;
use crate::test::{block_on, call_service, init_service, TestRequest};
use crate::{web, App, HttpResponse};
#[test]
fn test_wrap() {
let mut app = init_service(
App::new()
.wrap(NormalizePath::default())
.service(web::resource("/v1/something/").to(|| HttpResponse::Ok())),
);
let req = TestRequest::with_uri("/v1//something////").to_request();
let res = call_service(&mut app, req);
assert!(res.status().is_success());
}
#[test]
fn test_in_place_normalization() {