2018-12-21 12:38:41 +00:00
|
|
|
use failure::*;
|
|
|
|
|
|
|
|
use crate::api::schema::*;
|
|
|
|
use crate::api::router::*;
|
|
|
|
use serde_json::{json, Value};
|
|
|
|
|
|
|
|
use crate::config::datastore;
|
|
|
|
|
|
|
|
use crate::backup::datastore::*;
|
|
|
|
|
|
|
|
// this is just a test for mutability/mutex handling - will remove later
|
|
|
|
fn start_garbage_collection(param: Value, _info: &ApiMethod) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let name = param["name"].as_str().unwrap();
|
|
|
|
|
2018-12-22 16:37:25 +00:00
|
|
|
let datastore = DataStore::lookup_datastore(name)?;
|
2018-12-21 12:38:41 +00:00
|
|
|
|
|
|
|
println!("Starting garbage collection on store {}", name);
|
|
|
|
|
|
|
|
datastore.garbage_collection()?;
|
|
|
|
|
|
|
|
Ok(json!(null))
|
|
|
|
}
|
|
|
|
|
2019-01-04 10:33:58 +00:00
|
|
|
pub fn api_method_start_garbage_collection() -> ApiMethod {
|
|
|
|
ApiMethod::new(
|
|
|
|
start_garbage_collection,
|
|
|
|
ObjectSchema::new("Start garbage collection.")
|
|
|
|
.required("name", StringSchema::new("Datastore name."))
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn garbage_collection_status(param: Value, _info: &ApiMethod) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let name = param["name"].as_str().unwrap();
|
|
|
|
|
|
|
|
println!("Garbage collection status on store {}", name);
|
|
|
|
|
|
|
|
Ok(json!(null))
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn api_method_garbage_collection_status() -> ApiMethod {
|
|
|
|
ApiMethod::new(
|
|
|
|
garbage_collection_status,
|
|
|
|
ObjectSchema::new("Garbage collection status.")
|
|
|
|
.required("name", StringSchema::new("Datastore name."))
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2018-12-21 12:38:41 +00:00
|
|
|
fn get_datastore_list(_param: Value, _info: &ApiMethod) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let config = datastore::config()?;
|
|
|
|
|
|
|
|
Ok(config.convert_to_array("name"))
|
|
|
|
}
|
|
|
|
|
2019-01-04 10:33:58 +00:00
|
|
|
|
2018-12-21 12:38:41 +00:00
|
|
|
pub fn router() -> Router {
|
|
|
|
|
|
|
|
let datastore_info = Router::new()
|
|
|
|
.get(ApiMethod::new(
|
|
|
|
|_,_| Ok(json!([
|
|
|
|
{"subdir": "status"},
|
|
|
|
{"subdir": "gc" }
|
|
|
|
])),
|
|
|
|
ObjectSchema::new("Directory index.")
|
|
|
|
.required("name", StringSchema::new("Datastore name.")))
|
|
|
|
)
|
|
|
|
.subdir(
|
|
|
|
"gc",
|
|
|
|
Router::new()
|
2019-01-04 10:33:58 +00:00
|
|
|
.get(api_method_garbage_collection_status())
|
|
|
|
.post(api_method_start_garbage_collection()));
|
2018-12-21 12:38:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let route = Router::new()
|
|
|
|
.get(ApiMethod::new(
|
|
|
|
get_datastore_list,
|
|
|
|
ObjectSchema::new("Directory index.")))
|
|
|
|
.match_all("name", datastore_info);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
route
|
|
|
|
}
|