1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 16:02:59 +01:00
actix-extras/src/resource.rs

178 lines
4.7 KiB
Rust
Raw Normal View History

2017-10-07 06:48:14 +02:00
use std::marker::PhantomData;
use std::collections::HashMap;
use actix::Actor;
use http::Method;
2017-10-15 23:17:41 +02:00
use futures::Stream;
2017-10-07 06:48:14 +02:00
use task::Task;
2017-11-18 17:50:07 +01:00
use error::{Result, Error};
2017-10-22 18:13:29 +02:00
use route::{Route, RouteHandler, RouteResult, Frame, FnHandler, StreamHandler};
2017-10-07 06:48:14 +02:00
use context::HttpContext;
use httprequest::HttpRequest;
2017-10-15 18:33:17 +02:00
use httpresponse::HttpResponse;
2017-10-29 14:05:31 +01:00
use httpcodes::{HTTPNotFound, HTTPMethodNotAllowed};
2017-10-07 06:48:14 +02:00
2017-10-08 08:59:57 +02:00
/// Http resource
///
2017-10-08 23:56:51 +02:00
/// `Resource` is an entry in route table which corresponds to requested URL.
2017-10-08 08:59:57 +02: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() {
2017-10-15 23:17:41 +02:00
/// let router = RoutingMap::default()
/// .resource("/", |r| r.post::<MyRoute>())
/// .finish();
2017-10-08 08:59:57 +02:00
/// }
2017-10-08 23:56:51 +02:00
pub struct Resource<S=()> {
2017-10-17 04:21:24 +02:00
name: String,
2017-10-07 06:48:14 +02:00
state: PhantomData<S>,
routes: HashMap<Method, Box<RouteHandler<S>>>,
default: Box<RouteHandler<S>>,
}
2017-10-08 23:56:51 +02:00
impl<S> Default for Resource<S> {
2017-10-07 06:48:14 +02:00
fn default() -> Self {
2017-10-08 23:56:51 +02:00
Resource {
2017-10-17 04:21:24 +02:00
name: String::new(),
2017-10-07 06:48:14 +02:00
state: PhantomData,
routes: HashMap::new(),
default: Box::new(HTTPMethodNotAllowed)}
}
}
2017-10-08 23:56:51 +02:00
impl<S> Resource<S> where S: 'static {
2017-10-07 06:48:14 +02:00
2017-10-29 14:05:31 +01:00
pub(crate) fn default_not_found() -> Self {
Resource {
name: String::new(),
state: PhantomData,
routes: HashMap::new(),
default: Box::new(HTTPNotFound)}
}
2017-10-17 04:21:24 +02:00
/// Set resource name
2017-11-27 02:30:35 +01:00
pub fn set_name<T: Into<String>>(&mut self, name: T) {
self.name = name.into();
2017-10-17 04:21:24 +02:00
}
2017-10-07 08:14:13 +02:00
/// Register handler for specified method.
2017-10-15 23:17:41 +02:00
pub fn handler<F, R>(&mut self, method: Method, handler: F)
2017-11-27 06:18:38 +01:00
where F: Fn(HttpRequest<S>) -> Result<R> + 'static,
2017-10-15 23:17:41 +02:00
R: Into<HttpResponse> + 'static,
{
self.routes.insert(method, Box::new(FnHandler::new(handler)));
}
/// Register async handler for specified method.
pub fn async<F, R>(&mut self, method: Method, handler: F)
2017-11-27 06:18:38 +01:00
where F: Fn(HttpRequest<S>) -> R + 'static,
2017-11-16 07:06:28 +01:00
R: Stream<Item=Frame, Error=Error> + 'static,
2017-10-15 23:17:41 +02:00
{
self.routes.insert(method, Box::new(StreamHandler::new(handler)));
}
/// Register handler for specified method.
pub fn route_handler<H>(&mut self, method: Method, handler: H)
2017-10-07 06:48:14 +02:00
where H: RouteHandler<S>
{
self.routes.insert(method, Box::new(handler));
}
2017-10-07 08:14:13 +02:00
/// Default handler is used if no matched route found.
/// By default `HTTPMethodNotAllowed` is used.
2017-10-15 23:17:41 +02:00
pub fn default_handler<H>(&mut self, handler: H)
2017-10-07 06:48:14 +02:00
where H: RouteHandler<S>
{
self.default = Box::new(handler);
}
2017-10-07 08:14:13 +02:00
/// Handler for `GET` method.
2017-10-15 23:17:41 +02:00
pub fn get<A>(&mut self)
2017-10-10 08:07:32 +02:00
where A: Actor<Context=HttpContext<A>> + Route<State=S>
2017-10-07 06:48:14 +02:00
{
2017-10-15 23:17:41 +02:00
self.route_handler(Method::GET, A::factory());
2017-10-07 06:48:14 +02:00
}
2017-10-07 08:14:13 +02:00
/// Handler for `POST` method.
2017-10-15 23:17:41 +02:00
pub fn post<A>(&mut self)
2017-10-10 08:07:32 +02:00
where A: Actor<Context=HttpContext<A>> + Route<State=S>
2017-10-07 06:48:14 +02:00
{
2017-10-15 23:17:41 +02:00
self.route_handler(Method::POST, A::factory());
2017-10-07 06:48:14 +02:00
}
2017-10-07 08:14:13 +02:00
/// Handler for `PUR` method.
2017-10-15 23:17:41 +02:00
pub fn put<A>(&mut self)
2017-10-10 08:07:32 +02:00
where A: Actor<Context=HttpContext<A>> + Route<State=S>
2017-10-07 06:48:14 +02:00
{
2017-10-15 23:17:41 +02:00
self.route_handler(Method::PUT, A::factory());
2017-10-07 06:48:14 +02:00
}
2017-10-07 08:14:13 +02:00
/// Handler for `METHOD` method.
2017-10-15 23:17:41 +02:00
pub fn delete<A>(&mut self)
2017-10-10 08:07:32 +02:00
where A: Actor<Context=HttpContext<A>> + Route<State=S>
2017-10-07 06:48:14 +02:00
{
2017-10-15 23:17:41 +02:00
self.route_handler(Method::DELETE, A::factory());
2017-10-07 06:48:14 +02:00
}
}
2017-10-08 23:56:51 +02:00
impl<S: 'static> RouteHandler<S> for Resource<S> {
2017-10-07 06:48:14 +02:00
2017-11-27 06:18:38 +01:00
fn handle(&self, req: HttpRequest<S>) -> Task {
2017-10-07 06:48:14 +02:00
if let Some(handler) = self.routes.get(req.method()) {
2017-11-27 06:18:38 +01:00
handler.handle(req)
2017-10-07 06:48:14 +02:00
} else {
2017-11-27 06:18:38 +01:00
self.default.handle(req)
2017-10-07 06:48:14 +02:00
}
}
}
#[cfg_attr(feature="cargo-clippy", allow(large_enum_variant))]
2017-10-10 08:07:32 +02:00
enum ReplyItem<A> where A: Actor + Route {
Message(HttpResponse),
2017-10-07 06:48:14 +02:00
Actor(A),
}
2017-10-08 08:59:57 +02:00
/// Represents response process.
2017-10-10 08:07:32 +02:00
pub struct Reply<A: Actor + Route> (ReplyItem<A>);
2017-10-07 06:48:14 +02:00
2017-10-10 08:07:32 +02:00
impl<A> Reply<A> where A: Actor + Route
2017-10-07 06:48:14 +02:00
{
/// Create async response
2017-10-22 18:13:29 +02:00
pub fn async(act: A) -> RouteResult<A> {
Ok(Reply(ReplyItem::Actor(act)))
2017-10-07 06:48:14 +02:00
}
2017-10-07 09:31:40 +02:00
/// Send response
2017-10-22 18:13:29 +02:00
pub fn reply<R: Into<HttpResponse>>(response: R) -> RouteResult<A> {
Ok(Reply(ReplyItem::Message(response.into())))
2017-10-07 06:48:14 +02:00
}
2017-10-10 08:07:32 +02:00
pub fn into(self, mut ctx: HttpContext<A>) -> Task where A: Actor<Context=HttpContext<A>>
{
2017-10-07 06:48:14 +02:00
match self.0 {
ReplyItem::Message(msg) => {
Task::reply(msg)
2017-10-07 08:14:13 +02:00
},
2017-10-08 23:56:51 +02:00
ReplyItem::Actor(act) => {
2017-10-07 08:14:13 +02:00
ctx.set_actor(act);
2017-10-26 01:25:26 +02:00
Task::with_context(ctx)
2017-10-07 06:48:14 +02:00
}
}
}
}
impl<A, T> From<T> for Reply<A>
where T: Into<HttpResponse>, A: Actor + Route
{
fn from(item: T) -> Self {
2017-10-22 18:13:29 +02:00
Reply(ReplyItem::Message(item.into()))
}
}