proxmox-backup/src/api2/config/sync.rs

278 lines
7.2 KiB
Rust
Raw Normal View History

2020-05-21 08:14:26 +00:00
use anyhow::{bail, Error};
use serde_json::Value;
use ::serde::{Deserialize, Serialize};
use proxmox::api::{api, Router, RpcEnvironment};
use crate::api2::types::*;
2020-05-21 08:29:25 +00:00
use crate::config::sync::{self, SyncJobConfig};
2020-05-21 08:14:26 +00:00
// fixme: add access permissions
#[api(
input: {
properties: {},
},
returns: {
description: "List configured jobs.",
type: Array,
2020-05-21 08:29:25 +00:00
items: { type: sync::SyncJobConfig },
2020-05-21 08:14:26 +00:00
},
)]
2020-05-21 08:29:25 +00:00
/// List all sync jobs
pub fn list_sync_jobs(
2020-05-21 08:14:26 +00:00
_param: Value,
mut rpcenv: &mut dyn RpcEnvironment,
2020-05-21 08:29:25 +00:00
) -> Result<Vec<SyncJobConfig>, Error> {
2020-05-21 08:14:26 +00:00
2020-05-21 08:29:25 +00:00
let (config, digest) = sync::config()?;
2020-05-21 08:14:26 +00:00
2020-05-21 08:29:25 +00:00
let list = config.convert_to_typed_array("sync")?;
2020-05-21 08:14:26 +00:00
rpcenv["digest"] = proxmox::tools::digest_to_hex(&digest).into();
Ok(list)
}
#[api(
protected: true,
input: {
properties: {
id: {
schema: JOB_ID_SCHEMA,
},
store: {
schema: DATASTORE_SCHEMA,
},
remote: {
schema: REMOTE_ID_SCHEMA,
},
"remote-store": {
schema: DATASTORE_SCHEMA,
},
"remove-vanished": {
schema: REMOVE_VANISHED_BACKUPS_SCHEMA,
optional: true,
},
comment: {
optional: true,
schema: SINGLE_LINE_COMMENT_SCHEMA,
},
schedule: {
optional: true,
schema: SYNC_SCHEDULE_SCHEMA,
2020-05-21 08:14:26 +00:00
},
},
},
)]
2020-05-21 08:29:25 +00:00
/// Create a new sync job.
pub fn create_sync_job(param: Value) -> Result<(), Error> {
2020-05-21 08:14:26 +00:00
2020-05-21 08:29:25 +00:00
let _lock = crate::tools::open_file_locked(sync::SYNC_CFG_LOCKFILE, std::time::Duration::new(10, 0))?;
2020-05-21 08:14:26 +00:00
2020-05-21 08:29:25 +00:00
let sync_job: sync::SyncJobConfig = serde_json::from_value(param.clone())?;
2020-05-21 08:14:26 +00:00
2020-05-21 08:29:25 +00:00
let (mut config, _digest) = sync::config()?;
2020-05-21 08:14:26 +00:00
2020-05-21 08:29:25 +00:00
if let Some(_) = config.sections.get(&sync_job.id) {
bail!("job '{}' already exists.", sync_job.id);
2020-05-21 08:14:26 +00:00
}
2020-05-21 08:29:25 +00:00
config.set_data(&sync_job.id, "sync", &sync_job)?;
2020-05-21 08:14:26 +00:00
2020-05-21 08:29:25 +00:00
sync::save_config(&config)?;
2020-05-21 08:14:26 +00:00
Ok(())
}
#[api(
input: {
properties: {
id: {
schema: JOB_ID_SCHEMA,
},
},
},
returns: {
2020-05-21 08:29:25 +00:00
description: "The sync job configuration.",
type: sync::SyncJobConfig,
2020-05-21 08:14:26 +00:00
},
)]
2020-05-21 08:29:25 +00:00
/// Read a sync job configuration.
pub fn read_sync_job(
2020-05-21 08:14:26 +00:00
id: String,
mut rpcenv: &mut dyn RpcEnvironment,
2020-05-21 08:29:25 +00:00
) -> Result<SyncJobConfig, Error> {
let (config, digest) = sync::config()?;
2020-05-21 08:14:26 +00:00
2020-05-21 08:29:25 +00:00
let sync_job = config.lookup("sync", &id)?;
2020-05-21 08:14:26 +00:00
rpcenv["digest"] = proxmox::tools::digest_to_hex(&digest).into();
2020-05-21 08:29:25 +00:00
Ok(sync_job)
2020-05-21 08:14:26 +00:00
}
#[api()]
#[derive(Serialize, Deserialize)]
#[serde(rename_all="kebab-case")]
#[allow(non_camel_case_types)]
/// Deletable property name
pub enum DeletableProperty {
/// Delete the comment property.
comment,
/// Delete the job schedule.
schedule,
/// Delete the remove-vanished flag.
remove_vanished,
}
#[api(
protected: true,
input: {
properties: {
id: {
schema: JOB_ID_SCHEMA,
},
store: {
schema: DATASTORE_SCHEMA,
optional: true,
},
remote: {
schema: REMOTE_ID_SCHEMA,
optional: true,
},
"remote-store": {
schema: DATASTORE_SCHEMA,
optional: true,
},
"remove-vanished": {
schema: REMOVE_VANISHED_BACKUPS_SCHEMA,
optional: true,
},
comment: {
optional: true,
schema: SINGLE_LINE_COMMENT_SCHEMA,
},
schedule: {
optional: true,
schema: SYNC_SCHEDULE_SCHEMA,
2020-05-21 08:14:26 +00:00
},
delete: {
description: "List of properties to delete.",
type: Array,
optional: true,
items: {
type: DeletableProperty,
}
},
digest: {
optional: true,
schema: PROXMOX_CONFIG_DIGEST_SCHEMA,
},
},
},
)]
2020-05-21 08:29:25 +00:00
/// Update sync job config.
pub fn update_sync_job(
2020-05-21 08:14:26 +00:00
id: String,
store: Option<String>,
remote: Option<String>,
remote_store: Option<String>,
remove_vanished: Option<bool>,
comment: Option<String>,
schedule: Option<String>,
delete: Option<Vec<DeletableProperty>>,
digest: Option<String>,
) -> Result<(), Error> {
2020-05-21 08:29:25 +00:00
let _lock = crate::tools::open_file_locked(sync::SYNC_CFG_LOCKFILE, std::time::Duration::new(10, 0))?;
2020-05-21 08:14:26 +00:00
// pass/compare digest
2020-05-21 08:29:25 +00:00
let (mut config, expected_digest) = sync::config()?;
2020-05-21 08:14:26 +00:00
if let Some(ref digest) = digest {
let digest = proxmox::tools::hex_to_digest(digest)?;
crate::tools::detect_modified_configuration_file(&digest, &expected_digest)?;
}
2020-05-21 08:29:25 +00:00
let mut data: sync::SyncJobConfig = config.lookup("sync", &id)?;
2020-05-21 08:14:26 +00:00
if let Some(delete) = delete {
for delete_prop in delete {
match delete_prop {
DeletableProperty::comment => { data.comment = None; },
DeletableProperty::schedule => { data.schedule = None; },
DeletableProperty::remove_vanished => { data.remove_vanished = None; },
}
}
}
if let Some(comment) = comment {
let comment = comment.trim().to_string();
if comment.is_empty() {
data.comment = None;
} else {
data.comment = Some(comment);
}
}
if let Some(store) = store { data.store = store; }
if let Some(remote) = remote { data.remote = remote; }
if let Some(remote_store) = remote_store { data.remote_store = remote_store; }
if schedule.is_some() { data.schedule = schedule; }
if remove_vanished.is_some() { data.remove_vanished = remove_vanished; }
2020-05-21 08:29:25 +00:00
config.set_data(&id, "sync", &data)?;
2020-05-21 08:14:26 +00:00
2020-05-21 08:29:25 +00:00
sync::save_config(&config)?;
2020-05-21 08:14:26 +00:00
Ok(())
}
#[api(
protected: true,
input: {
properties: {
id: {
schema: JOB_ID_SCHEMA,
},
digest: {
optional: true,
schema: PROXMOX_CONFIG_DIGEST_SCHEMA,
},
},
},
)]
2020-05-21 08:29:25 +00:00
/// Remove a sync job configuration
pub fn delete_sync_job(id: String, digest: Option<String>) -> Result<(), Error> {
2020-05-21 08:14:26 +00:00
2020-05-21 08:29:25 +00:00
let _lock = crate::tools::open_file_locked(sync::SYNC_CFG_LOCKFILE, std::time::Duration::new(10, 0))?;
2020-05-21 08:14:26 +00:00
2020-05-21 08:29:25 +00:00
let (mut config, expected_digest) = sync::config()?;
2020-05-21 08:14:26 +00:00
if let Some(ref digest) = digest {
let digest = proxmox::tools::hex_to_digest(digest)?;
crate::tools::detect_modified_configuration_file(&digest, &expected_digest)?;
}
match config.sections.get(&id) {
Some(_) => { config.sections.remove(&id); },
None => bail!("job '{}' does not exist.", id),
}
2020-05-21 08:29:25 +00:00
sync::save_config(&config)?;
2020-05-21 08:14:26 +00:00
Ok(())
}
const ITEM_ROUTER: Router = Router::new()
2020-05-21 08:29:25 +00:00
.get(&API_METHOD_READ_SYNC_JOB)
.put(&API_METHOD_UPDATE_SYNC_JOB)
.delete(&API_METHOD_DELETE_SYNC_JOB);
2020-05-21 08:14:26 +00:00
pub const ROUTER: Router = Router::new()
2020-05-21 08:29:25 +00:00
.get(&API_METHOD_LIST_SYNC_JOBS)
.post(&API_METHOD_CREATE_SYNC_JOB)
.match_all("id", &ITEM_ROUTER);