2016-08-23 03:34:22 +00:00
|
|
|
use ::{Method, Handler, StaticRouteInfo};
|
|
|
|
use content_type::ContentType;
|
|
|
|
use super::{Collider, URI, URIBuf}; // :D
|
|
|
|
|
2016-03-21 09:22:22 +00:00
|
|
|
use term_painter::ToStyle;
|
|
|
|
use term_painter::Color::*;
|
2016-08-23 03:34:22 +00:00
|
|
|
|
2016-04-03 11:25:37 +00:00
|
|
|
use std::fmt;
|
|
|
|
use std::convert::From;
|
2016-08-26 08:55:11 +00:00
|
|
|
use request::Request;
|
2016-03-21 04:27:17 +00:00
|
|
|
|
|
|
|
pub struct Route {
|
2016-04-02 07:51:40 +00:00
|
|
|
pub method: Method,
|
2016-04-03 10:36:30 +00:00
|
|
|
pub handler: Handler,
|
2016-04-02 07:51:40 +00:00
|
|
|
pub path: URIBuf,
|
2016-08-23 03:34:22 +00:00
|
|
|
pub rank: isize,
|
|
|
|
pub content_type: ContentType,
|
2016-03-22 05:04:39 +00:00
|
|
|
}
|
|
|
|
|
2016-03-21 04:27:17 +00:00
|
|
|
impl Route {
|
2016-08-23 03:38:39 +00:00
|
|
|
pub fn ranked<S>(rank: isize, m: Method, path: S, handler: Handler)
|
|
|
|
-> Route where S: AsRef<str> {
|
|
|
|
Route {
|
|
|
|
method: m,
|
|
|
|
path: URIBuf::from(path.as_ref()),
|
|
|
|
handler: handler,
|
|
|
|
rank: rank,
|
|
|
|
content_type: ContentType::any(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-26 08:55:11 +00:00
|
|
|
pub fn new<S>(m: Method, path: S, handler: Handler) -> Route where S: AsRef<str> {
|
2016-04-02 08:46:41 +00:00
|
|
|
Route {
|
|
|
|
method: m,
|
|
|
|
handler: handler,
|
2016-04-23 02:48:03 +00:00
|
|
|
rank: (!path.as_ref().contains('<') as isize),
|
2016-04-03 10:36:30 +00:00
|
|
|
path: URIBuf::from(path.as_ref()),
|
2016-08-23 03:34:22 +00:00
|
|
|
content_type: ContentType::any(),
|
2016-03-21 04:27:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-03 10:36:30 +00:00
|
|
|
pub fn set_path<S>(&mut self, path: S) where S: AsRef<str> {
|
|
|
|
self.path = URIBuf::from(path.as_ref());
|
2016-03-21 04:27:17 +00:00
|
|
|
}
|
|
|
|
|
2016-03-22 05:04:39 +00:00
|
|
|
// FIXME: Decide whether a component has to be fully variable or not. That
|
2016-03-28 09:34:09 +00:00
|
|
|
// is, whether you can have: /a<a>b/ or even /<a>:<b>/
|
2016-03-22 05:04:39 +00:00
|
|
|
// TODO: Don't return a Vec...take in an &mut [&'a str] (no alloc!)
|
2016-08-26 08:55:11 +00:00
|
|
|
pub fn get_params<'a>(&self, uri: URI<'a>) -> Vec<&'a str> {
|
2016-04-02 07:51:40 +00:00
|
|
|
let route_components = self.path.segments();
|
2016-08-26 08:55:11 +00:00
|
|
|
let uri_components = uri.segments();
|
2016-03-22 05:04:39 +00:00
|
|
|
|
2016-04-02 07:51:40 +00:00
|
|
|
let mut result = Vec::with_capacity(self.path.segment_count());
|
|
|
|
for (route_seg, uri_seg) in route_components.zip(uri_components) {
|
2016-04-23 02:48:03 +00:00
|
|
|
if route_seg.starts_with('<') { // FIXME: Here.
|
2016-04-02 07:51:40 +00:00
|
|
|
result.push(uri_seg);
|
2016-03-22 05:04:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
result
|
|
|
|
}
|
2016-03-21 04:27:17 +00:00
|
|
|
}
|
|
|
|
|
2016-03-21 09:22:22 +00:00
|
|
|
impl fmt::Display for Route {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2016-08-26 08:55:11 +00:00
|
|
|
write!(f, "{} {} ", Green.paint(&self.method), Blue.paint(&self.path))?;
|
|
|
|
|
|
|
|
if !self.content_type.is_any() {
|
|
|
|
write!(f, "{}", Yellow.paint(&self.content_type))
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
2016-03-21 09:22:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-03 11:25:37 +00:00
|
|
|
impl<'a> From<&'a StaticRouteInfo> for Route {
|
|
|
|
fn from(info: &'a StaticRouteInfo) -> Route {
|
2016-08-26 08:55:11 +00:00
|
|
|
let mut route = Route::new(info.method, info.path, info.handler);
|
|
|
|
route.content_type = info.content_type.clone();
|
|
|
|
route
|
2016-04-03 11:25:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-21 04:27:17 +00:00
|
|
|
impl Collider for Route {
|
|
|
|
fn collides_with(&self, b: &Route) -> bool {
|
2016-08-26 08:55:11 +00:00
|
|
|
self.path.segment_count() == b.path.segment_count()
|
|
|
|
&& self.method == b.method
|
|
|
|
&& self.rank == b.rank
|
|
|
|
&& self.content_type.collides_with(&b.content_type)
|
|
|
|
&& self.path.collides_with(&b.path)
|
2016-03-21 04:27:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Collider<Route> for &'a str {
|
|
|
|
fn collides_with(&self, other: &Route) -> bool {
|
2016-04-02 07:51:40 +00:00
|
|
|
let path = URI::new(self);
|
2016-03-21 04:27:17 +00:00
|
|
|
path.collides_with(&other.path)
|
|
|
|
}
|
|
|
|
}
|
2016-03-21 09:22:22 +00:00
|
|
|
|
|
|
|
impl Collider<str> for Route {
|
|
|
|
fn collides_with(&self, other: &str) -> bool {
|
|
|
|
other.collides_with(self)
|
|
|
|
}
|
|
|
|
}
|
2016-08-26 08:55:11 +00:00
|
|
|
|
|
|
|
impl<'r> Collider<Request<'r>> for Route {
|
|
|
|
fn collides_with(&self, req: &Request) -> bool {
|
|
|
|
self.method == req.method
|
|
|
|
&& req.uri.collides_with(&self.path)
|
|
|
|
&& req.content_type().collides_with(&self.content_type)
|
|
|
|
}
|
|
|
|
}
|