2019-03-02 06:51:32 +00:00
|
|
|
use std::cell::RefCell;
|
2019-04-14 05:25:00 +00:00
|
|
|
use std::fmt;
|
2019-03-02 06:51:32 +00:00
|
|
|
use std::marker::PhantomData;
|
|
|
|
use std::rc::Rc;
|
|
|
|
|
2019-03-03 00:24:14 +00:00
|
|
|
use actix_http::body::{Body, MessageBody};
|
2019-03-09 17:49:11 +00:00
|
|
|
use actix_server_config::ServerConfig;
|
|
|
|
use actix_service::boxed::{self, BoxedNewService};
|
2019-03-02 06:51:32 +00:00
|
|
|
use actix_service::{
|
2019-03-30 14:56:09 +00:00
|
|
|
apply_transform, IntoNewService, IntoTransform, NewService, Transform,
|
2019-03-02 06:51:32 +00:00
|
|
|
};
|
2019-04-13 21:50:54 +00:00
|
|
|
use futures::IntoFuture;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
2019-04-13 21:50:54 +00:00
|
|
|
use crate::app_service::{AppEntry, AppInit, AppRoutingFactory};
|
2019-04-15 14:32:49 +00:00
|
|
|
use crate::config::{AppConfig, AppConfigInner, ServiceConfig};
|
2019-03-17 03:17:27 +00:00
|
|
|
use crate::data::{Data, DataFactory};
|
2019-04-13 21:50:54 +00:00
|
|
|
use crate::dev::ResourceDef;
|
|
|
|
use crate::error::Error;
|
2019-03-02 06:51:32 +00:00
|
|
|
use crate::resource::Resource;
|
2019-03-06 23:47:15 +00:00
|
|
|
use crate::route::Route;
|
|
|
|
use crate::service::{
|
|
|
|
HttpServiceFactory, ServiceFactory, ServiceFactoryWrapper, ServiceRequest,
|
|
|
|
ServiceResponse,
|
|
|
|
};
|
2019-03-02 06:51:32 +00:00
|
|
|
|
2019-04-13 21:50:54 +00:00
|
|
|
type HttpNewService = BoxedNewService<(), ServiceRequest, ServiceResponse, Error, ()>;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
2019-03-03 06:03:45 +00:00
|
|
|
/// Application builder - structure that follows the builder pattern
|
|
|
|
/// for building application instances.
|
2019-04-13 21:50:54 +00:00
|
|
|
pub struct App<T, B> {
|
|
|
|
endpoint: T,
|
|
|
|
services: Vec<Box<ServiceFactory>>,
|
|
|
|
default: Option<Rc<HttpNewService>>,
|
|
|
|
factory_ref: Rc<RefCell<Option<AppRoutingFactory>>>,
|
2019-03-17 03:17:27 +00:00
|
|
|
data: Vec<Box<DataFactory>>,
|
2019-03-09 22:06:24 +00:00
|
|
|
config: AppConfigInner,
|
2019-04-13 21:50:54 +00:00
|
|
|
external: Vec<ResourceDef>,
|
|
|
|
_t: PhantomData<(B)>,
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
|
2019-04-13 21:50:54 +00:00
|
|
|
impl App<AppEntry, Body> {
|
2019-03-17 03:17:27 +00:00
|
|
|
/// Create application builder. Application can be configured with a builder-like pattern.
|
2019-03-02 06:51:32 +00:00
|
|
|
pub fn new() -> Self {
|
2019-04-13 21:50:54 +00:00
|
|
|
let fref = Rc::new(RefCell::new(None));
|
2019-03-02 19:53:05 +00:00
|
|
|
App {
|
2019-04-13 21:50:54 +00:00
|
|
|
endpoint: AppEntry::new(fref.clone()),
|
2019-03-17 03:17:27 +00:00
|
|
|
data: Vec::new(),
|
2019-04-13 21:50:54 +00:00
|
|
|
services: Vec::new(),
|
|
|
|
default: None,
|
|
|
|
factory_ref: fref,
|
2019-03-09 22:06:24 +00:00
|
|
|
config: AppConfigInner::default(),
|
2019-04-13 21:50:54 +00:00
|
|
|
external: Vec::new(),
|
2019-03-02 19:53:05 +00:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-13 21:50:54 +00:00
|
|
|
impl<T, B> App<T, B>
|
2019-03-02 19:53:05 +00:00
|
|
|
where
|
2019-04-13 21:50:54 +00:00
|
|
|
B: MessageBody,
|
2019-03-02 19:53:05 +00:00
|
|
|
T: NewService<
|
2019-04-13 21:50:54 +00:00
|
|
|
Request = ServiceRequest,
|
|
|
|
Response = ServiceResponse<B>,
|
2019-03-10 23:35:38 +00:00
|
|
|
Error = Error,
|
2019-03-02 19:53:05 +00:00
|
|
|
InitError = (),
|
|
|
|
>,
|
|
|
|
{
|
2019-04-10 19:43:31 +00:00
|
|
|
/// Set application data. Application data could be accessed
|
2019-03-17 03:17:27 +00:00
|
|
|
/// by using `Data<T>` extractor where `T` is data type.
|
2019-03-02 06:51:32 +00:00
|
|
|
///
|
|
|
|
/// **Note**: http server accepts an application factory rather than
|
|
|
|
/// an application instance. Http server constructs an application
|
2019-03-17 03:17:27 +00:00
|
|
|
/// instance for each thread, thus application data must be constructed
|
|
|
|
/// multiple times. If you want to share data between different
|
2019-03-02 06:51:32 +00:00
|
|
|
/// threads, a shared object should be used, e.g. `Arc`. Application
|
2019-03-17 03:17:27 +00:00
|
|
|
/// data does not need to be `Send` or `Sync`.
|
2019-03-03 06:11:24 +00:00
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use std::cell::Cell;
|
2019-03-07 19:43:46 +00:00
|
|
|
/// use actix_web::{web, App};
|
2019-03-03 06:11:24 +00:00
|
|
|
///
|
2019-03-17 03:17:27 +00:00
|
|
|
/// struct MyData {
|
2019-03-03 06:11:24 +00:00
|
|
|
/// counter: Cell<usize>,
|
|
|
|
/// }
|
|
|
|
///
|
2019-03-17 03:17:27 +00:00
|
|
|
/// fn index(data: web::Data<MyData>) {
|
|
|
|
/// data.counter.set(data.counter.get() + 1);
|
2019-03-03 06:11:24 +00:00
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let app = App::new()
|
2019-03-17 03:17:27 +00:00
|
|
|
/// .data(MyData{ counter: Cell::new(0) })
|
2019-03-06 23:47:15 +00:00
|
|
|
/// .service(
|
|
|
|
/// web::resource("/index.html").route(
|
|
|
|
/// web::get().to(index)));
|
2019-03-03 06:11:24 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
2019-04-29 16:26:12 +00:00
|
|
|
pub fn data<U: Into<Data<U>> + 'static>(mut self, data: U) -> Self {
|
|
|
|
self.data.push(Box::new(data.into()));
|
2019-03-02 06:51:32 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2019-04-03 22:09:31 +00:00
|
|
|
/// Run external configuration as part of the application building
|
|
|
|
/// process
|
|
|
|
///
|
|
|
|
/// This function is useful for moving parts of configuration to a
|
|
|
|
/// different module or even library. For example,
|
|
|
|
/// some of the resource's configuration could be moved to different module.
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// # extern crate actix_web;
|
|
|
|
/// use actix_web::{web, middleware, App, HttpResponse};
|
|
|
|
///
|
|
|
|
/// // this function could be located in different module
|
2019-04-15 14:32:49 +00:00
|
|
|
/// fn config(cfg: &mut web::ServiceConfig) {
|
2019-04-03 22:09:31 +00:00
|
|
|
/// cfg.service(web::resource("/test")
|
|
|
|
/// .route(web::get().to(|| HttpResponse::Ok()))
|
|
|
|
/// .route(web::head().to(|| HttpResponse::MethodNotAllowed()))
|
|
|
|
/// );
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let app = App::new()
|
|
|
|
/// .wrap(middleware::Logger::default())
|
|
|
|
/// .configure(config) // <- register resources
|
|
|
|
/// .route("/index.html", web::get().to(|| HttpResponse::Ok()));
|
|
|
|
/// }
|
|
|
|
/// ```
|
2019-04-13 21:50:54 +00:00
|
|
|
pub fn configure<F>(mut self, f: F) -> Self
|
2019-04-03 22:09:31 +00:00
|
|
|
where
|
2019-04-15 14:32:49 +00:00
|
|
|
F: Fn(&mut ServiceConfig),
|
2019-04-03 22:09:31 +00:00
|
|
|
{
|
2019-04-15 14:32:49 +00:00
|
|
|
let mut cfg = ServiceConfig::new();
|
2019-04-03 22:09:31 +00:00
|
|
|
f(&mut cfg);
|
|
|
|
self.data.extend(cfg.data);
|
2019-04-13 21:50:54 +00:00
|
|
|
self.services.extend(cfg.services);
|
|
|
|
self.external.extend(cfg.external);
|
|
|
|
self
|
2019-04-03 22:09:31 +00:00
|
|
|
}
|
|
|
|
|
2019-03-06 23:47:15 +00:00
|
|
|
/// Configure route for a specific path.
|
|
|
|
///
|
|
|
|
/// This is a simplified version of the `App::service()` method.
|
2019-03-17 03:17:27 +00:00
|
|
|
/// This method can be used multiple times with same path, in that case
|
2019-03-06 23:47:15 +00:00
|
|
|
/// multiple resources with one route would be registered for same resource path.
|
|
|
|
///
|
|
|
|
/// ```rust
|
2019-03-07 22:01:52 +00:00
|
|
|
/// use actix_web::{web, App, HttpResponse};
|
2019-03-06 23:47:15 +00:00
|
|
|
///
|
2019-03-07 22:01:52 +00:00
|
|
|
/// fn index(data: web::Path<(String, String)>) -> &'static str {
|
2019-03-06 23:47:15 +00:00
|
|
|
/// "Welcome!"
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let app = App::new()
|
|
|
|
/// .route("/test1", web::get().to(index))
|
|
|
|
/// .route("/test2", web::post().to(|| HttpResponse::MethodNotAllowed()));
|
|
|
|
/// }
|
|
|
|
/// ```
|
2019-04-13 21:50:54 +00:00
|
|
|
pub fn route(self, path: &str, mut route: Route) -> Self {
|
2019-03-06 23:47:15 +00:00
|
|
|
self.service(
|
|
|
|
Resource::new(path)
|
|
|
|
.add_guards(route.take_guards())
|
|
|
|
.route(route),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Register http service.
|
2019-03-17 04:35:02 +00:00
|
|
|
///
|
|
|
|
/// Http service is any type that implements `HttpServiceFactory` trait.
|
|
|
|
///
|
|
|
|
/// Actix web provides several services implementations:
|
|
|
|
///
|
|
|
|
/// * *Resource* is an entry in resource table which corresponds to requested URL.
|
|
|
|
/// * *Scope* is a set of resources with common root path.
|
|
|
|
/// * "StaticFiles" is a service for static files support
|
2019-04-13 21:50:54 +00:00
|
|
|
pub fn service<F>(mut self, factory: F) -> Self
|
2019-03-06 06:10:08 +00:00
|
|
|
where
|
2019-04-13 21:50:54 +00:00
|
|
|
F: HttpServiceFactory + 'static,
|
2019-03-06 06:10:08 +00:00
|
|
|
{
|
2019-04-13 21:50:54 +00:00
|
|
|
self.services
|
|
|
|
.push(Box::new(ServiceFactoryWrapper::new(factory)));
|
|
|
|
self
|
2019-03-06 06:10:08 +00:00
|
|
|
}
|
|
|
|
|
2019-03-04 05:02:01 +00:00
|
|
|
/// Set server host name.
|
|
|
|
///
|
2019-03-17 03:17:27 +00:00
|
|
|
/// Host name is used by application router as a hostname for url
|
2019-03-04 05:02:01 +00:00
|
|
|
/// generation. Check [ConnectionInfo](./dev/struct.ConnectionInfo.
|
|
|
|
/// html#method.host) documentation for more information.
|
|
|
|
///
|
|
|
|
/// By default host name is set to a "localhost" value.
|
2019-03-09 18:53:00 +00:00
|
|
|
pub fn hostname(mut self, val: &str) -> Self {
|
2019-03-09 22:06:24 +00:00
|
|
|
self.config.host = val.to_owned();
|
2019-03-04 05:02:01 +00:00
|
|
|
self
|
|
|
|
}
|
2019-03-28 19:32:59 +00:00
|
|
|
|
2019-04-14 05:25:00 +00:00
|
|
|
/// Default service to be used if no matching resource could be found.
|
|
|
|
///
|
|
|
|
/// It is possible to use services like `Resource`, `Route`.
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use actix_web::{web, App, HttpResponse};
|
|
|
|
///
|
|
|
|
/// fn index() -> &'static str {
|
|
|
|
/// "Welcome!"
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let app = App::new()
|
|
|
|
/// .service(
|
|
|
|
/// web::resource("/index.html").route(web::get().to(index)))
|
|
|
|
/// .default_service(
|
|
|
|
/// web::route().to(|| HttpResponse::NotFound()));
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// It is also possible to use static files as default service.
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use actix_files::Files;
|
|
|
|
/// use actix_web::{web, App, HttpResponse};
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let app = App::new()
|
|
|
|
/// .service(
|
|
|
|
/// web::resource("/index.html").to(|| HttpResponse::Ok()))
|
|
|
|
/// .default_service(
|
|
|
|
/// Files::new("", "./static")
|
|
|
|
/// );
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
pub fn default_service<F, U>(mut self, f: F) -> Self
|
2019-03-28 19:32:59 +00:00
|
|
|
where
|
2019-04-14 05:25:00 +00:00
|
|
|
F: IntoNewService<U>,
|
2019-04-13 21:50:54 +00:00
|
|
|
U: NewService<
|
|
|
|
Request = ServiceRequest,
|
|
|
|
Response = ServiceResponse,
|
|
|
|
Error = Error,
|
|
|
|
> + 'static,
|
2019-04-14 05:25:00 +00:00
|
|
|
U::InitError: fmt::Debug,
|
2019-03-28 19:32:59 +00:00
|
|
|
{
|
2019-04-13 21:50:54 +00:00
|
|
|
// create and configure default resource
|
|
|
|
self.default = Some(Rc::new(boxed::new_service(
|
2019-04-14 05:25:00 +00:00
|
|
|
f.into_new_service().map_init_err(|e| {
|
|
|
|
log::error!("Can not construct default service: {:?}", e)
|
|
|
|
}),
|
2019-04-13 21:50:54 +00:00
|
|
|
)));
|
2019-03-28 19:32:59 +00:00
|
|
|
|
2019-04-13 21:50:54 +00:00
|
|
|
self
|
2019-03-28 19:32:59 +00:00
|
|
|
}
|
2019-03-02 19:53:05 +00:00
|
|
|
|
2019-04-13 21:50:54 +00:00
|
|
|
/// Register an external resource.
|
2019-04-03 22:09:31 +00:00
|
|
|
///
|
2019-04-13 21:50:54 +00:00
|
|
|
/// External resources are useful for URL generation purposes only
|
|
|
|
/// and are never considered for matching at request time. Calls to
|
|
|
|
/// `HttpRequest::url_for()` will work as expected.
|
2019-04-03 22:09:31 +00:00
|
|
|
///
|
|
|
|
/// ```rust
|
2019-04-13 21:50:54 +00:00
|
|
|
/// use actix_web::{web, App, HttpRequest, HttpResponse, Result};
|
2019-04-03 22:09:31 +00:00
|
|
|
///
|
2019-04-13 21:50:54 +00:00
|
|
|
/// fn index(req: HttpRequest) -> Result<HttpResponse> {
|
|
|
|
/// let url = req.url_for("youtube", &["asdlkjqme"])?;
|
|
|
|
/// assert_eq!(url.as_str(), "https://youtube.com/watch/asdlkjqme");
|
|
|
|
/// Ok(HttpResponse::Ok().into())
|
2019-04-03 22:09:31 +00:00
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let app = App::new()
|
2019-04-13 21:50:54 +00:00
|
|
|
/// .service(web::resource("/index.html").route(
|
|
|
|
/// web::get().to(index)))
|
|
|
|
/// .external_resource("youtube", "https://youtube.com/watch/{video_id}");
|
2019-04-03 22:09:31 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
2019-04-13 21:50:54 +00:00
|
|
|
pub fn external_resource<N, U>(mut self, name: N, url: U) -> Self
|
2019-04-03 22:09:31 +00:00
|
|
|
where
|
2019-04-13 21:50:54 +00:00
|
|
|
N: AsRef<str>,
|
|
|
|
U: AsRef<str>,
|
2019-04-03 22:09:31 +00:00
|
|
|
{
|
2019-04-13 21:50:54 +00:00
|
|
|
let mut rdef = ResourceDef::new(url.as_ref());
|
|
|
|
*rdef.name_mut() = name.as_ref().to_string();
|
|
|
|
self.external.push(rdef);
|
2019-04-03 22:09:31 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2019-04-13 21:50:54 +00:00
|
|
|
/// 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*.
|
2019-03-04 05:02:01 +00:00
|
|
|
///
|
2019-04-29 16:26:12 +00:00
|
|
|
/// Use middleware when you need to read or modify *every* request or
|
2019-04-29 16:14:36 +00:00
|
|
|
/// response in some way.
|
|
|
|
///
|
2019-04-29 16:26:12 +00:00
|
|
|
/// Notice that the keyword for registering middleware is `wrap`. As you
|
2019-04-29 16:14:36 +00:00
|
|
|
/// register middleware using `wrap` in the App builder, imagine wrapping
|
|
|
|
/// layers around an inner App. The first middleware layer exposed to a
|
|
|
|
/// Request is the outermost layer-- the *last* registered in
|
2019-04-29 16:26:12 +00:00
|
|
|
/// the builder chain. Consequently, the *first* middleware registered
|
2019-04-29 16:14:36 +00:00
|
|
|
/// in the builder chain is the *last* to execute during request processing.
|
2019-03-04 05:02:01 +00:00
|
|
|
///
|
|
|
|
/// ```rust
|
2019-04-13 21:50:54 +00:00
|
|
|
/// use actix_service::Service;
|
|
|
|
/// # use futures::Future;
|
|
|
|
/// use actix_web::{middleware, web, App};
|
|
|
|
/// use actix_web::http::{header::CONTENT_TYPE, HeaderValue};
|
2019-03-04 05:02:01 +00:00
|
|
|
///
|
2019-04-13 21:50:54 +00:00
|
|
|
/// fn index() -> &'static str {
|
2019-03-06 23:47:15 +00:00
|
|
|
/// "Welcome!"
|
2019-03-04 05:02:01 +00:00
|
|
|
/// }
|
2019-03-02 06:51:32 +00:00
|
|
|
///
|
|
|
|
/// fn main() {
|
2019-03-03 06:03:45 +00:00
|
|
|
/// let app = App::new()
|
2019-04-13 21:50:54 +00:00
|
|
|
/// .wrap(middleware::Logger::default())
|
|
|
|
/// .route("/index.html", web::get().to(index));
|
2019-03-02 06:51:32 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
2019-03-25 20:02:10 +00:00
|
|
|
pub fn wrap<M, B1, F>(
|
2019-03-02 06:51:32 +00:00
|
|
|
self,
|
|
|
|
mw: F,
|
2019-04-13 21:50:54 +00:00
|
|
|
) -> App<
|
2019-03-02 06:51:32 +00:00
|
|
|
impl NewService<
|
2019-04-13 21:50:54 +00:00
|
|
|
Request = ServiceRequest,
|
2019-03-02 06:51:32 +00:00
|
|
|
Response = ServiceResponse<B1>,
|
2019-03-10 23:35:38 +00:00
|
|
|
Error = Error,
|
2019-03-02 06:51:32 +00:00
|
|
|
InitError = (),
|
|
|
|
>,
|
2019-04-13 21:50:54 +00:00
|
|
|
B1,
|
2019-03-02 06:51:32 +00:00
|
|
|
>
|
|
|
|
where
|
2019-03-05 05:37:57 +00:00
|
|
|
M: Transform<
|
2019-03-02 06:51:32 +00:00
|
|
|
T::Service,
|
2019-04-13 21:50:54 +00:00
|
|
|
Request = ServiceRequest,
|
2019-03-02 06:51:32 +00:00
|
|
|
Response = ServiceResponse<B1>,
|
2019-03-10 23:35:38 +00:00
|
|
|
Error = Error,
|
2019-03-02 06:51:32 +00:00
|
|
|
InitError = (),
|
|
|
|
>,
|
|
|
|
B1: MessageBody,
|
2019-03-09 17:49:11 +00:00
|
|
|
F: IntoTransform<M, T::Service>,
|
2019-03-02 06:51:32 +00:00
|
|
|
{
|
2019-03-30 14:56:09 +00:00
|
|
|
let endpoint = apply_transform(mw, self.endpoint);
|
2019-04-13 21:50:54 +00:00
|
|
|
App {
|
2019-03-02 06:51:32 +00:00
|
|
|
endpoint,
|
2019-03-17 03:17:27 +00:00
|
|
|
data: self.data,
|
2019-03-02 06:51:32 +00:00
|
|
|
services: self.services,
|
|
|
|
default: self.default,
|
|
|
|
factory_ref: self.factory_ref,
|
2019-03-09 22:06:24 +00:00
|
|
|
config: self.config,
|
|
|
|
external: self.external,
|
2019-03-02 06:51:32 +00:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-01 18:52:05 +00:00
|
|
|
/// 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
|
2019-04-13 21:50:54 +00:00
|
|
|
/// the *Application*.
|
2019-04-01 18:52:05 +00:00
|
|
|
///
|
|
|
|
/// Use middleware when you need to read or modify *every* request or response in some way.
|
|
|
|
///
|
2019-04-13 21:50:54 +00:00
|
|
|
/// ```rust
|
|
|
|
/// use actix_service::Service;
|
|
|
|
/// # use futures::Future;
|
|
|
|
/// use actix_web::{web, App};
|
|
|
|
/// use actix_web::http::{header::CONTENT_TYPE, HeaderValue};
|
|
|
|
///
|
|
|
|
/// fn index() -> &'static str {
|
|
|
|
/// "Welcome!"
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let app = App::new()
|
|
|
|
/// .wrap_fn(|req, srv|
|
|
|
|
/// srv.call(req).map(|mut res| {
|
|
|
|
/// res.headers_mut().insert(
|
|
|
|
/// CONTENT_TYPE, HeaderValue::from_static("text/plain"),
|
|
|
|
/// );
|
|
|
|
/// res
|
|
|
|
/// }))
|
|
|
|
/// .route("/index.html", web::get().to(index));
|
|
|
|
/// }
|
|
|
|
/// ```
|
2019-03-25 20:43:02 +00:00
|
|
|
pub fn wrap_fn<B1, F, R>(
|
|
|
|
self,
|
|
|
|
mw: F,
|
2019-04-13 21:50:54 +00:00
|
|
|
) -> App<
|
2019-03-25 20:43:02 +00:00
|
|
|
impl NewService<
|
2019-04-13 21:50:54 +00:00
|
|
|
Request = ServiceRequest,
|
2019-03-25 20:43:02 +00:00
|
|
|
Response = ServiceResponse<B1>,
|
|
|
|
Error = Error,
|
|
|
|
InitError = (),
|
|
|
|
>,
|
2019-04-13 21:50:54 +00:00
|
|
|
B1,
|
2019-03-25 20:43:02 +00:00
|
|
|
>
|
|
|
|
where
|
|
|
|
B1: MessageBody,
|
2019-04-13 21:50:54 +00:00
|
|
|
F: FnMut(ServiceRequest, &mut T::Service) -> R + Clone,
|
2019-03-25 20:43:02 +00:00
|
|
|
R: IntoFuture<Item = ServiceResponse<B1>, Error = Error>,
|
|
|
|
{
|
|
|
|
self.wrap(mw)
|
|
|
|
}
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
|
2019-04-13 21:50:54 +00:00
|
|
|
impl<T, B> IntoNewService<AppInit<T, B>, ServerConfig> for App<T, B>
|
2019-03-02 06:51:32 +00:00
|
|
|
where
|
2019-04-13 21:50:54 +00:00
|
|
|
B: MessageBody,
|
2019-03-02 06:51:32 +00:00
|
|
|
T: NewService<
|
2019-03-09 17:49:11 +00:00
|
|
|
Request = ServiceRequest,
|
2019-04-13 21:50:54 +00:00
|
|
|
Response = ServiceResponse<B>,
|
2019-03-10 23:35:38 +00:00
|
|
|
Error = Error,
|
2019-03-02 19:53:05 +00:00
|
|
|
InitError = (),
|
|
|
|
>,
|
2019-03-02 06:51:32 +00:00
|
|
|
{
|
2019-04-13 21:50:54 +00:00
|
|
|
fn into_new_service(self) -> AppInit<T, B> {
|
2019-03-02 19:53:05 +00:00
|
|
|
AppInit {
|
2019-05-05 02:43:49 +00:00
|
|
|
data: Rc::new(self.data),
|
2019-03-09 17:49:11 +00:00
|
|
|
endpoint: self.endpoint,
|
2019-05-05 02:43:49 +00:00
|
|
|
services: Rc::new(RefCell::new(self.services)),
|
2019-03-09 22:06:24 +00:00
|
|
|
external: RefCell::new(self.external),
|
2019-03-09 17:49:11 +00:00
|
|
|
default: self.default,
|
|
|
|
factory_ref: self.factory_ref,
|
2019-03-09 22:06:24 +00:00
|
|
|
config: RefCell::new(AppConfig(Rc::new(self.config))),
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
2019-03-02 19:53:05 +00:00
|
|
|
}
|
|
|
|
}
|
2019-03-04 05:40:03 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2019-03-09 17:49:11 +00:00
|
|
|
use actix_service::Service;
|
2019-04-24 04:21:49 +00:00
|
|
|
use bytes::Bytes;
|
2019-03-25 20:43:02 +00:00
|
|
|
use futures::{Future, IntoFuture};
|
2019-03-09 17:49:11 +00:00
|
|
|
|
2019-03-04 05:40:03 +00:00
|
|
|
use super::*;
|
2019-03-25 20:43:02 +00:00
|
|
|
use crate::http::{header, HeaderValue, Method, StatusCode};
|
|
|
|
use crate::service::{ServiceRequest, ServiceResponse};
|
2019-04-29 16:34:14 +00:00
|
|
|
use crate::test::{
|
|
|
|
block_fn, block_on, call_service, init_service, read_body, TestRequest,
|
|
|
|
};
|
2019-04-24 04:21:49 +00:00
|
|
|
use crate::{web, Error, HttpRequest, HttpResponse};
|
2019-03-04 05:40:03 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_default_resource() {
|
2019-03-06 23:47:15 +00:00
|
|
|
let mut srv = init_service(
|
|
|
|
App::new().service(web::resource("/test").to(|| HttpResponse::Ok())),
|
2019-03-06 03:03:59 +00:00
|
|
|
);
|
2019-03-04 05:40:03 +00:00
|
|
|
let req = TestRequest::with_uri("/test").to_request();
|
2019-04-29 16:34:14 +00:00
|
|
|
let resp = block_fn(|| srv.call(req)).unwrap();
|
2019-03-04 05:40:03 +00:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
|
|
|
|
let req = TestRequest::with_uri("/blah").to_request();
|
2019-03-04 21:25:35 +00:00
|
|
|
let resp = block_on(srv.call(req)).unwrap();
|
2019-03-04 05:40:03 +00:00
|
|
|
assert_eq!(resp.status(), StatusCode::NOT_FOUND);
|
|
|
|
|
2019-03-06 23:47:15 +00:00
|
|
|
let mut srv = init_service(
|
2019-03-06 03:03:59 +00:00
|
|
|
App::new()
|
2019-03-06 23:47:15 +00:00
|
|
|
.service(web::resource("/test").to(|| HttpResponse::Ok()))
|
|
|
|
.service(
|
|
|
|
web::resource("/test2")
|
2019-04-14 05:25:00 +00:00
|
|
|
.default_service(|r: ServiceRequest| {
|
|
|
|
r.into_response(HttpResponse::Created())
|
|
|
|
})
|
2019-03-06 23:47:15 +00:00
|
|
|
.route(web::get().to(|| HttpResponse::Ok())),
|
|
|
|
)
|
2019-04-14 05:25:00 +00:00
|
|
|
.default_service(|r: ServiceRequest| {
|
|
|
|
r.into_response(HttpResponse::MethodNotAllowed())
|
|
|
|
}),
|
2019-03-06 03:03:59 +00:00
|
|
|
);
|
2019-03-04 05:40:03 +00:00
|
|
|
|
|
|
|
let req = TestRequest::with_uri("/blah").to_request();
|
2019-03-04 21:25:35 +00:00
|
|
|
let resp = block_on(srv.call(req)).unwrap();
|
2019-03-04 05:40:03 +00:00
|
|
|
assert_eq!(resp.status(), StatusCode::METHOD_NOT_ALLOWED);
|
2019-03-04 21:25:35 +00:00
|
|
|
|
|
|
|
let req = TestRequest::with_uri("/test2").to_request();
|
|
|
|
let resp = block_on(srv.call(req)).unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
|
|
|
|
let req = TestRequest::with_uri("/test2")
|
|
|
|
.method(Method::POST)
|
|
|
|
.to_request();
|
|
|
|
let resp = block_on(srv.call(req)).unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::CREATED);
|
2019-03-04 05:40:03 +00:00
|
|
|
}
|
|
|
|
|
2019-05-05 02:43:49 +00:00
|
|
|
// #[test]
|
|
|
|
// fn test_data_factory() {
|
|
|
|
// let mut srv =
|
|
|
|
// init_service(App::new().data_factory(|| Ok::<_, ()>(10usize)).service(
|
|
|
|
// web::resource("/").to(|_: web::Data<usize>| HttpResponse::Ok()),
|
|
|
|
// ));
|
|
|
|
// let req = TestRequest::default().to_request();
|
|
|
|
// let resp = block_on(srv.call(req)).unwrap();
|
|
|
|
// assert_eq!(resp.status(), StatusCode::OK);
|
2019-03-04 05:40:03 +00:00
|
|
|
|
2019-05-05 02:43:49 +00:00
|
|
|
// let mut srv =
|
|
|
|
// init_service(App::new().data_factory(|| Ok::<_, ()>(10u32)).service(
|
|
|
|
// web::resource("/").to(|_: web::Data<usize>| HttpResponse::Ok()),
|
|
|
|
// ));
|
|
|
|
// let req = TestRequest::default().to_request();
|
|
|
|
// let resp = block_on(srv.call(req)).unwrap();
|
|
|
|
// assert_eq!(resp.status(), StatusCode::INTERNAL_SERVER_ERROR);
|
|
|
|
// }
|
2019-03-25 20:43:02 +00:00
|
|
|
|
2019-04-13 21:50:54 +00:00
|
|
|
fn md<S, B>(
|
|
|
|
req: ServiceRequest,
|
2019-03-25 20:43:02 +00:00
|
|
|
srv: &mut S,
|
|
|
|
) -> impl IntoFuture<Item = ServiceResponse<B>, Error = Error>
|
|
|
|
where
|
|
|
|
S: Service<
|
2019-04-13 21:50:54 +00:00
|
|
|
Request = ServiceRequest,
|
2019-03-25 20:43:02 +00:00
|
|
|
Response = ServiceResponse<B>,
|
|
|
|
Error = Error,
|
|
|
|
>,
|
|
|
|
{
|
|
|
|
srv.call(req).map(|mut res| {
|
|
|
|
res.headers_mut()
|
|
|
|
.insert(header::CONTENT_TYPE, HeaderValue::from_static("0001"));
|
|
|
|
res
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_wrap() {
|
|
|
|
let mut srv = init_service(
|
|
|
|
App::new()
|
|
|
|
.wrap(md)
|
|
|
|
.route("/test", web::get().to(|| HttpResponse::Ok())),
|
|
|
|
);
|
|
|
|
let req = TestRequest::with_uri("/test").to_request();
|
2019-04-15 14:44:07 +00:00
|
|
|
let resp = call_service(&mut srv, req);
|
2019-03-25 20:43:02 +00:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
assert_eq!(
|
|
|
|
resp.headers().get(header::CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("0001")
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_router_wrap() {
|
|
|
|
let mut srv = init_service(
|
|
|
|
App::new()
|
|
|
|
.route("/test", web::get().to(|| HttpResponse::Ok()))
|
|
|
|
.wrap(md),
|
|
|
|
);
|
|
|
|
let req = TestRequest::with_uri("/test").to_request();
|
2019-04-15 14:44:07 +00:00
|
|
|
let resp = call_service(&mut srv, req);
|
2019-03-25 20:43:02 +00:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
assert_eq!(
|
|
|
|
resp.headers().get(header::CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("0001")
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_wrap_fn() {
|
|
|
|
let mut srv = init_service(
|
|
|
|
App::new()
|
|
|
|
.wrap_fn(|req, srv| {
|
|
|
|
srv.call(req).map(|mut res| {
|
|
|
|
res.headers_mut().insert(
|
|
|
|
header::CONTENT_TYPE,
|
|
|
|
HeaderValue::from_static("0001"),
|
|
|
|
);
|
|
|
|
res
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.service(web::resource("/test").to(|| HttpResponse::Ok())),
|
|
|
|
);
|
|
|
|
let req = TestRequest::with_uri("/test").to_request();
|
2019-04-15 14:44:07 +00:00
|
|
|
let resp = call_service(&mut srv, req);
|
2019-03-25 20:43:02 +00:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
assert_eq!(
|
|
|
|
resp.headers().get(header::CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("0001")
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_router_wrap_fn() {
|
|
|
|
let mut srv = init_service(
|
|
|
|
App::new()
|
|
|
|
.route("/test", web::get().to(|| HttpResponse::Ok()))
|
|
|
|
.wrap_fn(|req, srv| {
|
|
|
|
srv.call(req).map(|mut res| {
|
|
|
|
res.headers_mut().insert(
|
|
|
|
header::CONTENT_TYPE,
|
|
|
|
HeaderValue::from_static("0001"),
|
|
|
|
);
|
|
|
|
res
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
let req = TestRequest::with_uri("/test").to_request();
|
2019-04-15 14:44:07 +00:00
|
|
|
let resp = call_service(&mut srv, req);
|
2019-03-25 20:43:02 +00:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
assert_eq!(
|
|
|
|
resp.headers().get(header::CONTENT_TYPE).unwrap(),
|
|
|
|
HeaderValue::from_static("0001")
|
|
|
|
);
|
|
|
|
}
|
2019-04-24 04:21:49 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_external_resource() {
|
|
|
|
let mut srv = init_service(
|
|
|
|
App::new()
|
|
|
|
.external_resource("youtube", "https://youtube.com/watch/{video_id}")
|
|
|
|
.route(
|
|
|
|
"/test",
|
|
|
|
web::get().to(|req: HttpRequest| {
|
|
|
|
HttpResponse::Ok().body(format!(
|
|
|
|
"{}",
|
|
|
|
req.url_for("youtube", &["12345"]).unwrap()
|
|
|
|
))
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
let req = TestRequest::with_uri("/test").to_request();
|
|
|
|
let resp = call_service(&mut srv, req);
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
let body = read_body(resp);
|
|
|
|
assert_eq!(body, Bytes::from_static(b"https://youtube.com/watch/12345"));
|
|
|
|
}
|
2019-03-04 05:40:03 +00:00
|
|
|
}
|