2018-10-31 09:42:14 +00:00
|
|
|
use failure::*;
|
|
|
|
|
|
|
|
use json_schema::*;
|
|
|
|
use serde_json::{json, Value};
|
|
|
|
|
|
|
|
pub struct ApiMethod {
|
|
|
|
pub description: &'static str,
|
|
|
|
pub properties: StaticPropertyMap,
|
|
|
|
pub returns: Jss,
|
|
|
|
pub handler: fn(Value) -> Result<Value, Error>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub type StaticSubdirMap = phf::Map<&'static str, &'static MethodInfo>;
|
|
|
|
|
|
|
|
pub struct MethodInfo {
|
|
|
|
pub get: Option<&'static ApiMethod>,
|
|
|
|
pub put: Option<&'static ApiMethod>,
|
|
|
|
pub post: Option<&'static ApiMethod>,
|
|
|
|
pub delete: Option<&'static ApiMethod>,
|
|
|
|
pub subdirs: Option<&'static StaticSubdirMap>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub static METHOD_INFO_DEFAULTS: MethodInfo = MethodInfo {
|
|
|
|
get: None,
|
|
|
|
put: None,
|
|
|
|
post: None,
|
|
|
|
delete: None,
|
|
|
|
subdirs: None,
|
|
|
|
};
|
2018-11-01 10:30:49 +00:00
|
|
|
|
|
|
|
pub fn find_method_info<'a>(root: &'a MethodInfo, components: &[&str]) -> Option<&'a MethodInfo> {
|
|
|
|
|
|
|
|
if components.len() == 0 { return Some(root); };
|
|
|
|
|
|
|
|
let (dir, rest) = (components[0], &components[1..]);
|
|
|
|
|
|
|
|
if let Some(dirmap) = root.subdirs {
|
|
|
|
if let Some(info) = dirmap.get(dir) {
|
|
|
|
return find_method_info(info, rest);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|