1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 07:53:00 +01:00

Add route scopes #202

This commit is contained in:
Nikolay Kim 2018-04-29 19:35:50 -07:00
parent aa757a5be8
commit 368730f5f1
5 changed files with 53 additions and 10 deletions

View File

@ -2,6 +2,8 @@
## 0.6.0 (...) ## 0.6.0 (...)
* Add route scopes #202
* Websocket CloseCode Empty/Status is ambiguous #193 * Websocket CloseCode Empty/Status is ambiguous #193
* Add Content-Disposition to NamedFile #204 * Add Content-Disposition to NamedFile #204

View File

@ -2,8 +2,7 @@ use std::cell::UnsafeCell;
use std::collections::HashMap; use std::collections::HashMap;
use std::rc::Rc; use std::rc::Rc;
use handler::Reply; use handler::{FromRequest, Handler, Reply, Responder, RouteHandler, WrapHandler};
use handler::{FromRequest, Handler, Responder, RouteHandler, WrapHandler};
use header::ContentEncoding; use header::ContentEncoding;
use http::Method; use http::Method;
use httprequest::HttpRequest; use httprequest::HttpRequest;
@ -11,6 +10,7 @@ use middleware::Middleware;
use pipeline::{HandlerType, Pipeline, PipelineHandler}; use pipeline::{HandlerType, Pipeline, PipelineHandler};
use resource::ResourceHandler; use resource::ResourceHandler;
use router::{Resource, Router}; use router::{Resource, Router};
use scope::Scope;
use server::{HttpHandler, HttpHandlerTask, IntoHttpHandler, ServerSettings}; use server::{HttpHandler, HttpHandlerTask, IntoHttpHandler, ServerSettings};
#[deprecated(since = "0.5.0", note = "please use `actix_web::App` instead")] #[deprecated(since = "0.5.0", note = "please use `actix_web::App` instead")]
@ -76,9 +76,9 @@ impl<S: 'static> HttpApplication<S> {
&*(&req.path()[inner.prefix + prefix.len()..] as *const _) &*(&req.path()[inner.prefix + prefix.len()..] as *const _)
}; };
if path.is_empty() { if path.is_empty() {
req.match_info_mut().add("tail", ""); req.match_info_mut().add("tail", "/");
} else { } else {
req.match_info_mut().add("tail", path.split_at(1).1); req.match_info_mut().add("tail", path);
} }
return HandlerType::Handler(idx); return HandlerType::Handler(idx);
} }
@ -300,6 +300,48 @@ where
self self
} }
/// Configure scope for common root path.
///
/// Scopes collect multiple paths under a common path prefix.
/// Scope path can not contain variable path segments as resources.
///
/// ```rust
/// # extern crate actix_web;
/// use actix_web::{http, App, HttpRequest, HttpResponse};
///
/// fn main() {
/// let app = App::new()
/// .scope("/app", |scope| {
/// scope.resource("/path1", |r| r.f(|_| HttpResponse::Ok()))
/// .resource("/path2", |r| r.f(|_| HttpResponse::Ok()))
/// .resource("/path3", |r| r.f(|_| HttpResponse::MethodNotAllowed()))
/// });
/// }
/// ```
///
/// In the above example three routes get registered:
/// * /app/path1 - reponds to all http method
/// * /app/path2 - `GET` requests
/// * /app/path3 - `HEAD` requests
///
pub fn scope<F>(mut self, path: &str, f: F) -> App<S>
where
F: FnOnce(Scope<S>) -> Scope<S>,
{
{
let scope = Box::new(f(Scope::new()));
let mut path = path.trim().trim_right_matches('/').to_owned();
if !path.is_empty() && !path.starts_with('/') {
path.insert(0, '/')
}
let parts = self.parts.as_mut().expect("Use after finish");
parts.handlers.push((path, scope));
}
self
}
/// Configure resource for a specific path. /// Configure resource for a specific path.
/// ///
/// Resources may have variable path segments. For example, a /// Resources may have variable path segments. For example, a

View File

@ -149,6 +149,7 @@ mod pipeline;
mod resource; mod resource;
mod route; mod route;
mod router; mod router;
mod scope;
mod uri; mod uri;
mod with; mod with;
@ -171,6 +172,7 @@ pub use httpmessage::HttpMessage;
pub use httprequest::HttpRequest; pub use httprequest::HttpRequest;
pub use httpresponse::HttpResponse; pub use httpresponse::HttpResponse;
pub use json::Json; pub use json::Json;
pub use scope::Scope;
#[doc(hidden)] #[doc(hidden)]
pub mod httpcodes; pub mod httpcodes;

View File

@ -1,8 +1,9 @@
use futures::{Async, Future, Poll};
use std::cell::UnsafeCell; use std::cell::UnsafeCell;
use std::marker::PhantomData; use std::marker::PhantomData;
use std::rc::Rc; use std::rc::Rc;
use futures::{Async, Future, Poll};
use error::Error; use error::Error;
use handler::{AsyncHandler, FromRequest, Handler, Reply, ReplyItem, Responder, use handler::{AsyncHandler, FromRequest, Handler, Reply, ReplyItem, Responder,
RouteHandler, WrapHandler}; RouteHandler, WrapHandler};

View File

@ -388,11 +388,7 @@ where
} }
} }
Err(e) => { Err(e) => {
return if e.kind() == io::ErrorKind::WouldBlock { return e.kind() == io::ErrorKind::WouldBlock;
false
} else {
true
};
} }
} }
} }