mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 08:22:59 +01:00
Merge branch 'master' of github.com:actix/actix-web
This commit is contained in:
commit
89a0a50e14
47
src/app.rs
47
src/app.rs
@ -112,7 +112,29 @@ where
|
|||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Register a middleware.
|
/// Registers middleware, in the form of a middleware component (type),
|
||||||
|
/// that runs during inbound and/or outbound processing in the request
|
||||||
|
/// lifecycle (request -> response), modifying request/response as
|
||||||
|
/// necessary, across all requests managed by the *Application*.
|
||||||
|
///
|
||||||
|
/// Use middleware when you need to read or modify *every* request or response in some way.
|
||||||
|
///
|
||||||
|
/// ```rust
|
||||||
|
/// use actix_service::Service;
|
||||||
|
/// # use futures::Future;
|
||||||
|
/// use actix_web::{middleware, web, App};
|
||||||
|
/// use actix_web::http::{header::CONTENT_TYPE, HeaderValue};
|
||||||
|
///
|
||||||
|
/// fn index() -> &'static str {
|
||||||
|
/// "Welcome!"
|
||||||
|
/// }
|
||||||
|
///
|
||||||
|
/// fn main() {
|
||||||
|
/// let app = App::new()
|
||||||
|
/// .wrap(middleware::Logger::default())
|
||||||
|
/// .route("/index.html", web::get().to(index));
|
||||||
|
/// }
|
||||||
|
/// ```
|
||||||
pub fn wrap<M, B, F>(
|
pub fn wrap<M, B, F>(
|
||||||
self,
|
self,
|
||||||
mw: F,
|
mw: F,
|
||||||
@ -152,7 +174,12 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Register a middleware function.
|
/// Registers middleware, in the form of a closure, that runs during inbound
|
||||||
|
/// and/or outbound processing in the request lifecycle (request -> response),
|
||||||
|
/// modifying request/response as necessary, across all requests managed by
|
||||||
|
/// the *Application*.
|
||||||
|
///
|
||||||
|
/// Use middleware when you need to read or modify *every* request or response in some way.
|
||||||
///
|
///
|
||||||
/// ```rust
|
/// ```rust
|
||||||
/// use actix_service::Service;
|
/// use actix_service::Service;
|
||||||
@ -400,7 +427,13 @@ where
|
|||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Register a middleware.
|
/// Registers middleware, in the form of a middleware component (type),
|
||||||
|
/// that runs during inbound and/or outbound processing in the request
|
||||||
|
/// lifecycle (request -> response), modifying request/response as
|
||||||
|
/// necessary, across all requests managed by the *Route*.
|
||||||
|
///
|
||||||
|
/// Use middleware when you need to read or modify *every* request or response in some way.
|
||||||
|
///
|
||||||
pub fn wrap<M, B1, F>(
|
pub fn wrap<M, B1, F>(
|
||||||
self,
|
self,
|
||||||
mw: F,
|
mw: F,
|
||||||
@ -440,7 +473,13 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Register a middleware function.
|
/// Registers middleware, in the form of a closure, that runs during inbound
|
||||||
|
/// and/or outbound processing in the request lifecycle (request -> response),
|
||||||
|
/// modifying request/response as necessary, across all requests managed by
|
||||||
|
/// the *Route*.
|
||||||
|
///
|
||||||
|
/// Use middleware when you need to read or modify *every* request or response in some way.
|
||||||
|
///
|
||||||
pub fn wrap_fn<B1, F, R>(
|
pub fn wrap_fn<B1, F, R>(
|
||||||
self,
|
self,
|
||||||
mw: F,
|
mw: F,
|
||||||
|
22
src/scope.rs
22
src/scope.rs
@ -200,11 +200,15 @@ where
|
|||||||
self
|
self
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Register a scope level middleware.
|
/// Registers middleware, in the form of a middleware component (type),
|
||||||
|
/// that runs during inbound processing in the request
|
||||||
|
/// lifecycle (request -> response), modifying request as
|
||||||
|
/// necessary, across all requests managed by the *Scope*. Scope-level
|
||||||
|
/// middleware is more limited in what it can modify, relative to Route or
|
||||||
|
/// Application level middleware, in that Scope-level middleware can not modify
|
||||||
|
/// ServiceResponse.
|
||||||
///
|
///
|
||||||
/// This is similar to `App's` middlewares, but middleware get invoked on scope level.
|
/// Use middleware when you need to read or modify *every* request in some way.
|
||||||
/// Scope level middlewares are not allowed to change response
|
|
||||||
/// type (i.e modify response's body).
|
|
||||||
pub fn wrap<M, F>(
|
pub fn wrap<M, F>(
|
||||||
self,
|
self,
|
||||||
mw: F,
|
mw: F,
|
||||||
@ -238,10 +242,12 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Register a scope level middleware function.
|
/// Registers middleware, in the form of a closure, that runs during inbound
|
||||||
///
|
/// processing in the request lifecycle (request -> response), modifying
|
||||||
/// This function accepts instance of `ServiceRequest` type and
|
/// request as necessary, across all requests managed by the *Scope*.
|
||||||
/// mutable reference to the next middleware in chain.
|
/// Scope-level middleware is more limited in what it can modify, relative
|
||||||
|
/// to Route or Application level middleware, in that Scope-level middleware
|
||||||
|
/// can not modify ServiceResponse.
|
||||||
///
|
///
|
||||||
/// ```rust
|
/// ```rust
|
||||||
/// use actix_service::Service;
|
/// use actix_service::Service;
|
||||||
|
Loading…
Reference in New Issue
Block a user