1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-06 18:22:03 +00:00
actix-web/src/resource.rs

148 lines
4.2 KiB
Rust
Raw Normal View History

2017-10-07 04:48:14 +00:00
use std::marker::PhantomData;
use http::Method;
2017-12-05 00:09:22 +00:00
use route::Route;
use handler::{Reply, Handler, FromRequest, RouteHandler, WrapHandler};
2017-12-04 21:32:05 +00:00
use httpcodes::HTTPNotFound;
use httprequest::HttpRequest;
2017-12-04 21:32:05 +00:00
2017-12-05 00:09:22 +00:00
/// *Resource* is an entry in route table which corresponds to requested URL.
2017-10-08 06:59:57 +00:00
///
/// Resource in turn has at least one route.
2017-12-04 21:32:05 +00:00
/// Route consists of an object that implements `Handler` trait (handler)
/// and list of predicates (objects that implement `Predicate` trait).
/// Route uses builder-like pattern for configuration.
/// During request handling, resource object iterate through all routes
/// and check all predicates for specific route, if request matches all predicates route
/// route considired matched and route handler get called.
2017-10-08 06:59:57 +00:00
///
2017-11-29 21:26:55 +00:00
/// ```rust
2017-12-06 19:00:39 +00:00
/// # extern crate actix_web;
2017-12-04 21:32:05 +00:00
/// use actix_web::*;
2017-10-08 06:59:57 +00:00
///
/// fn main() {
2017-12-06 19:00:39 +00:00
/// let app = Application::new("/")
2017-12-04 21:32:05 +00:00
/// .resource(
2017-12-06 19:00:39 +00:00
/// "/", |r| r.method(Method::GET).f(|r| HttpResponse::Ok()))
2017-10-15 21:17:41 +00:00
/// .finish();
2017-10-08 06:59:57 +00:00
/// }
2017-10-08 21:56:51 +00:00
pub struct Resource<S=()> {
2017-10-17 02:21:24 +00:00
name: String,
2017-10-07 04:48:14 +00:00
state: PhantomData<S>,
2017-12-04 21:32:05 +00:00
routes: Vec<Route<S>>,
2017-10-07 04:48:14 +00:00
default: Box<RouteHandler<S>>,
}
2017-10-08 21:56:51 +00:00
impl<S> Default for Resource<S> {
2017-10-07 04:48:14 +00:00
fn default() -> Self {
2017-10-08 21:56:51 +00:00
Resource {
2017-10-17 02:21:24 +00:00
name: String::new(),
2017-10-07 04:48:14 +00:00
state: PhantomData,
2017-12-04 21:32:05 +00:00
routes: Vec::new(),
default: Box::new(HTTPNotFound)}
2017-10-07 04:48:14 +00:00
}
}
2017-12-07 00:26:27 +00:00
impl<S> Resource<S> {
2017-10-07 04:48:14 +00:00
2017-10-29 13:05:31 +00:00
pub(crate) fn default_not_found() -> Self {
Resource {
name: String::new(),
state: PhantomData,
2017-12-04 21:32:05 +00:00
routes: Vec::new(),
2017-10-29 13:05:31 +00:00
default: Box::new(HTTPNotFound)}
}
2017-10-17 02:21:24 +00:00
/// Set resource name
pub fn name<T: Into<String>>(&mut self, name: T) {
2017-11-27 01:30:35 +00:00
self.name = name.into();
2017-10-17 02:21:24 +00:00
}
pub(crate) fn get_name(&self) -> &str {
&self.name
2017-12-05 19:31:35 +00:00
}
2017-12-07 00:26:27 +00:00
}
impl<S: 'static> Resource<S> {
2017-12-05 19:31:35 +00:00
2017-12-04 21:32:05 +00:00
/// Register a new route and return mutable reference to *Route* object.
/// *Route* is used for route configuration, i.e. adding predicates, setting up handler.
///
/// ```rust
2017-12-06 19:00:39 +00:00
/// # extern crate actix_web;
2017-12-04 21:32:05 +00:00
/// use actix_web::*;
///
/// fn main() {
2017-12-06 19:00:39 +00:00
/// let app = Application::new("/")
2017-12-04 21:32:05 +00:00
/// .resource(
/// "/", |r| r.route()
/// .p(pred::Any(vec![pred::Get(), pred::Put()]))
/// .p(pred::Header("Content-Type", "text/plain"))
/// .f(|r| HttpResponse::Ok()))
2017-12-04 21:32:05 +00:00
/// .finish();
/// }
/// ```
2017-12-04 21:32:05 +00:00
pub fn route(&mut self) -> &mut Route<S> {
self.routes.push(Route::default());
self.routes.last_mut().unwrap()
2017-10-15 21:17:41 +00:00
}
2017-12-04 21:32:05 +00:00
/// Register a new route and add method check to route.
///
2017-12-06 19:00:39 +00:00
/// This is shortcut for:
///
/// ```rust,ignore
/// Resource::resource("/", |r| r.route().method(Method::GET).f(index)
/// ```
2017-12-04 21:32:05 +00:00
pub fn method(&mut self, method: Method) -> &mut Route<S> {
self.routes.push(Route::default());
self.routes.last_mut().unwrap().method(method)
2017-10-15 21:17:41 +00:00
}
/// Register a new route and add handler object.
///
2017-12-06 19:00:39 +00:00
/// This is shortcut for:
///
/// ```rust,ignore
/// Resource::resource("/", |r| r.route().h(handler)
/// ```
pub fn h<H: Handler<S>>(&mut self, handler: H) {
self.routes.push(Route::default());
self.routes.last_mut().unwrap().h(handler)
}
/// Register a new route and add handler function.
///
2017-12-06 19:00:39 +00:00
/// This is shortcut for:
///
/// ```rust,ignore
/// Resource::resource("/", |r| r.route().f(index)
/// ```
pub fn f<F, R>(&mut self, handler: F)
where F: Fn(HttpRequest<S>) -> R + 'static,
R: FromRequest + 'static,
{
self.routes.push(Route::default());
self.routes.last_mut().unwrap().f(handler)
}
2017-10-07 06:14:13 +00:00
/// Default handler is used if no matched route found.
2017-12-04 21:32:05 +00:00
/// By default `HTTPNotFound` is used.
pub fn default_handler<H>(&mut self, handler: H) where H: Handler<S> {
2017-11-29 21:26:55 +00:00
self.default = Box::new(WrapHandler::new(handler));
2017-10-07 04:48:14 +00:00
}
}
2017-10-08 21:56:51 +00:00
impl<S: 'static> RouteHandler<S> for Resource<S> {
2017-10-07 04:48:14 +00:00
2017-12-04 21:32:05 +00:00
fn handle(&self, mut req: HttpRequest<S>) -> Reply {
for route in &self.routes {
if route.check(&mut req) {
return route.handle(req)
}
2017-10-07 04:48:14 +00:00
}
2017-12-04 21:32:05 +00:00
self.default.handle(req)
2017-10-07 04:48:14 +00:00
}
}