1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
#![doc(html_root_url = "https://marad.github.io/hyper-routing/doc/hyper_routing")]
//! # Hyper Routing
//!
//! This cargo is a small extension to the great Hyper HTTP library. It basically is
//! adds the ability to define routes to request handlers and then query for the handlers
//! by request path.
//!
//! ## Usage
//!
//! To use the library just add:
//!
//! ```text
//! hyper = "^0.12"
//! hyper-routing = "^0.5"
//! ```
//!
//! to your dependencies.
//!
//! ```no_run
//! extern crate hyper;
//! extern crate hyper_routing;
//!
//! use hyper::header::{CONTENT_LENGTH, CONTENT_TYPE};
//! use hyper::{Request, Response, Body, Method};
//! use hyper::server::Server;
//! use hyper::rt::Future;
//! use hyper_routing::{Route, RouterBuilder, RouterService};
//!
//! fn basic_handler(_: Request<Body>) -> Response<Body> {
//! let body = "Hello World";
//! Response::builder()
//! .header(CONTENT_LENGTH, body.len() as u64)
//! .header(CONTENT_TYPE, "text/plain")
//! .body(Body::from(body))
//! .expect("Failed to construct the response")
//! }
//!
//! fn router_service() -> Result<RouterService, std::io::Error> {
//! let router = RouterBuilder::new()
//! .add(Route::get("/greet").using(basic_handler))
//! .add(Route::from(Method::PATCH, "/asd").using(basic_handler))
//! .build();
//!
//! Ok(RouterService::new(router))
//! }
//!
//! fn main() {
//! let addr = "0.0.0.0:8080".parse().unwrap();
//! let server = Server::bind(&addr)
//! .serve(router_service)
//! .map_err(|e| eprintln!("server error: {}", e));
//!
//! hyper::rt::run(server)
//! }
//! ```
//!
//! This code will start Hyper server and add use router to find handlers for request.
//! We create the `Route` so that when we visit path `/greet` the `basic_handler` handler
//! will be called.
//!
//! ## Things to note
//!
//! * `Path::new` method accepts regular expressions so you can match every path you please.
//! * If you have request matching multiple paths the one that was first `add`ed will be chosen.
//! * This library is in an early stage of development so there may be breaking changes comming
//! (but I'll try as hard as I can not to break backwards compatibility or break it just a little -
//! I promise I'll try!).
//!
//! # Waiting for your feedback
//!
//! I've created this little tool to help myself learn Rust and to avoid using big frameworks
//! like Iron or rustful. I just want to keep things simple.
//!
//! Obviously I could make some errors or bad design choices so I'm waiting for your feedback!
//! You may create an issue at [project's bug tracker](https://github.com/marad/hyper-router/issues).
extern crate futures;
extern crate hyper;
use futures::future::FutureResult;
use hyper::header::CONTENT_LENGTH;
use hyper::service::Service;
use hyper::{Body, Request, Response};
use hyper::Method;
use hyper::StatusCode;
mod builder;
pub mod handlers;
mod path;
pub mod route;
pub use self::builder::RouterBuilder;
pub use self::path::Path;
pub use self::route::Route;
pub use self::route::RouteBuilder;
pub type Handler = fn(Request<Body>) -> Response<Body>;
pub type HttpResult<T> = Result<T, StatusCode>;
/// This is the one. The router.
#[derive(Debug)]
pub struct Router {
routes: Vec<Route>,
}
impl Router {
/// Finds handler for given Hyper request.
///
/// This method uses default error handlers.
/// If the request does not match any route than default 404 handler is returned.
/// If the request match some routes but http method does not match (used GET but routes are
/// defined for POST) than default method not supported handler is returned.
pub fn find_handler_with_defaults(&self, request: &Request<Body>) -> Handler {
let matching_routes = self.find_matching_routes(request.uri().path());
match matching_routes.len() {
x if x == 0 => handlers::default_404_handler,
_ => self
.find_for_method(&matching_routes, request.method())
.unwrap_or(handlers::method_not_supported_handler),
}
}
/// Finds handler for given Hyper request.
///
/// It returns handler if it's found or `StatusCode` for error.
/// This method may return `NotFound`, `MethodNotAllowed` or `NotImplemented`
/// status codes.
pub fn find_handler(&self, request: &Request<Body>) -> HttpResult<Handler> {
let matching_routes = self.find_matching_routes(request.uri().path());
match matching_routes.len() {
x if x == 0 => Err(StatusCode::NOT_FOUND),
_ => self
.find_for_method(&matching_routes, request.method())
.map(Ok)
.unwrap_or(Err(StatusCode::METHOD_NOT_ALLOWED)),
}
}
/// Returns vector of `Route`s that match to given path.
pub fn find_matching_routes(&self, request_path: &str) -> Vec<&Route> {
self.routes
.iter()
.filter(|route| route.path.matcher.is_match(&request_path))
.collect()
}
fn find_for_method(&self, routes: &[&Route], method: &Method) -> Option<Handler> {
let method = method.clone();
routes
.iter()
.find(|route| route.method == method)
.map(|route| route.handler)
}
}
/// The default simple router service.
#[derive(Debug)]
pub struct RouterService {
pub router: Router,
pub error_handler: fn(StatusCode) -> Response<Body>,
}
impl RouterService {
pub fn new(router: Router) -> RouterService {
RouterService {
router,
error_handler: Self::default_error_handler,
}
}
fn default_error_handler(status_code: StatusCode) -> Response<Body> {
let error = "Routing error: page not found";
Response::builder()
.header(CONTENT_LENGTH, error.len() as u64)
.status(match status_code {
StatusCode::NOT_FOUND => StatusCode::NOT_FOUND,
_ => StatusCode::INTERNAL_SERVER_ERROR,
})
.body(Body::from(error))
.expect("Failed to construct a response")
}
}
impl Service for RouterService {
type ReqBody = Body;
type ResBody = Body;
type Error = hyper::Error;
type Future = FutureResult<Response<Body>, hyper::Error>;
fn call(&mut self, request: Request<Self::ReqBody>) -> Self::Future {
futures::future::ok(match self.router.find_handler(&request) {
Ok(handler) => handler(request),
Err(status_code) => (self.error_handler)(status_code),
})
}
}