2018-12-21 12:38:41 +00:00
|
|
|
use failure::*;
|
|
|
|
|
2019-03-02 15:20:50 +00:00
|
|
|
use crate::tools;
|
2019-02-17 09:16:33 +00:00
|
|
|
use crate::api_schema::*;
|
2019-02-17 08:59:20 +00:00
|
|
|
use crate::api_schema::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-02-28 11:51:27 +00:00
|
|
|
use std::collections::{HashSet, HashMap};
|
2019-03-04 16:58:22 +00:00
|
|
|
use chrono::{DateTime, Datelike, Local};
|
2019-03-01 11:32:10 +00:00
|
|
|
use std::path::PathBuf;
|
2019-03-02 10:29:05 +00:00
|
|
|
use std::sync::Arc;
|
2018-12-21 12:38:41 +00:00
|
|
|
|
2019-01-16 09:19:49 +00:00
|
|
|
//use hyper::StatusCode;
|
|
|
|
//use hyper::rt::{Future, Stream};
|
2019-01-14 11:26:04 +00:00
|
|
|
|
2018-12-21 12:38:41 +00:00
|
|
|
use crate::config::datastore;
|
|
|
|
|
2019-02-12 13:13:31 +00:00
|
|
|
use crate::backup::*;
|
2019-04-06 09:27:23 +00:00
|
|
|
use crate::server::WorkerTask;
|
2018-12-21 12:38:41 +00:00
|
|
|
|
2019-03-14 09:54:09 +00:00
|
|
|
mod pxar;
|
2019-03-06 09:21:22 +00:00
|
|
|
mod upload;
|
2019-05-08 10:35:15 +00:00
|
|
|
mod backup;
|
2019-01-15 10:38:26 +00:00
|
|
|
|
2019-02-28 11:51:27 +00:00
|
|
|
fn group_backups(backup_list: Vec<BackupInfo>) -> HashMap<String, Vec<BackupInfo>> {
|
|
|
|
|
|
|
|
let mut group_hash = HashMap::new();
|
|
|
|
|
|
|
|
for info in backup_list {
|
2019-03-04 12:51:36 +00:00
|
|
|
let group_id = info.backup_dir.group().group_path().to_str().unwrap().to_owned();
|
2019-02-28 11:51:27 +00:00
|
|
|
let time_list = group_hash.entry(group_id).or_insert(vec![]);
|
|
|
|
time_list.push(info);
|
|
|
|
}
|
|
|
|
|
|
|
|
group_hash
|
|
|
|
}
|
|
|
|
|
|
|
|
fn mark_selections<F: Fn(DateTime<Local>, &BackupInfo) -> String> (
|
2019-03-01 11:32:10 +00:00
|
|
|
mark: &mut HashSet<PathBuf>,
|
2019-02-28 11:51:27 +00:00
|
|
|
list: &Vec<BackupInfo>,
|
|
|
|
keep: usize,
|
|
|
|
select_id: F,
|
|
|
|
){
|
|
|
|
let mut hash = HashSet::new();
|
|
|
|
for info in list {
|
2019-03-04 12:51:36 +00:00
|
|
|
let local_time = info.backup_dir.backup_time().with_timezone(&Local);
|
2019-02-28 11:51:27 +00:00
|
|
|
if hash.len() >= keep as usize { break; }
|
2019-03-01 11:32:10 +00:00
|
|
|
let backup_id = info.backup_dir.relative_path();
|
2019-02-28 11:51:27 +00:00
|
|
|
let sel_id: String = select_id(local_time, &info);
|
|
|
|
if !hash.contains(&sel_id) {
|
|
|
|
hash.insert(sel_id);
|
|
|
|
//println!(" KEEP ID {} {}", backup_id, local_time.format("%c"));
|
|
|
|
mark.insert(backup_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-02 15:28:36 +00:00
|
|
|
fn list_groups(
|
2019-03-02 10:29:05 +00:00
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
|
|
|
_rpcenv: &mut RpcEnvironment,
|
|
|
|
) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let store = param["store"].as_str().unwrap();
|
|
|
|
|
|
|
|
let datastore = DataStore::lookup_datastore(store)?;
|
|
|
|
|
|
|
|
let backup_list = datastore.list_backups()?;
|
|
|
|
|
|
|
|
let group_hash = group_backups(backup_list);
|
|
|
|
|
|
|
|
let mut groups = vec![];
|
|
|
|
|
|
|
|
for (_group_id, mut list) in group_hash {
|
|
|
|
|
2019-03-04 17:20:57 +00:00
|
|
|
BackupInfo::sort_list(&mut list, false);
|
2019-03-02 10:29:05 +00:00
|
|
|
|
|
|
|
let info = &list[0];
|
2019-03-04 12:51:36 +00:00
|
|
|
let group = info.backup_dir.group();
|
2019-03-02 10:29:05 +00:00
|
|
|
|
|
|
|
groups.push(json!({
|
2019-03-04 12:38:23 +00:00
|
|
|
"backup-type": group.backup_type(),
|
|
|
|
"backup-id": group.backup_id(),
|
2019-03-04 12:51:36 +00:00
|
|
|
"last-backup": info.backup_dir.backup_time().timestamp(),
|
2019-03-02 15:28:36 +00:00
|
|
|
"backup-count": list.len() as u64,
|
|
|
|
"files": info.files,
|
2019-03-02 10:29:05 +00:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(json!(groups))
|
|
|
|
}
|
2019-02-28 11:51:27 +00:00
|
|
|
|
2019-03-06 09:49:59 +00:00
|
|
|
fn list_snapshot_files (
|
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
|
|
|
_rpcenv: &mut RpcEnvironment,
|
|
|
|
) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let store = tools::required_string_param(¶m, "store")?;
|
|
|
|
let backup_type = tools::required_string_param(¶m, "backup-type")?;
|
|
|
|
let backup_id = tools::required_string_param(¶m, "backup-id")?;
|
|
|
|
let backup_time = tools::required_integer_param(¶m, "backup-time")?;
|
|
|
|
|
|
|
|
let snapshot = BackupDir::new(backup_type, backup_id, backup_time);
|
|
|
|
|
|
|
|
let datastore = DataStore::lookup_datastore(store)?;
|
|
|
|
|
|
|
|
let files = datastore.list_files(&snapshot)?;
|
|
|
|
|
|
|
|
Ok(json!(files))
|
|
|
|
}
|
|
|
|
|
2019-03-03 10:29:00 +00:00
|
|
|
fn delete_snapshots (
|
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
|
|
|
_rpcenv: &mut RpcEnvironment,
|
|
|
|
) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let store = tools::required_string_param(¶m, "store")?;
|
|
|
|
let backup_type = tools::required_string_param(¶m, "backup-type")?;
|
|
|
|
let backup_id = tools::required_string_param(¶m, "backup-id")?;
|
|
|
|
let backup_time = tools::required_integer_param(¶m, "backup-time")?;
|
|
|
|
|
2019-03-05 08:16:54 +00:00
|
|
|
let snapshot = BackupDir::new(backup_type, backup_id, backup_time);
|
2019-03-03 10:29:00 +00:00
|
|
|
|
|
|
|
let datastore = DataStore::lookup_datastore(store)?;
|
|
|
|
|
|
|
|
datastore.remove_backup_dir(&snapshot)?;
|
|
|
|
|
|
|
|
Ok(Value::Null)
|
|
|
|
}
|
|
|
|
|
2019-03-02 15:20:50 +00:00
|
|
|
fn list_snapshots (
|
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
|
|
|
_rpcenv: &mut RpcEnvironment,
|
|
|
|
) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let store = tools::required_string_param(¶m, "store")?;
|
|
|
|
let backup_type = tools::required_string_param(¶m, "backup-type")?;
|
|
|
|
let backup_id = tools::required_string_param(¶m, "backup-id")?;
|
|
|
|
|
2019-03-04 12:38:23 +00:00
|
|
|
let group = BackupGroup::new(backup_type, backup_id);
|
2019-03-02 15:20:50 +00:00
|
|
|
|
|
|
|
let datastore = DataStore::lookup_datastore(store)?;
|
|
|
|
|
|
|
|
let backup_list = datastore.list_backups()?;
|
|
|
|
|
|
|
|
let mut group_hash = group_backups(backup_list);
|
|
|
|
|
|
|
|
let group_id = group.group_path().to_str().unwrap().to_owned();
|
|
|
|
|
|
|
|
let group_snapshots = match group_hash.get_mut(&group_id) {
|
|
|
|
Some(data) => {
|
|
|
|
// new backups first
|
2019-03-04 17:20:57 +00:00
|
|
|
BackupInfo::sort_list(data, false);
|
2019-03-02 15:20:50 +00:00
|
|
|
data
|
|
|
|
}
|
|
|
|
None => bail!("Backup group '{}' does not exists.", group_id),
|
|
|
|
};
|
|
|
|
|
|
|
|
let mut snapshots = vec![];
|
|
|
|
|
|
|
|
for info in group_snapshots {
|
|
|
|
|
2019-03-04 12:51:36 +00:00
|
|
|
let group = info.backup_dir.group();
|
2019-03-02 15:20:50 +00:00
|
|
|
|
|
|
|
snapshots.push(json!({
|
2019-03-04 12:38:23 +00:00
|
|
|
"backup-type": group.backup_type(),
|
|
|
|
"backup-id": group.backup_id(),
|
2019-03-04 12:51:36 +00:00
|
|
|
"backup-time": info.backup_dir.backup_time().timestamp(),
|
2019-03-02 15:20:50 +00:00
|
|
|
"files": info.files,
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(json!(snapshots))
|
|
|
|
}
|
|
|
|
|
2019-02-27 15:53:17 +00:00
|
|
|
fn prune(
|
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
|
|
|
_rpcenv: &mut RpcEnvironment,
|
|
|
|
) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let store = param["store"].as_str().unwrap();
|
|
|
|
|
|
|
|
let datastore = DataStore::lookup_datastore(store)?;
|
|
|
|
|
|
|
|
println!("Starting prune on store {}", store);
|
|
|
|
|
2019-02-28 11:51:27 +00:00
|
|
|
let backup_list = datastore.list_backups()?;
|
|
|
|
|
|
|
|
let group_hash = group_backups(backup_list);
|
|
|
|
|
|
|
|
for (_group_id, mut list) in group_hash {
|
|
|
|
|
|
|
|
let mut mark = HashSet::new();
|
|
|
|
|
2019-03-04 17:20:57 +00:00
|
|
|
BackupInfo::sort_list(&mut list, false);
|
2019-02-28 11:51:27 +00:00
|
|
|
|
|
|
|
if let Some(keep_last) = param["keep-last"].as_u64() {
|
|
|
|
list.iter().take(keep_last as usize).for_each(|info| {
|
2019-03-01 11:32:10 +00:00
|
|
|
mark.insert(info.backup_dir.relative_path());
|
2019-02-28 11:51:27 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(keep_daily) = param["keep-daily"].as_u64() {
|
|
|
|
mark_selections(&mut mark, &list, keep_daily as usize, |local_time, _info| {
|
|
|
|
format!("{}/{}/{}", local_time.year(), local_time.month(), local_time.day())
|
|
|
|
});
|
|
|
|
}
|
2019-02-27 15:53:17 +00:00
|
|
|
|
2019-02-28 11:51:27 +00:00
|
|
|
if let Some(keep_weekly) = param["keep-weekly"].as_u64() {
|
|
|
|
mark_selections(&mut mark, &list, keep_weekly as usize, |local_time, _info| {
|
|
|
|
format!("{}/{}", local_time.year(), local_time.iso_week().week())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(keep_monthly) = param["keep-monthly"].as_u64() {
|
|
|
|
mark_selections(&mut mark, &list, keep_monthly as usize, |local_time, _info| {
|
|
|
|
format!("{}/{}", local_time.year(), local_time.month())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(keep_yearly) = param["keep-yearly"].as_u64() {
|
|
|
|
mark_selections(&mut mark, &list, keep_yearly as usize, |local_time, _info| {
|
|
|
|
format!("{}/{}", local_time.year(), local_time.year())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-03-04 17:20:57 +00:00
|
|
|
let mut remove_list: Vec<BackupInfo> = list.into_iter()
|
2019-03-01 11:32:10 +00:00
|
|
|
.filter(|info| !mark.contains(&info.backup_dir.relative_path())).collect();
|
2019-02-28 11:51:27 +00:00
|
|
|
|
2019-03-04 17:20:57 +00:00
|
|
|
BackupInfo::sort_list(&mut remove_list, true);
|
2019-02-28 11:51:27 +00:00
|
|
|
|
|
|
|
for info in remove_list {
|
2019-03-01 11:32:10 +00:00
|
|
|
datastore.remove_backup_dir(&info.backup_dir)?;
|
2019-02-28 11:51:27 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-27 15:53:17 +00:00
|
|
|
|
|
|
|
Ok(json!(null))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn add_common_prune_prameters(schema: ObjectSchema) -> ObjectSchema {
|
|
|
|
|
|
|
|
schema
|
2019-02-28 11:51:27 +00:00
|
|
|
.optional(
|
|
|
|
"keep-last",
|
|
|
|
IntegerSchema::new("Number of backups to keep.")
|
|
|
|
.minimum(1)
|
|
|
|
)
|
2019-02-27 15:53:17 +00:00
|
|
|
.optional(
|
|
|
|
"keep-daily",
|
2019-02-28 11:51:27 +00:00
|
|
|
IntegerSchema::new("Number of daily backups to keep.")
|
|
|
|
.minimum(1)
|
|
|
|
)
|
|
|
|
.optional(
|
|
|
|
"keep-weekly",
|
|
|
|
IntegerSchema::new("Number of weekly backups to keep.")
|
|
|
|
.minimum(1)
|
|
|
|
)
|
|
|
|
.optional(
|
|
|
|
"keep-monthly",
|
|
|
|
IntegerSchema::new("Number of monthly backups to keep.")
|
|
|
|
.minimum(1)
|
|
|
|
)
|
|
|
|
.optional(
|
|
|
|
"keep-yearly",
|
|
|
|
IntegerSchema::new("Number of yearly backups to keep.")
|
|
|
|
.minimum(1)
|
2019-02-27 15:53:17 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn api_method_prune() -> ApiMethod {
|
|
|
|
ApiMethod::new(
|
|
|
|
prune,
|
|
|
|
add_common_prune_prameters(
|
|
|
|
ObjectSchema::new("Prune the datastore.")
|
|
|
|
.required(
|
|
|
|
"store",
|
|
|
|
StringSchema::new("Datastore name.")
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-01-26 13:50:37 +00:00
|
|
|
fn start_garbage_collection(
|
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
2019-04-06 09:27:23 +00:00
|
|
|
rpcenv: &mut RpcEnvironment,
|
2019-01-26 13:50:37 +00:00
|
|
|
) -> Result<Value, Error> {
|
2018-12-21 12:38:41 +00:00
|
|
|
|
2019-04-01 10:02:46 +00:00
|
|
|
let store = param["store"].as_str().unwrap().to_string();
|
2018-12-21 12:38:41 +00:00
|
|
|
|
2019-04-01 10:02:46 +00:00
|
|
|
let datastore = DataStore::lookup_datastore(&store)?;
|
2018-12-21 12:38:41 +00:00
|
|
|
|
2019-01-18 07:33:11 +00:00
|
|
|
println!("Starting garbage collection on store {}", store);
|
2018-12-21 12:38:41 +00:00
|
|
|
|
2019-04-06 09:27:23 +00:00
|
|
|
let to_stdout = if rpcenv.env_type() == RpcEnvironmentType::CLI { true } else { false };
|
2018-12-21 12:38:41 +00:00
|
|
|
|
2019-04-06 09:27:23 +00:00
|
|
|
let upid_str = WorkerTask::new_thread(
|
|
|
|
"garbage_collection", Some(store.clone()), "root@pam", to_stdout, move |worker|
|
|
|
|
{
|
|
|
|
worker.log(format!("starting garbage collection on store {}", store));
|
2019-04-06 15:57:38 +00:00
|
|
|
datastore.garbage_collection(worker)
|
2019-04-06 09:27:23 +00:00
|
|
|
})?;
|
|
|
|
|
|
|
|
Ok(json!(upid_str))
|
2018-12-21 12:38:41 +00:00
|
|
|
}
|
|
|
|
|
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.")
|
2019-01-18 07:33:11 +00:00
|
|
|
.required("store", StringSchema::new("Datastore name."))
|
2019-01-04 10:33:58 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-01-26 13:50:37 +00:00
|
|
|
fn garbage_collection_status(
|
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
|
|
|
_rpcenv: &mut RpcEnvironment,
|
|
|
|
) -> Result<Value, Error> {
|
2019-01-04 10:33:58 +00:00
|
|
|
|
2019-01-18 07:33:11 +00:00
|
|
|
let store = param["store"].as_str().unwrap();
|
2019-01-04 10:33:58 +00:00
|
|
|
|
2019-04-11 10:04:25 +00:00
|
|
|
let datastore = DataStore::lookup_datastore(&store)?;
|
|
|
|
|
2019-01-18 07:33:11 +00:00
|
|
|
println!("Garbage collection status on store {}", store);
|
2019-01-04 10:33:58 +00:00
|
|
|
|
2019-04-11 10:04:25 +00:00
|
|
|
let status = datastore.last_gc_status();
|
2019-01-04 10:33:58 +00:00
|
|
|
|
2019-04-11 10:04:25 +00:00
|
|
|
Ok(serde_json::to_value(&status)?)
|
2019-01-04 10:33:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn api_method_garbage_collection_status() -> ApiMethod {
|
|
|
|
ApiMethod::new(
|
|
|
|
garbage_collection_status,
|
|
|
|
ObjectSchema::new("Garbage collection status.")
|
2019-01-18 07:33:11 +00:00
|
|
|
.required("store", StringSchema::new("Datastore name."))
|
2019-01-04 10:33:58 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-01-26 13:50:37 +00:00
|
|
|
fn get_backup_list(
|
|
|
|
param: Value,
|
|
|
|
_info: &ApiMethod,
|
|
|
|
_rpcenv: &mut RpcEnvironment,
|
|
|
|
) -> Result<Value, Error> {
|
2019-01-21 10:22:55 +00:00
|
|
|
|
2019-01-30 17:25:37 +00:00
|
|
|
//let config = datastore::config()?;
|
2019-01-21 10:22:55 +00:00
|
|
|
|
|
|
|
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!({
|
2019-03-04 12:51:36 +00:00
|
|
|
"backup-type": info.backup_dir.group().backup_type(),
|
|
|
|
"backup-id": info.backup_dir.group().backup_id(),
|
|
|
|
"backup-time": info.backup_dir.backup_time().timestamp(),
|
2019-02-20 12:37:44 +00:00
|
|
|
"files": info.files,
|
2019-01-21 10:22:55 +00:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
let result = json!(list);
|
|
|
|
|
|
|
|
Ok(result)
|
|
|
|
}
|
2019-01-14 11:26:04 +00:00
|
|
|
|
2019-01-26 13:50:37 +00:00
|
|
|
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()?;
|
|
|
|
|
2019-01-18 07:33:11 +00:00
|
|
|
Ok(config.convert_to_array("store"))
|
2018-12-21 12:38:41 +00:00
|
|
|
}
|
|
|
|
|
2019-01-04 10:33:58 +00:00
|
|
|
|
2018-12-21 12:38:41 +00:00
|
|
|
pub fn router() -> Router {
|
|
|
|
|
2019-03-02 10:29:05 +00:00
|
|
|
let store_schema: Arc<Schema> = Arc::new(
|
|
|
|
StringSchema::new("Datastore name.").into()
|
|
|
|
);
|
|
|
|
|
2018-12-21 12:38:41 +00:00
|
|
|
let datastore_info = Router::new()
|
2019-01-21 10:22:55 +00:00
|
|
|
.subdir(
|
|
|
|
"backups",
|
|
|
|
Router::new()
|
|
|
|
.get(ApiMethod::new(
|
|
|
|
get_backup_list,
|
|
|
|
ObjectSchema::new("List backups.")
|
2019-03-02 10:29:05 +00:00
|
|
|
.required("store", store_schema.clone()))))
|
2019-01-17 08:16:50 +00:00
|
|
|
.subdir(
|
2019-03-14 09:54:09 +00:00
|
|
|
"pxar",
|
2019-01-17 08:16:50 +00:00
|
|
|
Router::new()
|
2019-03-14 09:54:09 +00:00
|
|
|
.download(pxar::api_method_download_pxar())
|
|
|
|
.upload(pxar::api_method_upload_pxar()))
|
2019-03-06 09:21:22 +00:00
|
|
|
.subdir(
|
|
|
|
"test-upload",
|
|
|
|
Router::new()
|
|
|
|
.upgrade(upload::api_method_upgrade_upload()))
|
2019-04-27 06:57:35 +00:00
|
|
|
.subdir(
|
2019-05-08 10:35:15 +00:00
|
|
|
"backup",
|
2019-04-27 06:57:35 +00:00
|
|
|
Router::new()
|
2019-05-08 10:35:15 +00:00
|
|
|
.upgrade(backup::api_method_upgrade_backup()))
|
2018-12-21 12:38:41 +00:00
|
|
|
.subdir(
|
|
|
|
"gc",
|
|
|
|
Router::new()
|
2019-01-04 10:33:58 +00:00
|
|
|
.get(api_method_garbage_collection_status())
|
2019-02-27 15:53:17 +00:00
|
|
|
.post(api_method_start_garbage_collection()))
|
2019-03-06 09:49:59 +00:00
|
|
|
.subdir(
|
|
|
|
"files",
|
|
|
|
Router::new()
|
|
|
|
.get(
|
|
|
|
ApiMethod::new(
|
|
|
|
list_snapshot_files,
|
|
|
|
ObjectSchema::new("List snapshot files.")
|
|
|
|
.required("store", store_schema.clone())
|
|
|
|
.required("backup-type", StringSchema::new("Backup type."))
|
|
|
|
.required("backup-id", StringSchema::new("Backup ID."))
|
|
|
|
.required("backup-time", IntegerSchema::new("Backup time (Unix epoch.)")
|
|
|
|
.minimum(1547797308))
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2019-03-02 10:29:05 +00:00
|
|
|
.subdir(
|
|
|
|
"groups",
|
|
|
|
Router::new()
|
|
|
|
.get(ApiMethod::new(
|
2019-03-02 15:28:36 +00:00
|
|
|
list_groups,
|
2019-03-02 10:29:05 +00:00
|
|
|
ObjectSchema::new("List backup groups.")
|
|
|
|
.required("store", store_schema.clone()))))
|
2019-03-02 15:20:50 +00:00
|
|
|
.subdir(
|
|
|
|
"snapshots",
|
|
|
|
Router::new()
|
2019-03-03 10:29:00 +00:00
|
|
|
.get(
|
|
|
|
ApiMethod::new(
|
|
|
|
list_snapshots,
|
|
|
|
ObjectSchema::new("List backup groups.")
|
|
|
|
.required("store", store_schema.clone())
|
|
|
|
.required("backup-type", StringSchema::new("Backup type."))
|
|
|
|
.required("backup-id", StringSchema::new("Backup ID."))
|
|
|
|
)
|
|
|
|
)
|
|
|
|
.delete(
|
|
|
|
ApiMethod::new(
|
|
|
|
delete_snapshots,
|
|
|
|
ObjectSchema::new("Delete backup snapshot.")
|
|
|
|
.required("store", store_schema.clone())
|
|
|
|
.required("backup-type", StringSchema::new("Backup type."))
|
|
|
|
.required("backup-id", StringSchema::new("Backup ID."))
|
|
|
|
.required("backup-time", IntegerSchema::new("Backup time (Unix epoch.)")
|
|
|
|
.minimum(1547797308))
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2019-02-27 15:53:17 +00:00
|
|
|
.subdir(
|
|
|
|
"prune",
|
|
|
|
Router::new()
|
2019-04-16 10:07:02 +00:00
|
|
|
.post(api_method_prune())
|
|
|
|
)
|
|
|
|
.list_subdirs();
|
2019-01-14 11:26:04 +00:00
|
|
|
|
2018-12-21 12:38:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
let route = Router::new()
|
|
|
|
.get(ApiMethod::new(
|
|
|
|
get_datastore_list,
|
|
|
|
ObjectSchema::new("Directory index.")))
|
2019-01-18 07:33:11 +00:00
|
|
|
.match_all("store", datastore_info);
|
2018-12-21 12:38:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
route
|
|
|
|
}
|