proxmox-backup/src/api2/admin/datastore.rs

147 lines
3.5 KiB
Rust
Raw Normal View History

2018-12-21 12:38:41 +00:00
use failure::*;
use crate::api::schema::*;
use crate::api::router::*;
2019-01-16 09:19:49 +00:00
//use crate::server::rest::*;
2018-12-21 12:38:41 +00:00
use serde_json::{json, Value};
2019-01-16 09:19:49 +00:00
//use hyper::StatusCode;
//use hyper::rt::{Future, Stream};
2018-12-21 12:38:41 +00:00
use crate::config::datastore;
use crate::backup::*;
2018-12-21 12:38:41 +00:00
mod catar;
2018-12-21 12:38:41 +00:00
// this is just a test for mutability/mutex handling - will remove later
fn start_garbage_collection(
param: Value,
_info: &ApiMethod,
_rpcenv: &mut RpcEnvironment,
) -> Result<Value, Error> {
2018-12-21 12:38:41 +00:00
let store = param["store"].as_str().unwrap();
2018-12-21 12:38:41 +00:00
let datastore = DataStore::lookup_datastore(store)?;
2018-12-21 12:38:41 +00:00
println!("Starting garbage collection on store {}", store);
2018-12-21 12:38:41 +00:00
datastore.garbage_collection()?;
Ok(json!(null))
}
pub fn api_method_start_garbage_collection() -> ApiMethod {
ApiMethod::new(
start_garbage_collection,
ObjectSchema::new("Start garbage collection.")
.required("store", StringSchema::new("Datastore name."))
)
}
fn garbage_collection_status(
param: Value,
_info: &ApiMethod,
_rpcenv: &mut RpcEnvironment,
) -> Result<Value, Error> {
let store = param["store"].as_str().unwrap();
println!("Garbage collection status on store {}", store);
Ok(json!(null))
}
pub fn api_method_garbage_collection_status() -> ApiMethod {
ApiMethod::new(
garbage_collection_status,
ObjectSchema::new("Garbage collection status.")
.required("store", StringSchema::new("Datastore name."))
)
}
fn get_backup_list(
param: Value,
_info: &ApiMethod,
_rpcenv: &mut RpcEnvironment,
) -> Result<Value, Error> {
2019-01-30 17:25:37 +00:00
//let config = datastore::config()?;
let store = param["store"].as_str().unwrap();
let datastore = DataStore::lookup_datastore(store)?;
let mut list = vec![];
for info in datastore.list_backups()? {
list.push(json!({
"backup_type": info.backup_type,
"backup_id": info.backup_id,
"backup_time": info.backup_time.timestamp(),
}));
}
let result = json!(list);
Ok(result)
}
fn get_datastore_list(
_param: Value,
_info: &ApiMethod,
_rpcenv: &mut RpcEnvironment,
) -> Result<Value, Error> {
2018-12-21 12:38:41 +00:00
let config = datastore::config()?;
Ok(config.convert_to_array("store"))
2018-12-21 12:38:41 +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": "backups" },
{"subdir": "catar" },
2018-12-21 12:38:41 +00:00
{"subdir": "status"},
{"subdir": "gc" }
])),
ObjectSchema::new("Directory index.")
.required("store", StringSchema::new("Datastore name.")))
2018-12-21 12:38:41 +00:00
)
.subdir(
"backups",
Router::new()
.get(ApiMethod::new(
get_backup_list,
ObjectSchema::new("List backups.")
.required("store", StringSchema::new("Datastore name.")))))
.subdir(
"catar",
Router::new()
.download(catar::api_method_download_catar())
.upload(catar::api_method_upload_catar()))
2018-12-21 12:38:41 +00:00
.subdir(
"gc",
Router::new()
.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("store", datastore_info);
2018-12-21 12:38:41 +00:00
route
}