2018-11-15 16:07:55 +00:00
|
|
|
use failure::*;
|
|
|
|
|
|
|
|
use crate::api::schema::*;
|
|
|
|
use serde_json::{Value};
|
|
|
|
use std::collections::HashMap;
|
|
|
|
|
|
|
|
pub struct ApiMethod {
|
|
|
|
pub description: &'static str,
|
|
|
|
pub parameters: Schema,
|
|
|
|
pub returns: Schema,
|
2018-11-15 16:47:59 +00:00
|
|
|
pub handler: Box<Fn(Value, &ApiMethod) -> Result<Value, Error> + Send + Sync>,
|
2018-11-15 16:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub enum SubRoute {
|
|
|
|
None,
|
|
|
|
Hash(HashMap<String, Router>),
|
|
|
|
MatchAll { router: Box<Router>, param_name: String },
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Router {
|
|
|
|
pub get: Option<ApiMethod>,
|
|
|
|
pub put: Option<ApiMethod>,
|
|
|
|
pub post: Option<ApiMethod>,
|
|
|
|
pub delete: Option<ApiMethod>,
|
|
|
|
pub subroute: SubRoute,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Router {
|
|
|
|
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self {
|
|
|
|
get: None,
|
|
|
|
put: None,
|
|
|
|
post: None,
|
|
|
|
delete: None,
|
|
|
|
subroute: SubRoute::None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn subdirs(mut self, map: HashMap<String, Router>) -> Self {
|
|
|
|
self.subroute = SubRoute::Hash(map);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn match_all(mut self, router: Router) -> Self {
|
|
|
|
self.subroute = SubRoute::MatchAll { router: Box::new(router), param_name: "test".into() };
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get(mut self, m: ApiMethod) -> Self {
|
|
|
|
self.get = Some(m);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn find_route(&self, components: &[&str]) -> Option<&Router> {
|
|
|
|
|
|
|
|
if components.len() == 0 { return Some(self); };
|
|
|
|
|
|
|
|
let (dir, rest) = (components[0], &components[1..]);
|
|
|
|
|
|
|
|
match self.subroute {
|
|
|
|
SubRoute::None => {},
|
|
|
|
SubRoute::Hash(ref dirmap) => {
|
|
|
|
if let Some(ref router) = dirmap.get(dir) {
|
|
|
|
println!("FOUND SUBDIR {}", dir);
|
|
|
|
return router.find_route(rest);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
SubRoute::MatchAll { ref router, ref param_name } => {
|
|
|
|
println!("URI PARAM {} = {}", param_name, dir); // fixme: store somewhere
|
|
|
|
return router.find_route(rest);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|