use std::cell::RefCell; use std::rc::Rc; use actix_http::{Error, Response}; use actix_service::boxed::{self, BoxedNewService, BoxedService}; use actix_service::{ ApplyTransform, IntoNewService, IntoTransform, NewService, Service, Transform, }; use futures::future::{ok, Either, FutureResult}; use futures::{Async, Future, IntoFuture, Poll}; use crate::extract::FromRequest; use crate::handler::{AsyncFactory, Factory}; use crate::responder::Responder; use crate::route::{CreateRouteService, Route, RouteService}; use crate::service::{ServiceRequest, ServiceResponse}; type HttpService

= BoxedService, ServiceResponse, ()>; type HttpNewService

= BoxedNewService<(), ServiceRequest

, ServiceResponse, (), ()>; /// *Resource* is an entry in route table which corresponds to requested URL. /// /// Resource in turn has at least one route. /// Route consists of an handlers objects and list of guards /// (objects that implement `Guard` trait). /// Resources and rouets uses builder-like pattern for configuration. /// During request handling, resource object iterate through all routes /// and check guards for specific route, if request matches all /// guards, route considered matched and route handler get called. /// /// ```rust /// use actix_web::{web, App, HttpResponse}; /// /// fn main() { /// let app = App::new() /// .resource( /// "/", |r| r.route(web::get().to(|| HttpResponse::Ok()))); /// } pub struct Resource> { routes: Vec>, endpoint: T, default: Rc>>>>, factory_ref: Rc>>>, } impl

Resource

{ pub fn new() -> Resource

{ let fref = Rc::new(RefCell::new(None)); Resource { routes: Vec::new(), endpoint: ResourceEndpoint::new(fref.clone()), factory_ref: fref, default: Rc::new(RefCell::new(None)), } } } impl

Default for Resource

{ fn default() -> Self { Self::new() } } impl Resource where T: NewService< ServiceRequest

, Response = ServiceResponse, Error = (), InitError = (), >, { /// Register a new route. /// /// ```rust /// use actix_web::{web, guard, App, HttpResponse}; /// /// fn main() { /// let app = App::new() /// .resource("/", |r| { /// r.route(web::route() /// .guard(guard::Any(guard::Get()).or(guard::Put())) /// .guard(guard::Header("Content-Type", "text/plain")) /// .to(|| HttpResponse::Ok())) /// }); /// } /// ``` /// /// Multiple routes could be added to a resource. /// /// ```rust /// use actix_web::{web, guard, App, HttpResponse}; /// /// fn main() { /// let app = App::new() /// .resource("/container/", |r| { /// r.route(web::get().to(get_handler)) /// .route(web::post().to(post_handler)) /// .route(web::delete().to(delete_handler)) /// }); /// } /// # fn get_handler() {} /// # fn post_handler() {} /// # fn delete_handler() {} /// ``` pub fn route(mut self, route: Route

) -> Self { self.routes.push(route.finish()); self } /// Register a new route and add handler. This route get called for all /// requests. /// /// ```rust /// use actix_web::*; /// /// fn index(req: HttpRequest) -> HttpResponse { /// unimplemented!() /// } /// /// App::new().resource("/", |r| r.to(index)); /// ``` /// /// This is shortcut for: /// /// ```rust /// # extern crate actix_web; /// # use actix_web::*; /// # fn index(req: HttpRequest) -> HttpResponse { unimplemented!() } /// App::new().resource("/", |r| r.route(web::route().to(index))); /// ``` pub fn to(mut self, handler: F) -> Self where F: Factory + 'static, I: FromRequest

+ 'static, R: Responder + 'static, { self.routes.push(Route::new().to(handler)); self } /// Register a new route and add async handler. /// /// ```rust /// use actix_web::*; /// use futures::future::{ok, Future}; /// /// fn index(req: HttpRequest) -> impl Future { /// ok(HttpResponse::Ok().finish()) /// } /// /// App::new().resource("/", |r| r.to_async(index)); /// ``` /// /// This is shortcut for: /// /// ```rust /// # use actix_web::*; /// # use futures::future::Future; /// # fn index(req: HttpRequest) -> Box> { /// # unimplemented!() /// # } /// App::new().resource("/", |r| r.route(web::route().to_async(index))); /// ``` #[allow(clippy::wrong_self_convention)] pub fn to_async(mut self, handler: F) -> Self where F: AsyncFactory, I: FromRequest

+ 'static, R: IntoFuture + 'static, R::Item: Into, R::Error: Into, { self.routes.push(Route::new().to_async(handler)); self } /// Register a resource middleware /// /// This is similar to `App's` middlewares, but /// middleware is not allowed to change response type (i.e modify response's body). /// Middleware get invoked on resource level. pub fn middleware( self, mw: F, ) -> Resource< P, impl NewService< ServiceRequest

, Response = ServiceResponse, Error = (), InitError = (), >, > where M: Transform< T::Service, ServiceRequest

, Response = ServiceResponse, Error = (), InitError = (), >, F: IntoTransform>, { let endpoint = ApplyTransform::new(mw, self.endpoint); Resource { endpoint, routes: self.routes, default: self.default, factory_ref: self.factory_ref, } } /// Default resource to be used if no matching route could be found. pub fn default_resource(mut self, f: F) -> Self where F: FnOnce(Resource

) -> R, R: IntoNewService>, U: NewService, Response = ServiceResponse, Error = ()> + 'static, { // create and configure default resource self.default = Rc::new(RefCell::new(Some(Rc::new(boxed::new_service( f(Resource::new()).into_new_service().map_init_err(|_| ()), ))))); self } pub(crate) fn get_default(&self) -> Rc>>>> { self.default.clone() } } impl IntoNewService> for Resource where T: NewService< ServiceRequest

, Response = ServiceResponse, Error = (), InitError = (), >, { fn into_new_service(self) -> T { *self.factory_ref.borrow_mut() = Some(ResourceFactory { routes: self.routes, default: self.default, }); self.endpoint } } pub struct ResourceFactory

{ routes: Vec>, default: Rc>>>>, } impl NewService> for ResourceFactory

{ type Response = ServiceResponse; type Error = (); type InitError = (); type Service = ResourceService

; type Future = CreateResourceService

; fn new_service(&self, _: &()) -> Self::Future { let default_fut = if let Some(ref default) = *self.default.borrow() { Some(default.new_service(&())) } else { None }; CreateResourceService { fut: self .routes .iter() .map(|route| CreateRouteServiceItem::Future(route.new_service(&()))) .collect(), default: None, default_fut, } } } enum CreateRouteServiceItem

{ Future(CreateRouteService

), Service(RouteService

), } pub struct CreateResourceService

{ fut: Vec>, default: Option>, default_fut: Option, Error = ()>>>, } impl

Future for CreateResourceService

{ type Item = ResourceService

; type Error = (); fn poll(&mut self) -> Poll { let mut done = true; if let Some(ref mut fut) = self.default_fut { match fut.poll()? { Async::Ready(default) => self.default = Some(default), Async::NotReady => done = false, } } // poll http services for item in &mut self.fut { match item { CreateRouteServiceItem::Future(ref mut fut) => match fut.poll()? { Async::Ready(route) => { *item = CreateRouteServiceItem::Service(route) } Async::NotReady => { done = false; } }, CreateRouteServiceItem::Service(_) => continue, }; } if done { let routes = self .fut .drain(..) .map(|item| match item { CreateRouteServiceItem::Service(service) => service, CreateRouteServiceItem::Future(_) => unreachable!(), }) .collect(); Ok(Async::Ready(ResourceService { routes, default: self.default.take(), })) } else { Ok(Async::NotReady) } } } pub struct ResourceService

{ routes: Vec>, default: Option>, } impl

Service> for ResourceService

{ type Response = ServiceResponse; type Error = (); type Future = Either< Box>, Either< Box>, FutureResult, >, >; fn poll_ready(&mut self) -> Poll<(), Self::Error> { Ok(Async::Ready(())) } fn call(&mut self, mut req: ServiceRequest

) -> Self::Future { for route in self.routes.iter_mut() { if route.check(&mut req) { return Either::A(route.call(req)); } } if let Some(ref mut default) = self.default { Either::B(Either::A(default.call(req))) } else { let req = req.into_request(); Either::B(Either::B(ok(ServiceResponse::new( req, Response::NotFound().finish(), )))) } } } #[doc(hidden)] pub struct ResourceEndpoint

{ factory: Rc>>>, } impl

ResourceEndpoint

{ fn new(factory: Rc>>>) -> Self { ResourceEndpoint { factory } } } impl NewService> for ResourceEndpoint

{ type Response = ServiceResponse; type Error = (); type InitError = (); type Service = ResourceService

; type Future = CreateResourceService

; fn new_service(&self, _: &()) -> Self::Future { self.factory.borrow_mut().as_mut().unwrap().new_service(&()) } }