Struct actix_web::middleware::NormalizePath[][src]

pub struct NormalizePath(_);

Middleware for normalizing a request’s path so that routes can be matched more flexibly.

Normalization Steps

  • Merges consecutive slashes into one. (For example, /path//one always becomes /path/one.)
  • Appends a trailing slash if one is not present, removes one if present, or keeps trailing slashes as-is, depending on which TrailingSlash variant is supplied to new.

Default Behavior

The default constructor chooses to strip trailing slashes from the end of paths with them (TrailingSlash::Trim). The implication is that route definitions should be defined without trailing slashes or else they will be inaccessible (or vice versa when using the TrailingSlash::Always behavior), as shown in the example tests below.

Examples

use actix_web::{web, middleware, App};

let app = App::new()
    .wrap(middleware::NormalizePath::default())
    .route("/test", web::get().to(|| async { "test" }))
    .route("/unmatchable/", web::get().to(|| async { "unmatchable" }));

use actix_web::http::StatusCode;
use actix_web::test::{call_service, init_service, TestRequest};

let app = init_service(app).await;

let req = TestRequest::with_uri("/test").to_request();
let res = call_service(&app, req).await;
assert_eq!(res.status(), StatusCode::OK);

let req = TestRequest::with_uri("/test/").to_request();
let res = call_service(&app, req).await;
assert_eq!(res.status(), StatusCode::OK);

let req = TestRequest::with_uri("/unmatchable").to_request();
let res = call_service(&app, req).await;
assert_eq!(res.status(), StatusCode::NOT_FOUND);

let req = TestRequest::with_uri("/unmatchable/").to_request();
let res = call_service(&app, req).await;
assert_eq!(res.status(), StatusCode::NOT_FOUND);

Implementations

impl NormalizePath[src]

pub fn new(trailing_slash_style: TrailingSlash) -> Self[src]

Create new NormalizePath middleware with the specified trailing slash style.

Trait Implementations

impl Clone for NormalizePath[src]

impl Copy for NormalizePath[src]

impl Debug for NormalizePath[src]

impl Default for NormalizePath[src]

impl<S, B> Transform<S, ServiceRequest> for NormalizePath where
    S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error>,
    S::Future: 'static, 
[src]

type Response = ServiceResponse<B>

Responses given by the service.

type Error = Error

Errors produced by the service.

type Transform = NormalizePathNormalization<S>

The TransformService value created by this factory

type InitError = ()

Errors produced while building a transform service.

type Future = Ready<Result<Self::Transform, Self::InitError>>

The future response value.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,