2019-03-07 00:47:15 +01:00
|
|
|
use std::net::SocketAddr;
|
|
|
|
use std::rc::Rc;
|
|
|
|
|
2019-03-09 23:06:24 +01:00
|
|
|
use actix_http::Extensions;
|
2019-03-07 00:47:15 +01:00
|
|
|
use actix_router::ResourceDef;
|
2019-11-20 18:33:22 +01:00
|
|
|
use actix_service::{boxed, IntoServiceFactory, ServiceFactory};
|
2019-03-07 00:47:15 +01:00
|
|
|
|
2019-04-04 00:09:31 +02:00
|
|
|
use crate::data::{Data, DataFactory};
|
2019-03-11 00:35:38 +01:00
|
|
|
use crate::error::Error;
|
2019-03-07 00:47:15 +01:00
|
|
|
use crate::guard::Guard;
|
2019-04-04 00:09:31 +02:00
|
|
|
use crate::resource::Resource;
|
2019-03-09 16:39:34 +01:00
|
|
|
use crate::rmap::ResourceMap;
|
2019-04-04 00:09:31 +02:00
|
|
|
use crate::route::Route;
|
|
|
|
use crate::service::{
|
2019-11-20 18:33:22 +01:00
|
|
|
AppServiceFactory, HttpServiceFactory, ServiceFactoryWrapper, ServiceRequest,
|
2019-04-04 00:09:31 +02:00
|
|
|
ServiceResponse,
|
|
|
|
};
|
2019-03-07 00:47:15 +01:00
|
|
|
|
2019-07-17 11:48:37 +02:00
|
|
|
type Guards = Vec<Box<dyn Guard>>;
|
2019-04-13 23:50:54 +02:00
|
|
|
type HttpNewService =
|
2019-11-26 06:25:50 +01:00
|
|
|
boxed::BoxServiceFactory<(), ServiceRequest, ServiceResponse, Error, ()>;
|
2019-03-07 00:47:15 +01:00
|
|
|
|
|
|
|
/// Application configuration
|
2019-04-15 16:32:49 +02:00
|
|
|
pub struct AppService {
|
2019-03-09 23:06:24 +01:00
|
|
|
config: AppConfig,
|
2019-03-07 00:47:15 +01:00
|
|
|
root: bool,
|
2019-04-13 23:50:54 +02:00
|
|
|
default: Rc<HttpNewService>,
|
2019-03-09 16:39:34 +01:00
|
|
|
services: Vec<(
|
|
|
|
ResourceDef,
|
2019-04-13 23:50:54 +02:00
|
|
|
HttpNewService,
|
2019-03-09 16:39:34 +01:00
|
|
|
Option<Guards>,
|
|
|
|
Option<Rc<ResourceMap>>,
|
|
|
|
)>,
|
2019-07-17 11:48:37 +02:00
|
|
|
service_data: Rc<Vec<Box<dyn DataFactory>>>,
|
2019-03-07 00:47:15 +01:00
|
|
|
}
|
|
|
|
|
2019-04-15 16:32:49 +02:00
|
|
|
impl AppService {
|
2019-03-07 00:47:15 +01:00
|
|
|
/// Crate server settings instance
|
2019-05-05 04:43:49 +02:00
|
|
|
pub(crate) fn new(
|
|
|
|
config: AppConfig,
|
|
|
|
default: Rc<HttpNewService>,
|
2019-07-17 11:48:37 +02:00
|
|
|
service_data: Rc<Vec<Box<dyn DataFactory>>>,
|
2019-05-05 04:43:49 +02:00
|
|
|
) -> Self {
|
2019-04-15 16:32:49 +02:00
|
|
|
AppService {
|
2019-03-09 23:06:24 +01:00
|
|
|
config,
|
2019-03-07 00:47:15 +01:00
|
|
|
default,
|
2019-05-12 18:42:05 +02:00
|
|
|
service_data,
|
2019-03-07 00:47:15 +01:00
|
|
|
root: true,
|
|
|
|
services: Vec::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-21 05:09:35 +02:00
|
|
|
/// Check if root is being configured
|
2019-03-07 00:47:15 +01:00
|
|
|
pub fn is_root(&self) -> bool {
|
|
|
|
self.root
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn into_services(
|
|
|
|
self,
|
2019-05-05 04:43:49 +02:00
|
|
|
) -> (
|
|
|
|
AppConfig,
|
|
|
|
Vec<(
|
|
|
|
ResourceDef,
|
|
|
|
HttpNewService,
|
|
|
|
Option<Guards>,
|
|
|
|
Option<Rc<ResourceMap>>,
|
|
|
|
)>,
|
|
|
|
) {
|
|
|
|
(self.config, self.services)
|
2019-03-07 00:47:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn clone_config(&self) -> Self {
|
2019-04-15 16:32:49 +02:00
|
|
|
AppService {
|
2019-03-09 23:06:24 +01:00
|
|
|
config: self.config.clone(),
|
2019-03-07 00:47:15 +01:00
|
|
|
default: self.default.clone(),
|
|
|
|
services: Vec::new(),
|
|
|
|
root: false,
|
2019-05-12 18:42:05 +02:00
|
|
|
service_data: self.service_data.clone(),
|
2019-03-07 00:47:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-09 23:06:24 +01:00
|
|
|
/// Service configuration
|
|
|
|
pub fn config(&self) -> &AppConfig {
|
|
|
|
&self.config
|
2019-03-07 00:47:15 +01:00
|
|
|
}
|
|
|
|
|
2019-03-09 23:06:24 +01:00
|
|
|
/// Default resource
|
2019-04-13 23:50:54 +02:00
|
|
|
pub fn default_service(&self) -> Rc<HttpNewService> {
|
2019-03-07 00:47:15 +01:00
|
|
|
self.default.clone()
|
|
|
|
}
|
|
|
|
|
2019-05-05 04:43:49 +02:00
|
|
|
/// Set global route data
|
2019-05-12 18:42:05 +02:00
|
|
|
pub fn set_service_data(&self, extensions: &mut Extensions) -> bool {
|
|
|
|
for f in self.service_data.iter() {
|
2019-05-05 04:43:49 +02:00
|
|
|
f.create(extensions);
|
|
|
|
}
|
2019-05-12 18:42:05 +02:00
|
|
|
!self.service_data.is_empty()
|
2019-05-05 04:43:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Register http service
|
2019-03-07 00:47:15 +01:00
|
|
|
pub fn register_service<F, S>(
|
|
|
|
&mut self,
|
|
|
|
rdef: ResourceDef,
|
2019-07-17 11:48:37 +02:00
|
|
|
guards: Option<Vec<Box<dyn Guard>>>,
|
2019-11-20 18:33:22 +01:00
|
|
|
factory: F,
|
2019-03-09 16:39:34 +01:00
|
|
|
nested: Option<Rc<ResourceMap>>,
|
2019-03-07 00:47:15 +01:00
|
|
|
) where
|
2019-11-20 18:33:22 +01:00
|
|
|
F: IntoServiceFactory<S>,
|
|
|
|
S: ServiceFactory<
|
2019-05-12 17:34:51 +02:00
|
|
|
Config = (),
|
2019-04-13 23:50:54 +02:00
|
|
|
Request = ServiceRequest,
|
2019-03-07 00:47:15 +01:00
|
|
|
Response = ServiceResponse,
|
2019-03-11 00:35:38 +01:00
|
|
|
Error = Error,
|
2019-03-07 00:47:15 +01:00
|
|
|
InitError = (),
|
|
|
|
> + 'static,
|
|
|
|
{
|
|
|
|
self.services.push((
|
|
|
|
rdef,
|
2019-11-20 18:33:22 +01:00
|
|
|
boxed::factory(factory.into_factory()),
|
2019-03-07 00:47:15 +01:00
|
|
|
guards,
|
2019-03-09 16:39:34 +01:00
|
|
|
nested,
|
2019-03-07 00:47:15 +01:00
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
2019-03-09 23:06:24 +01:00
|
|
|
|
2020-05-03 15:33:29 +02:00
|
|
|
/// Application connection config
|
2019-03-09 23:06:24 +01:00
|
|
|
#[derive(Clone)]
|
2019-12-20 11:04:51 +01:00
|
|
|
pub struct AppConfig(Rc<AppConfigInner>);
|
|
|
|
|
|
|
|
struct AppConfigInner {
|
|
|
|
secure: bool,
|
|
|
|
host: String,
|
|
|
|
addr: SocketAddr,
|
|
|
|
}
|
2019-03-09 23:06:24 +01:00
|
|
|
|
|
|
|
impl AppConfig {
|
2019-12-20 11:04:51 +01:00
|
|
|
pub(crate) fn new(secure: bool, addr: SocketAddr, host: String) -> Self {
|
|
|
|
AppConfig(Rc::new(AppConfigInner { secure, addr, host }))
|
2019-03-09 23:06:24 +01:00
|
|
|
}
|
|
|
|
|
2019-12-20 11:04:51 +01:00
|
|
|
/// Server host name.
|
2019-03-09 23:06:24 +01:00
|
|
|
///
|
2019-12-09 05:02:43 +01:00
|
|
|
/// Host name is used by application router as a hostname for url generation.
|
|
|
|
/// Check [ConnectionInfo](./struct.ConnectionInfo.html#method.host)
|
|
|
|
/// documentation for more information.
|
2019-03-09 23:06:24 +01:00
|
|
|
///
|
|
|
|
/// By default host name is set to a "localhost" value.
|
|
|
|
pub fn host(&self) -> &str {
|
|
|
|
&self.0.host
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns true if connection is secure(https)
|
|
|
|
pub fn secure(&self) -> bool {
|
|
|
|
self.0.secure
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns the socket address of the local half of this TCP connection
|
|
|
|
pub fn local_addr(&self) -> SocketAddr {
|
|
|
|
self.0.addr
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-20 11:04:51 +01:00
|
|
|
impl Default for AppConfig {
|
|
|
|
fn default() -> Self {
|
|
|
|
AppConfig::new(
|
|
|
|
false,
|
|
|
|
"127.0.0.1:8080".parse().unwrap(),
|
|
|
|
"localhost:8080".to_owned(),
|
|
|
|
)
|
2019-03-09 23:06:24 +01:00
|
|
|
}
|
|
|
|
}
|
2019-04-04 00:09:31 +02:00
|
|
|
|
2019-04-15 16:32:49 +02:00
|
|
|
/// Service config is used for external configuration.
|
2019-04-04 00:09:31 +02:00
|
|
|
/// Part of application configuration could be offloaded
|
|
|
|
/// to set of external methods. This could help with
|
|
|
|
/// modularization of big application configuration.
|
2019-04-15 16:32:49 +02:00
|
|
|
pub struct ServiceConfig {
|
2019-11-20 18:33:22 +01:00
|
|
|
pub(crate) services: Vec<Box<dyn AppServiceFactory>>,
|
2019-07-17 11:48:37 +02:00
|
|
|
pub(crate) data: Vec<Box<dyn DataFactory>>,
|
2019-04-04 00:09:31 +02:00
|
|
|
pub(crate) external: Vec<ResourceDef>,
|
|
|
|
}
|
|
|
|
|
2019-04-15 16:32:49 +02:00
|
|
|
impl ServiceConfig {
|
2019-04-04 00:09:31 +02:00
|
|
|
pub(crate) fn new() -> Self {
|
|
|
|
Self {
|
|
|
|
services: Vec::new(),
|
|
|
|
data: Vec::new(),
|
|
|
|
external: Vec::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-03 19:12:37 +02:00
|
|
|
/// Set application data. Application data could be accessed
|
2019-04-04 00:09:31 +02:00
|
|
|
/// by using `Data<T>` extractor where `T` is data type.
|
|
|
|
///
|
|
|
|
/// This is same as `App::data()` method.
|
2019-05-12 18:42:05 +02:00
|
|
|
pub fn data<S: 'static>(&mut self, data: S) -> &mut Self {
|
|
|
|
self.data.push(Box::new(Data::new(data)));
|
2019-04-04 00:09:31 +02:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Configure route for a specific path.
|
|
|
|
///
|
|
|
|
/// This is same as `App::route()` method.
|
2019-04-13 23:50:54 +02:00
|
|
|
pub fn route(&mut self, path: &str, mut route: Route) -> &mut Self {
|
2019-04-04 00:09:31 +02:00
|
|
|
self.service(
|
|
|
|
Resource::new(path)
|
|
|
|
.add_guards(route.take_guards())
|
|
|
|
.route(route),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Register http service.
|
|
|
|
///
|
|
|
|
/// This is same as `App::service()` method.
|
|
|
|
pub fn service<F>(&mut self, factory: F) -> &mut Self
|
|
|
|
where
|
2019-04-13 23:50:54 +02:00
|
|
|
F: HttpServiceFactory + 'static,
|
2019-04-04 00:09:31 +02:00
|
|
|
{
|
|
|
|
self.services
|
|
|
|
.push(Box::new(ServiceFactoryWrapper::new(factory)));
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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.
|
|
|
|
///
|
|
|
|
/// This is same as `App::external_service()` method.
|
|
|
|
pub fn external_resource<N, U>(&mut self, name: N, url: U) -> &mut Self
|
|
|
|
where
|
|
|
|
N: AsRef<str>,
|
|
|
|
U: AsRef<str>,
|
|
|
|
{
|
|
|
|
let mut rdef = ResourceDef::new(url.as_ref());
|
|
|
|
*rdef.name_mut() = name.as_ref().to_string();
|
|
|
|
self.external.push(rdef);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use actix_service::Service;
|
2019-04-24 06:21:49 +02:00
|
|
|
use bytes::Bytes;
|
2019-04-04 00:09:31 +02:00
|
|
|
|
|
|
|
use super::*;
|
2019-04-15 16:44:07 +02:00
|
|
|
use crate::http::{Method, StatusCode};
|
2019-11-26 06:25:50 +01:00
|
|
|
use crate::test::{call_service, init_service, read_body, TestRequest};
|
2019-04-24 06:21:49 +02:00
|
|
|
use crate::{web, App, HttpRequest, HttpResponse};
|
2019-04-04 00:09:31 +02:00
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_data() {
|
|
|
|
let cfg = |cfg: &mut ServiceConfig| {
|
|
|
|
cfg.data(10usize);
|
|
|
|
};
|
2019-04-04 00:09:31 +02:00
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
let mut srv =
|
|
|
|
init_service(App::new().configure(cfg).service(
|
2019-04-04 00:09:31 +02:00
|
|
|
web::resource("/").to(|_: web::Data<usize>| HttpResponse::Ok()),
|
2019-11-20 18:33:22 +01:00
|
|
|
))
|
|
|
|
.await;
|
2019-11-26 06:25:50 +01:00
|
|
|
let req = TestRequest::default().to_request();
|
|
|
|
let resp = srv.call(req).await.unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2019-04-04 00:09:31 +02:00
|
|
|
}
|
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
// #[actix_rt::test]
|
|
|
|
// async fn test_data_factory() {
|
2019-05-05 04:43:49 +02:00
|
|
|
// let cfg = |cfg: &mut ServiceConfig| {
|
|
|
|
// cfg.data_factory(|| {
|
|
|
|
// sleep(std::time::Duration::from_millis(50)).then(|_| {
|
|
|
|
// println!("READY");
|
|
|
|
// Ok::<_, ()>(10usize)
|
|
|
|
// })
|
|
|
|
// });
|
|
|
|
// };
|
|
|
|
|
|
|
|
// let mut srv =
|
|
|
|
// init_service(App::new().configure(cfg).service(
|
|
|
|
// web::resource("/").to(|_: web::Data<usize>| HttpResponse::Ok()),
|
|
|
|
// ));
|
|
|
|
// let req = TestRequest::default().to_request();
|
2019-11-26 06:25:50 +01:00
|
|
|
// let resp = srv.call(req).await.unwrap();
|
2019-05-05 04:43:49 +02:00
|
|
|
// assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
|
|
|
|
// let cfg2 = |cfg: &mut ServiceConfig| {
|
|
|
|
// cfg.data_factory(|| Ok::<_, ()>(10u32));
|
|
|
|
// };
|
|
|
|
// let mut srv = init_service(
|
|
|
|
// App::new()
|
|
|
|
// .service(web::resource("/").to(|_: web::Data<usize>| HttpResponse::Ok()))
|
|
|
|
// .configure(cfg2),
|
|
|
|
// );
|
|
|
|
// let req = TestRequest::default().to_request();
|
2019-11-26 06:25:50 +01:00
|
|
|
// let resp = srv.call(req).await.unwrap();
|
2019-05-05 04:43:49 +02:00
|
|
|
// assert_eq!(resp.status(), StatusCode::INTERNAL_SERVER_ERROR);
|
|
|
|
// }
|
2019-04-15 16:44:07 +02:00
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_external_resource() {
|
|
|
|
let mut srv = init_service(
|
|
|
|
App::new()
|
|
|
|
.configure(|cfg| {
|
|
|
|
cfg.external_resource(
|
|
|
|
"youtube",
|
|
|
|
"https://youtube.com/watch/{video_id}",
|
|
|
|
);
|
|
|
|
})
|
|
|
|
.route(
|
|
|
|
"/test",
|
|
|
|
web::get().to(|req: HttpRequest| {
|
2020-07-22 01:28:33 +02:00
|
|
|
HttpResponse::Ok().body(
|
|
|
|
req.url_for("youtube", &["12345"]).unwrap().to_string(),
|
|
|
|
)
|
2019-11-26 06:25:50 +01:00
|
|
|
}),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
.await;
|
|
|
|
let req = TestRequest::with_uri("/test").to_request();
|
|
|
|
let resp = call_service(&mut srv, req).await;
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
let body = read_body(resp).await;
|
|
|
|
assert_eq!(body, Bytes::from_static(b"https://youtube.com/watch/12345"));
|
2019-04-24 06:21:49 +02:00
|
|
|
}
|
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_service() {
|
|
|
|
let mut srv = init_service(App::new().configure(|cfg| {
|
|
|
|
cfg.service(
|
2020-07-22 01:28:33 +02:00
|
|
|
web::resource("/test").route(web::get().to(HttpResponse::Created)),
|
2019-11-26 06:25:50 +01:00
|
|
|
)
|
2020-07-22 01:28:33 +02:00
|
|
|
.route("/index.html", web::get().to(HttpResponse::Ok));
|
2019-11-26 06:25:50 +01:00
|
|
|
}))
|
|
|
|
.await;
|
|
|
|
|
|
|
|
let req = TestRequest::with_uri("/test")
|
|
|
|
.method(Method::GET)
|
|
|
|
.to_request();
|
|
|
|
let resp = call_service(&mut srv, req).await;
|
|
|
|
assert_eq!(resp.status(), StatusCode::CREATED);
|
|
|
|
|
|
|
|
let req = TestRequest::with_uri("/index.html")
|
|
|
|
.method(Method::GET)
|
|
|
|
.to_request();
|
|
|
|
let resp = call_service(&mut srv, req).await;
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
2019-04-15 16:44:07 +02:00
|
|
|
}
|
2019-04-04 00:09:31 +02:00
|
|
|
}
|