2019-03-02 06:51:32 +00:00
|
|
|
use std::cell::RefCell;
|
|
|
|
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-09 17:49:11 +00:00
|
|
|
ApplyTransform, IntoNewService, IntoTransform, NewService, Transform,
|
2019-03-02 06:51:32 +00:00
|
|
|
};
|
2019-03-09 17:49:11 +00:00
|
|
|
use futures::IntoFuture;
|
2019-03-02 06:51:32 +00:00
|
|
|
|
2019-03-09 17:49:11 +00:00
|
|
|
use crate::app_service::{AppChain, AppEntry, AppInit, AppRouting, AppRoutingFactory};
|
2019-03-09 22:06:24 +00:00
|
|
|
use crate::config::{AppConfig, AppConfigInner};
|
2019-03-17 03:17:27 +00:00
|
|
|
use crate::data::{Data, DataFactory};
|
2019-03-10 23:35:38 +00:00
|
|
|
use crate::dev::{PayloadStream, 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-03-10 23:35:38 +00:00
|
|
|
type HttpNewService<P> =
|
|
|
|
BoxedNewService<(), ServiceRequest<P>, 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-03-02 19:53:05 +00:00
|
|
|
pub struct App<P, T>
|
|
|
|
where
|
2019-03-09 17:49:11 +00:00
|
|
|
T: NewService<Request = ServiceRequest, Response = ServiceRequest<P>>,
|
2019-03-02 19:53:05 +00:00
|
|
|
{
|
|
|
|
chain: T,
|
2019-03-17 03:17:27 +00:00
|
|
|
data: Vec<Box<DataFactory>>,
|
2019-03-09 22:06:24 +00:00
|
|
|
config: AppConfigInner,
|
2019-03-02 19:53:05 +00:00
|
|
|
_t: PhantomData<(P,)>,
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
|
2019-03-02 19:53:05 +00:00
|
|
|
impl App<PayloadStream, AppChain> {
|
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-03-02 19:53:05 +00:00
|
|
|
App {
|
|
|
|
chain: AppChain,
|
2019-03-17 03:17:27 +00:00
|
|
|
data: Vec::new(),
|
2019-03-09 22:06:24 +00:00
|
|
|
config: AppConfigInner::default(),
|
2019-03-02 19:53:05 +00:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-02 19:53:05 +00:00
|
|
|
impl<P, T> App<P, T>
|
|
|
|
where
|
|
|
|
P: 'static,
|
|
|
|
T: NewService<
|
2019-03-09 17:49:11 +00:00
|
|
|
Request = ServiceRequest,
|
2019-03-02 19:53:05 +00:00
|
|
|
Response = ServiceRequest<P>,
|
2019-03-10 23:35:38 +00:00
|
|
|
Error = Error,
|
2019-03-02 19:53:05 +00:00
|
|
|
InitError = (),
|
|
|
|
>,
|
|
|
|
{
|
2019-03-17 03:17:27 +00:00
|
|
|
/// Set application data. Applicatin data could be accessed
|
|
|
|
/// 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-03-17 03:17:27 +00:00
|
|
|
pub fn data<S: 'static>(mut self, data: S) -> Self {
|
|
|
|
self.data.push(Box::new(Data::new(data)));
|
2019-03-02 06:51:32 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2019-03-17 03:17:27 +00:00
|
|
|
/// Set application data factory. This function is
|
|
|
|
/// similar to `.data()` but it accepts data factory. Data object get
|
2019-03-02 06:51:32 +00:00
|
|
|
/// constructed asynchronously during application initialization.
|
2019-03-17 03:17:27 +00:00
|
|
|
pub fn data_factory<F, Out>(mut self, data: F) -> Self
|
2019-03-02 06:51:32 +00:00
|
|
|
where
|
|
|
|
F: Fn() -> Out + 'static,
|
|
|
|
Out: IntoFuture + 'static,
|
|
|
|
Out::Error: std::fmt::Debug,
|
|
|
|
{
|
2019-03-17 03:17:27 +00:00
|
|
|
self.data.push(Box::new(data));
|
2019-03-02 06:51:32 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2019-03-02 19:53:05 +00:00
|
|
|
/// Register a middleware.
|
2019-03-03 03:19:56 +00:00
|
|
|
pub fn middleware<M, B, F>(
|
2019-03-02 19:53:05 +00:00
|
|
|
self,
|
|
|
|
mw: F,
|
|
|
|
) -> AppRouter<
|
|
|
|
T,
|
|
|
|
P,
|
2019-03-03 03:19:56 +00:00
|
|
|
B,
|
2019-03-02 19:53:05 +00:00
|
|
|
impl NewService<
|
2019-03-09 17:49:11 +00:00
|
|
|
Request = ServiceRequest<P>,
|
2019-03-03 03:19:56 +00:00
|
|
|
Response = ServiceResponse<B>,
|
2019-03-10 23:35:38 +00:00
|
|
|
Error = Error,
|
2019-03-02 19:53:05 +00:00
|
|
|
InitError = (),
|
|
|
|
>,
|
|
|
|
>
|
|
|
|
where
|
2019-03-05 05:37:57 +00:00
|
|
|
M: Transform<
|
2019-03-03 16:24:09 +00:00
|
|
|
AppRouting<P>,
|
2019-03-09 17:49:11 +00:00
|
|
|
Request = ServiceRequest<P>,
|
2019-03-03 03:19:56 +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-09 17:49:11 +00:00
|
|
|
F: IntoTransform<M, AppRouting<P>>,
|
2019-03-02 19:53:05 +00:00
|
|
|
{
|
|
|
|
let fref = Rc::new(RefCell::new(None));
|
2019-03-05 05:37:57 +00:00
|
|
|
let endpoint = ApplyTransform::new(mw, AppEntry::new(fref.clone()));
|
2019-03-02 19:53:05 +00:00
|
|
|
AppRouter {
|
|
|
|
endpoint,
|
|
|
|
chain: self.chain,
|
2019-03-17 03:17:27 +00:00
|
|
|
data: self.data,
|
2019-03-02 19:53:05 +00:00
|
|
|
services: Vec::new(),
|
|
|
|
default: None,
|
|
|
|
factory_ref: fref,
|
2019-03-09 22:06:24 +00:00
|
|
|
config: self.config,
|
|
|
|
external: Vec::new(),
|
2019-03-02 19:53:05 +00:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Register a request modifier. It can modify any request parameters
|
2019-03-17 04:35:02 +00:00
|
|
|
/// including payload stream type.
|
2019-03-02 19:53:05 +00:00
|
|
|
pub fn chain<C, F, P1>(
|
|
|
|
self,
|
|
|
|
chain: C,
|
|
|
|
) -> App<
|
|
|
|
P1,
|
|
|
|
impl NewService<
|
2019-03-09 17:49:11 +00:00
|
|
|
Request = ServiceRequest,
|
2019-03-02 19:53:05 +00:00
|
|
|
Response = ServiceRequest<P1>,
|
2019-03-10 23:35:38 +00:00
|
|
|
Error = Error,
|
2019-03-02 19:53:05 +00:00
|
|
|
InitError = (),
|
|
|
|
>,
|
|
|
|
>
|
|
|
|
where
|
|
|
|
C: NewService<
|
2019-03-09 17:49:11 +00:00
|
|
|
Request = ServiceRequest<P>,
|
2019-03-02 19:53:05 +00:00
|
|
|
Response = ServiceRequest<P1>,
|
2019-03-10 23:35:38 +00:00
|
|
|
Error = Error,
|
2019-03-02 19:53:05 +00:00
|
|
|
InitError = (),
|
|
|
|
>,
|
2019-03-09 17:49:11 +00:00
|
|
|
F: IntoNewService<C>,
|
2019-03-02 19:53:05 +00:00
|
|
|
{
|
|
|
|
let chain = self.chain.and_then(chain.into_new_service());
|
2019-03-02 06:51:32 +00:00
|
|
|
App {
|
2019-03-02 19:53:05 +00:00
|
|
|
chain,
|
2019-03-17 03:17:27 +00:00
|
|
|
data: self.data,
|
2019-03-09 22:06:24 +00:00
|
|
|
config: self.config,
|
2019-03-02 19:53:05 +00:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
2019-03-04 05:02:01 +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()));
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
pub fn route(
|
|
|
|
self,
|
|
|
|
path: &str,
|
|
|
|
mut route: Route<P>,
|
|
|
|
) -> AppRouter<T, P, Body, AppEntry<P>> {
|
|
|
|
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-03-06 06:10:08 +00:00
|
|
|
pub fn service<F>(self, service: F) -> AppRouter<T, P, Body, AppEntry<P>>
|
|
|
|
where
|
|
|
|
F: HttpServiceFactory<P> + 'static,
|
|
|
|
{
|
|
|
|
let fref = Rc::new(RefCell::new(None));
|
2019-03-06 23:47:15 +00:00
|
|
|
|
2019-03-06 06:10:08 +00:00
|
|
|
AppRouter {
|
|
|
|
chain: self.chain,
|
|
|
|
default: None,
|
|
|
|
endpoint: AppEntry::new(fref.clone()),
|
|
|
|
factory_ref: fref,
|
2019-03-17 03:17:27 +00:00
|
|
|
data: self.data,
|
2019-03-09 22:06:24 +00:00
|
|
|
config: self.config,
|
2019-03-06 23:47:15 +00:00
|
|
|
services: vec![Box::new(ServiceFactoryWrapper::new(service))],
|
2019-03-09 22:06:24 +00:00
|
|
|
external: Vec::new(),
|
2019-03-06 06:10:08 +00:00
|
|
|
_t: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
|
2019-03-03 22:45:56 +00:00
|
|
|
/// Application router builder - Structure that follows the builder pattern
|
|
|
|
/// for building application instances.
|
2019-03-02 19:53:05 +00:00
|
|
|
pub struct AppRouter<C, P, B, T> {
|
|
|
|
chain: C,
|
|
|
|
endpoint: T,
|
2019-03-06 23:47:15 +00:00
|
|
|
services: Vec<Box<ServiceFactory<P>>>,
|
|
|
|
default: Option<Rc<HttpNewService<P>>>,
|
2019-03-03 16:24:09 +00:00
|
|
|
factory_ref: Rc<RefCell<Option<AppRoutingFactory<P>>>>,
|
2019-03-17 03:17:27 +00:00
|
|
|
data: Vec<Box<DataFactory>>,
|
2019-03-09 22:06:24 +00:00
|
|
|
config: AppConfigInner,
|
|
|
|
external: Vec<ResourceDef>,
|
2019-03-02 19:53:05 +00:00
|
|
|
_t: PhantomData<(P, B)>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<C, P, B, T> AppRouter<C, P, B, T>
|
2019-03-02 06:51:32 +00:00
|
|
|
where
|
|
|
|
P: 'static,
|
|
|
|
B: MessageBody,
|
|
|
|
T: NewService<
|
2019-03-09 17:49:11 +00:00
|
|
|
Request = ServiceRequest<P>,
|
2019-03-02 06:51:32 +00:00
|
|
|
Response = ServiceResponse<B>,
|
2019-03-10 23:35:38 +00:00
|
|
|
Error = Error,
|
2019-03-02 06:51:32 +00:00
|
|
|
InitError = (),
|
|
|
|
>,
|
|
|
|
{
|
2019-03-06 23:47:15 +00:00
|
|
|
/// Configure route for a specific path.
|
2019-03-04 05:02:01 +00:00
|
|
|
///
|
2019-03-06 23:47:15 +00:00
|
|
|
/// This is a simplified version of the `App::service()` method.
|
|
|
|
/// This method can not be could multiple times, in that case
|
|
|
|
/// multiple resources with one route would be registered for same resource path.
|
2019-03-04 05:02:01 +00:00
|
|
|
///
|
|
|
|
/// ```rust
|
2019-03-07 22:01:52 +00:00
|
|
|
/// use actix_web::{web, App, HttpResponse};
|
2019-03-04 05:02:01 +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!"
|
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-03-06 23:47:15 +00:00
|
|
|
/// .route("/test1", web::get().to(index))
|
|
|
|
/// .route("/test2", web::post().to(|| HttpResponse::MethodNotAllowed()));
|
2019-03-02 06:51:32 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
2019-03-06 23:47:15 +00:00
|
|
|
pub fn route(self, path: &str, mut route: Route<P>) -> Self {
|
|
|
|
self.service(
|
|
|
|
Resource::new(path)
|
|
|
|
.add_guards(route.take_guards())
|
|
|
|
.route(route),
|
|
|
|
)
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
|
|
|
|
2019-03-06 23:47:15 +00:00
|
|
|
/// Register http service.
|
2019-03-02 06:51:32 +00:00
|
|
|
///
|
2019-03-06 23:47:15 +00:00
|
|
|
/// Http service is any type that implements `HttpServiceFactory` trait.
|
|
|
|
///
|
|
|
|
/// Actix web provides several services implementations:
|
|
|
|
///
|
2019-03-17 04:35:02 +00:00
|
|
|
/// * *Resource* is an entry in resource table which corresponds to requested URL.
|
2019-03-06 23:47:15 +00:00
|
|
|
/// * *Scope* is a set of resources with common root path.
|
|
|
|
/// * "StaticFiles" is a service for static files support
|
2019-03-06 06:10:08 +00:00
|
|
|
pub fn service<F>(mut self, factory: F) -> Self
|
2019-03-02 06:51:32 +00:00
|
|
|
where
|
2019-03-06 06:10:08 +00:00
|
|
|
F: HttpServiceFactory<P> + 'static,
|
2019-03-02 06:51:32 +00:00
|
|
|
{
|
2019-03-06 23:47:15 +00:00
|
|
|
self.services
|
|
|
|
.push(Box::new(ServiceFactoryWrapper::new(factory)));
|
2019-03-02 06:51:32 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Register a middleware.
|
|
|
|
pub fn middleware<M, B1, F>(
|
|
|
|
self,
|
|
|
|
mw: F,
|
2019-03-02 19:53:05 +00:00
|
|
|
) -> AppRouter<
|
|
|
|
C,
|
2019-03-02 06:51:32 +00:00
|
|
|
P,
|
|
|
|
B1,
|
|
|
|
impl NewService<
|
2019-03-09 17:49:11 +00:00
|
|
|
Request = ServiceRequest<P>,
|
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 = (),
|
|
|
|
>,
|
|
|
|
>
|
|
|
|
where
|
2019-03-05 05:37:57 +00:00
|
|
|
M: Transform<
|
2019-03-02 06:51:32 +00:00
|
|
|
T::Service,
|
2019-03-09 17:49:11 +00:00
|
|
|
Request = ServiceRequest<P>,
|
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-05 05:37:57 +00:00
|
|
|
let endpoint = ApplyTransform::new(mw, self.endpoint);
|
2019-03-02 19:53:05 +00:00
|
|
|
AppRouter {
|
2019-03-02 06:51:32 +00:00
|
|
|
endpoint,
|
2019-03-02 19:53:05 +00:00
|
|
|
chain: self.chain,
|
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-03-06 23:47:15 +00:00
|
|
|
/// Default resource to be used if no matching route could be found.
|
|
|
|
pub fn default_resource<F, U>(mut self, f: F) -> Self
|
|
|
|
where
|
|
|
|
F: FnOnce(Resource<P>) -> Resource<P, U>,
|
|
|
|
U: NewService<
|
2019-03-09 17:49:11 +00:00
|
|
|
Request = ServiceRequest<P>,
|
2019-03-06 23:47:15 +00:00
|
|
|
Response = ServiceResponse,
|
2019-03-10 23:35:38 +00:00
|
|
|
Error = Error,
|
2019-03-06 23:47:15 +00:00
|
|
|
InitError = (),
|
|
|
|
> + 'static,
|
|
|
|
{
|
|
|
|
// create and configure default resource
|
|
|
|
self.default = Some(Rc::new(boxed::new_service(
|
|
|
|
f(Resource::new("")).into_new_service().map_init_err(|_| ()),
|
|
|
|
)));
|
|
|
|
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2019-03-02 06:51:32 +00:00
|
|
|
/// Register an external resource.
|
|
|
|
///
|
|
|
|
/// 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-03-09 22:06:24 +00:00
|
|
|
/// ```rust
|
|
|
|
/// use actix_web::{web, App, HttpRequest, HttpResponse, Result};
|
2019-03-02 06:51:32 +00:00
|
|
|
///
|
2019-03-09 22:06:24 +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");
|
2019-03-02 06:51:32 +00:00
|
|
|
/// Ok(HttpResponse::Ok().into())
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let app = App::new()
|
2019-03-09 22:06:24 +00:00
|
|
|
/// .service(web::resource("/index.html").route(
|
|
|
|
/// web::get().to(index)))
|
|
|
|
/// .external_resource("youtube", "https://youtube.com/watch/{video_id}");
|
2019-03-02 06:51:32 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
2019-03-09 22:06:24 +00:00
|
|
|
pub fn external_resource<N, U>(mut self, name: N, url: U) -> Self
|
2019-03-02 06:51:32 +00:00
|
|
|
where
|
|
|
|
N: AsRef<str>,
|
|
|
|
U: AsRef<str>,
|
|
|
|
{
|
2019-03-09 22:06:24 +00:00
|
|
|
let mut rdef = ResourceDef::new(url.as_ref());
|
|
|
|
*rdef.name_mut() = name.as_ref().to_string();
|
|
|
|
self.external.push(rdef);
|
2019-03-02 06:51:32 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-09 17:49:11 +00:00
|
|
|
impl<C, T, P: 'static, B: MessageBody> IntoNewService<AppInit<C, T, P, B>, ServerConfig>
|
2019-03-05 18:08:08 +00:00
|
|
|
for AppRouter<C, P, B, T>
|
2019-03-02 06:51:32 +00:00
|
|
|
where
|
|
|
|
T: NewService<
|
2019-03-09 17:49:11 +00:00
|
|
|
Request = ServiceRequest<P>,
|
2019-03-02 06:51:32 +00:00
|
|
|
Response = ServiceResponse<B>,
|
2019-03-10 23:35:38 +00:00
|
|
|
Error = Error,
|
2019-03-02 06:51:32 +00:00
|
|
|
InitError = (),
|
|
|
|
>,
|
2019-03-02 19:53:05 +00:00
|
|
|
C: NewService<
|
2019-03-09 17:49:11 +00:00
|
|
|
Request = ServiceRequest,
|
2019-03-02 19:53:05 +00:00
|
|
|
Response = ServiceRequest<P>,
|
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-03-09 17:49:11 +00:00
|
|
|
fn into_new_service(self) -> AppInit<C, T, P, B> {
|
2019-03-02 19:53:05 +00:00
|
|
|
AppInit {
|
|
|
|
chain: self.chain,
|
2019-03-17 03:17:27 +00:00
|
|
|
data: self.data,
|
2019-03-09 17:49:11 +00:00
|
|
|
endpoint: self.endpoint,
|
|
|
|
services: 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-03-04 05:40:03 +00:00
|
|
|
use super::*;
|
2019-03-06 23:47:15 +00:00
|
|
|
use crate::http::{Method, StatusCode};
|
2019-03-07 03:19:27 +00:00
|
|
|
use crate::test::{block_on, init_service, TestRequest};
|
2019-03-07 19:43:46 +00:00
|
|
|
use crate::{web, 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-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::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")
|
|
|
|
.default_resource(|r| r.to(|| HttpResponse::Created()))
|
|
|
|
.route(web::get().to(|| HttpResponse::Ok())),
|
|
|
|
)
|
2019-03-06 03:03:59 +00:00
|
|
|
.default_resource(|r| r.to(|| HttpResponse::MethodNotAllowed())),
|
|
|
|
);
|
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
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2019-03-17 03:17:27 +00:00
|
|
|
fn test_data_factory() {
|
2019-03-07 19:43:46 +00:00
|
|
|
let mut srv =
|
2019-03-17 03:17:27 +00:00
|
|
|
init_service(App::new().data_factory(|| Ok::<_, ()>(10usize)).service(
|
|
|
|
web::resource("/").to(|_: web::Data<usize>| HttpResponse::Ok()),
|
2019-03-07 19:43:46 +00:00
|
|
|
));
|
2019-03-04 05:40:03 +00:00
|
|
|
let req = TestRequest::default().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::OK);
|
|
|
|
|
2019-03-07 19:43:46 +00:00
|
|
|
let mut srv =
|
2019-03-17 03:17:27 +00:00
|
|
|
init_service(App::new().data_factory(|| Ok::<_, ()>(10u32)).service(
|
|
|
|
web::resource("/").to(|_: web::Data<usize>| HttpResponse::Ok()),
|
2019-03-07 19:43:46 +00:00
|
|
|
));
|
2019-03-04 05:40:03 +00:00
|
|
|
let req = TestRequest::default().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::INTERNAL_SERVER_ERROR);
|
|
|
|
}
|
|
|
|
}
|