proxmox-backup/src/api3.rs

67 lines
1.5 KiB
Rust
Raw Normal View History

2018-11-03 09:42:48 +00:00
use failure::*;
use std::collections::HashMap;
use crate::json_schema::*;
use crate::api_info::*;
use serde_json::{json, Value};
2018-11-14 16:32:17 +00:00
fn test_sync_api_handler(param: Value, _info: &ApiMethod) -> Result<Value, Error> {
2018-11-03 09:42:48 +00:00
println!("This is a test {}", param);
// let force: Option<bool> = Some(false);
//if let Some(force) = param.force {
//}
let _force = param["force"].as_bool()
.ok_or_else(|| format_err!("missing parameter 'force'"))?;
if let Some(_force) = param["force"].as_bool() {
}
Ok(json!(null))
}
2018-11-15 12:28:15 +00:00
fn test_subdir_api_handler(param: Value, _info: &ApiMethod) -> Result<Value, Error> {
println!("This is a subdir {}", param);
Ok(json!(null))
}
2018-11-15 10:46:13 +00:00
pub fn router() -> Router {
2018-11-03 09:42:48 +00:00
2018-11-15 12:28:15 +00:00
let route3 = Router::new()
.get(ApiMethod {
handler: test_subdir_api_handler,
description: "Another Endpoint.",
parameters: parameter!{},
returns: Jss::Null,
});
let route2 = Router::new()
2018-11-03 14:10:21 +00:00
.get(ApiMethod {
2018-11-10 11:06:39 +00:00
handler: test_sync_api_handler,
2018-11-03 14:10:21 +00:00
description: "This is a simple test.",
parameters: parameter!{
force => Boolean!{
2018-11-06 12:10:10 +00:00
optional => true,
2018-11-03 14:10:21 +00:00
description => "Test for boolean options."
}
},
returns: Jss::Null,
2018-11-15 12:28:15 +00:00
})
.subdirs({
let mut map = HashMap::new();
map.insert("subdir3".into(), route3);
map
2018-11-03 14:10:21 +00:00
});
2018-11-03 09:42:48 +00:00
2018-11-15 12:28:15 +00:00
let route = Router::new()
.match_all(route2);
2018-11-03 14:10:21 +00:00
route
2018-11-03 09:42:48 +00:00
}