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

174 lines
4.2 KiB
Rust
Raw Normal View History

2017-10-07 04:48:14 +00:00
use std::rc::Rc;
use std::convert::From;
2017-10-07 04:48:14 +00:00
use std::marker::PhantomData;
use std::collections::HashMap;
use actix::Actor;
use http::Method;
use task::Task;
2017-10-09 03:16:48 +00:00
use route::{Route, RouteHandler};
use payload::Payload;
2017-10-07 04:48:14 +00:00
use context::HttpContext;
use httprequest::HttpRequest;
2017-10-15 16:33:17 +00:00
use httpresponse::HttpResponse;
2017-10-07 04:48:14 +00:00
use httpcodes::HTTPMethodNotAllowed;
2017-10-08 06:59:57 +00:00
/// Http resource
///
2017-10-08 21:56:51 +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.
/// Route corresponds to handling HTTP method by calling route handler.
///
/// ```rust,ignore
///
/// struct MyRoute;
///
/// fn main() {
/// let mut routes = RoutingMap::default();
///
/// routes.add_resource("/")
/// .post::<MyRoute>();
2017-10-08 06:59:57 +00:00
/// }
2017-10-08 21:56:51 +00:00
pub struct Resource<S=()> {
2017-10-07 04:48:14 +00:00
state: PhantomData<S>,
routes: HashMap<Method, Box<RouteHandler<S>>>,
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-07 04:48:14 +00:00
state: PhantomData,
routes: HashMap::new(),
default: Box::new(HTTPMethodNotAllowed)}
}
}
2017-10-08 21:56:51 +00:00
impl<S> Resource<S> where S: 'static {
2017-10-07 04:48:14 +00:00
2017-10-07 06:14:13 +00:00
/// Register handler for specified method.
2017-10-07 04:48:14 +00:00
pub fn handler<H>(&mut self, method: Method, handler: H) -> &mut Self
where H: RouteHandler<S>
{
self.routes.insert(method, Box::new(handler));
self
}
2017-10-07 06:14:13 +00:00
/// Default handler is used if no matched route found.
/// By default `HTTPMethodNotAllowed` is used.
2017-10-07 04:48:14 +00:00
pub fn default_handler<H>(&mut self, handler: H) -> &mut Self
where H: RouteHandler<S>
{
self.default = Box::new(handler);
self
}
2017-10-07 06:14:13 +00:00
/// Handler for `GET` method.
2017-10-10 06:07:32 +00:00
pub fn get<A>(&mut self) -> &mut Self
where A: Actor<Context=HttpContext<A>> + Route<State=S>
2017-10-07 04:48:14 +00:00
{
self.handler(Method::GET, A::factory())
}
2017-10-07 06:14:13 +00:00
/// Handler for `POST` method.
2017-10-10 06:07:32 +00:00
pub fn post<A>(&mut self) -> &mut Self
where A: Actor<Context=HttpContext<A>> + Route<State=S>
2017-10-07 04:48:14 +00:00
{
self.handler(Method::POST, A::factory())
}
2017-10-07 06:14:13 +00:00
/// Handler for `PUR` method.
2017-10-10 06:07:32 +00:00
pub fn put<A>(&mut self) -> &mut Self
where A: Actor<Context=HttpContext<A>> + Route<State=S>
2017-10-07 04:48:14 +00:00
{
self.handler(Method::PUT, A::factory())
}
2017-10-07 06:14:13 +00:00
/// Handler for `METHOD` method.
2017-10-10 06:07:32 +00:00
pub fn delete<A>(&mut self) -> &mut Self
where A: Actor<Context=HttpContext<A>> + Route<State=S>
2017-10-07 04:48:14 +00:00
{
self.handler(Method::DELETE, A::factory())
}
}
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-10-09 03:16:48 +00:00
fn handle(&self, req: HttpRequest, payload: Payload, state: Rc<S>) -> Task {
2017-10-07 04:48:14 +00:00
if let Some(handler) = self.routes.get(req.method()) {
handler.handle(req, payload, state)
} else {
self.default.handle(req, payload, state)
}
}
}
#[cfg_attr(feature="cargo-clippy", allow(large_enum_variant))]
2017-10-10 06:07:32 +00:00
enum ReplyItem<A> where A: Actor + Route {
Message(HttpResponse),
2017-10-07 04:48:14 +00:00
Actor(A),
}
2017-10-08 06:59:57 +00:00
/// Represents response process.
2017-10-10 06:07:32 +00:00
pub struct Reply<A: Actor + Route> (ReplyItem<A>);
2017-10-07 04:48:14 +00:00
2017-10-10 06:07:32 +00:00
impl<A> Reply<A> where A: Actor + Route
2017-10-07 04:48:14 +00:00
{
/// Create async response
2017-10-07 06:36:36 +00:00
pub fn stream(act: A) -> Self {
2017-10-08 21:56:51 +00:00
Reply(ReplyItem::Actor(act))
2017-10-07 04:48:14 +00:00
}
2017-10-07 07:31:40 +00:00
/// Send response
pub fn reply<R: Into<HttpResponse>>(response: R) -> Self {
Reply(ReplyItem::Message(response.into()))
2017-10-07 04:48:14 +00:00
}
2017-10-10 06:07:32 +00:00
pub fn into(self, mut ctx: HttpContext<A>) -> Task where A: Actor<Context=HttpContext<A>>
{
2017-10-07 04:48:14 +00:00
match self.0 {
ReplyItem::Message(msg) => {
Task::reply(msg)
2017-10-07 06:14:13 +00:00
},
2017-10-08 21:56:51 +00:00
ReplyItem::Actor(act) => {
2017-10-07 06:14:13 +00:00
ctx.set_actor(act);
2017-10-07 04:48:14 +00:00
Task::with_stream(ctx)
}
}
}
}
impl<A, T> From<T> for Reply<A>
where T: Into<HttpResponse>, A: Actor + Route
{
fn from(item: T) -> Self {
Reply::reply(item)
}
}
#[cfg(feature="nightly")]
use std::ops::Try;
#[cfg(feature="nightly")]
impl<A> Try for Reply<A> where A: Actor + Route {
type Ok = HttpResponse;
type Error = HttpResponse;
fn into_result(self) -> Result<Self::Ok, Self::Error> {
panic!("Reply -> Result conversion is not supported")
}
fn from_error(v: Self::Error) -> Self {
Reply::reply(v)
}
fn from_ok(v: Self::Ok) -> Self {
Reply::reply(v)
}
}