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;
|
|
|
|
use actix_service::{boxed, IntoNewService, NewService};
|
|
|
|
|
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::{
|
|
|
|
HttpServiceFactory, ServiceFactory, ServiceFactoryWrapper, ServiceRequest,
|
|
|
|
ServiceResponse,
|
|
|
|
};
|
2019-03-07 00:47:15 +01:00
|
|
|
|
|
|
|
type Guards = Vec<Box<Guard>>;
|
2019-04-13 23:50:54 +02:00
|
|
|
type HttpNewService =
|
|
|
|
boxed::BoxedNewService<(), 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-05-12 18:42:05 +02:00
|
|
|
service_data: Rc<Vec<Box<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-05-12 18:42:05 +02:00
|
|
|
service_data: Rc<Vec<Box<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(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Check if root is beeing configured
|
|
|
|
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,
|
|
|
|
guards: Option<Vec<Box<Guard>>>,
|
|
|
|
service: F,
|
2019-03-09 16:39:34 +01:00
|
|
|
nested: Option<Rc<ResourceMap>>,
|
2019-03-07 00:47:15 +01:00
|
|
|
) where
|
2019-03-09 18:49:11 +01:00
|
|
|
F: IntoNewService<S>,
|
2019-03-07 00:47:15 +01:00
|
|
|
S: NewService<
|
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,
|
|
|
|
boxed::new_service(service.into_new_service()),
|
|
|
|
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
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct AppConfig(pub(crate) Rc<AppConfigInner>);
|
|
|
|
|
|
|
|
impl AppConfig {
|
|
|
|
pub(crate) fn new(inner: AppConfigInner) -> Self {
|
|
|
|
AppConfig(Rc::new(inner))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set server host name.
|
|
|
|
///
|
|
|
|
/// Host name is used by application router aa a hostname for url
|
|
|
|
/// generation. Check [ConnectionInfo](./dev/struct.ConnectionInfo.
|
|
|
|
/// html#method.host) documentation for more information.
|
|
|
|
///
|
|
|
|
/// 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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) struct AppConfigInner {
|
|
|
|
pub(crate) secure: bool,
|
|
|
|
pub(crate) host: String,
|
|
|
|
pub(crate) addr: SocketAddr,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for AppConfigInner {
|
|
|
|
fn default() -> AppConfigInner {
|
|
|
|
AppConfigInner {
|
|
|
|
secure: false,
|
|
|
|
addr: "127.0.0.1:8080".parse().unwrap(),
|
|
|
|
host: "localhost:8080".to_owned(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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-04-13 23:50:54 +02:00
|
|
|
pub(crate) services: Vec<Box<ServiceFactory>>,
|
2019-04-04 00:09:31 +02:00
|
|
|
pub(crate) data: Vec<Box<DataFactory>>,
|
|
|
|
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(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set application data. Applicatin data could be accessed
|
|
|
|
/// 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-04-24 06:21:49 +02:00
|
|
|
use crate::test::{block_on, call_service, init_service, read_body, TestRequest};
|
|
|
|
use crate::{web, App, HttpRequest, HttpResponse};
|
2019-04-04 00:09:31 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_data() {
|
2019-04-15 16:32:49 +02:00
|
|
|
let cfg = |cfg: &mut ServiceConfig| {
|
2019-04-04 00:09:31 +02:00
|
|
|
cfg.data(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();
|
|
|
|
let resp = block_on(srv.call(req)).unwrap();
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
}
|
|
|
|
|
2019-05-05 04:43:49 +02:00
|
|
|
// #[test]
|
|
|
|
// fn test_data_factory() {
|
|
|
|
// 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();
|
|
|
|
// let resp = block_on(srv.call(req)).unwrap();
|
|
|
|
// 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();
|
|
|
|
// let resp = block_on(srv.call(req)).unwrap();
|
|
|
|
// assert_eq!(resp.status(), StatusCode::INTERNAL_SERVER_ERROR);
|
|
|
|
// }
|
2019-04-15 16:44:07 +02:00
|
|
|
|
2019-04-24 06:21:49 +02:00
|
|
|
#[test]
|
|
|
|
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| {
|
|
|
|
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-04-15 16:44:07 +02:00
|
|
|
#[test]
|
|
|
|
fn test_service() {
|
|
|
|
let mut srv = init_service(App::new().configure(|cfg| {
|
|
|
|
cfg.service(
|
|
|
|
web::resource("/test").route(web::get().to(|| HttpResponse::Created())),
|
|
|
|
)
|
|
|
|
.route("/index.html", web::get().to(|| HttpResponse::Ok()));
|
|
|
|
}));
|
|
|
|
|
|
|
|
let req = TestRequest::with_uri("/test")
|
|
|
|
.method(Method::GET)
|
|
|
|
.to_request();
|
|
|
|
let resp = call_service(&mut srv, req);
|
|
|
|
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);
|
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
}
|
2019-04-04 00:09:31 +02:00
|
|
|
}
|