2019-02-17 08:59:20 +00:00
|
|
|
use crate::api_schema::router::*;
|
2018-11-15 09:14:08 +00:00
|
|
|
|
|
|
|
use std::collections::HashMap;
|
|
|
|
use std::path::{PathBuf};
|
|
|
|
|
|
|
|
use hyper::Method;
|
|
|
|
|
|
|
|
pub struct ApiConfig {
|
|
|
|
basedir: PathBuf,
|
2018-11-15 10:46:13 +00:00
|
|
|
router: &'static Router,
|
2018-11-15 09:14:08 +00:00
|
|
|
aliases: HashMap<String, PathBuf>,
|
2019-01-28 12:17:03 +00:00
|
|
|
env_type: RpcEnvironmentType,
|
2018-11-15 09:14:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ApiConfig {
|
|
|
|
|
2019-01-28 12:17:03 +00:00
|
|
|
pub fn new<B: Into<PathBuf>>(basedir: B, router: &'static Router, env_type: RpcEnvironmentType) -> Self {
|
2018-11-15 09:14:08 +00:00
|
|
|
Self {
|
|
|
|
basedir: basedir.into(),
|
|
|
|
router: router,
|
|
|
|
aliases: HashMap::new(),
|
2019-01-28 12:17:03 +00:00
|
|
|
env_type,
|
2018-11-15 09:14:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-14 11:26:04 +00:00
|
|
|
pub fn find_method(&self, components: &[&str], method: Method, uri_param: &mut HashMap<String, String>) -> &'static MethodDefinition {
|
2018-11-15 09:14:08 +00:00
|
|
|
|
2018-11-16 08:15:33 +00:00
|
|
|
if let Some(info) = self.router.find_route(components, uri_param) {
|
2019-01-14 11:26:04 +00:00
|
|
|
return match method {
|
2018-11-15 09:14:08 +00:00
|
|
|
Method::GET => &info.get,
|
|
|
|
Method::PUT => &info.put,
|
|
|
|
Method::POST => &info.post,
|
|
|
|
Method::DELETE => &info.delete,
|
2019-01-14 11:26:04 +00:00
|
|
|
_ => &MethodDefinition::None,
|
2018-11-15 09:14:08 +00:00
|
|
|
};
|
|
|
|
}
|
2019-01-14 11:26:04 +00:00
|
|
|
&MethodDefinition::None
|
2018-11-15 09:14:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn find_alias(&self, components: &[&str]) -> PathBuf {
|
|
|
|
|
|
|
|
let mut prefix = String::new();
|
|
|
|
let mut filename = self.basedir.clone();
|
|
|
|
let comp_len = components.len();
|
|
|
|
if comp_len >= 1 {
|
|
|
|
prefix.push_str(components[0]);
|
|
|
|
if let Some(subdir) = self.aliases.get(&prefix) {
|
|
|
|
filename.push(subdir);
|
|
|
|
for i in 1..comp_len { filename.push(components[i]) }
|
2018-12-01 14:21:25 +00:00
|
|
|
} else {
|
|
|
|
for i in 0..comp_len { filename.push(components[i]) }
|
2018-11-15 09:14:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
filename
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn add_alias<S, P>(&mut self, alias: S, path: P)
|
|
|
|
where S: Into<String>,
|
|
|
|
P: Into<PathBuf>,
|
|
|
|
{
|
|
|
|
self.aliases.insert(alias.into(), path.into());
|
|
|
|
}
|
2019-01-28 12:17:03 +00:00
|
|
|
|
|
|
|
pub fn env_type(&self) -> RpcEnvironmentType {
|
|
|
|
self.env_type
|
|
|
|
}
|
2018-11-15 09:14:08 +00:00
|
|
|
}
|