use failure::*; use crate::api::schema::*; use serde_json::{Value}; use std::collections::HashMap; pub struct ApiMethod { pub parameters: ObjectSchema, pub returns: Schema, pub handler: fn(Value, &ApiMethod) -> Result, } pub enum SubRoute { None, Hash(HashMap), MatchAll { router: Box, param_name: String }, } pub struct Router { pub get: Option, pub put: Option, pub post: Option, pub delete: Option, 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) -> Self { self.subroute = SubRoute::Hash(map); self } pub fn match_all(mut self, param_name: S, router: Router) -> Self where S: Into { self.subroute = SubRoute::MatchAll { router: Box::new(router), param_name: param_name.into() }; self } pub fn get(mut self, m: ApiMethod) -> Self { self.get = Some(m); self } pub fn put(mut self, m: ApiMethod) -> Self { self.put = Some(m); self } pub fn post(mut self, m: ApiMethod) -> Self { self.post = Some(m); self } pub fn delete(mut self, m: ApiMethod) -> Self { self.delete = Some(m); self } pub fn find_route(&self, components: &[&str], uri_param: &mut HashMap) -> 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, uri_param); } } SubRoute::MatchAll { ref router, ref param_name } => { println!("URI PARAM {} = {}", param_name, dir); // fixme: store somewhere uri_param.insert(param_name.clone(), dir.into()); return router.find_route(rest, uri_param); }, } None } }