use anyhow::{Error}; use lazy_static::lazy_static; use std::collections::HashMap; use serde::{Serialize, Deserialize}; use proxmox::api::{ api, schema::*, section_config::{ SectionConfig, SectionConfigData, SectionConfigPlugin, } }; use proxmox::tools::{fs::replace_file, fs::CreateOptions}; use crate::api2::types::*; lazy_static! { static ref CONFIG: SectionConfig = init(); } // fixme: define better schemas pub const DIR_NAME_SCHEMA: Schema = StringSchema::new("Directory name").schema(); #[api( properties: { name: { schema: DATASTORE_SCHEMA, }, path: { schema: DIR_NAME_SCHEMA, }, comment: { optional: true, schema: SINGLE_LINE_COMMENT_SCHEMA, }, "gc-schedule": { optional: true, schema: GC_SCHEDULE_SCHEMA, }, "prune-schedule": { optional: true, schema: PRUNE_SCHEDULE_SCHEMA, }, "keep-last": { optional: true, schema: PRUNE_SCHEMA_KEEP_LAST, }, "keep-hourly": { optional: true, schema: PRUNE_SCHEMA_KEEP_HOURLY, }, "keep-daily": { optional: true, schema: PRUNE_SCHEMA_KEEP_DAILY, }, "keep-weekly": { optional: true, schema: PRUNE_SCHEMA_KEEP_WEEKLY, }, "keep-monthly": { optional: true, schema: PRUNE_SCHEMA_KEEP_MONTHLY, }, "keep-yearly": { optional: true, schema: PRUNE_SCHEMA_KEEP_YEARLY, }, "verify-new": { optional: true, type: bool, }, } )] #[serde(rename_all="kebab-case")] #[derive(Serialize,Deserialize)] /// Datastore configuration properties. pub struct DataStoreConfig { pub name: String, #[serde(skip_serializing_if="Option::is_none")] pub comment: Option, pub path: String, #[serde(skip_serializing_if="Option::is_none")] pub gc_schedule: Option, #[serde(skip_serializing_if="Option::is_none")] pub prune_schedule: Option, #[serde(skip_serializing_if="Option::is_none")] pub keep_last: Option, #[serde(skip_serializing_if="Option::is_none")] pub keep_hourly: Option, #[serde(skip_serializing_if="Option::is_none")] pub keep_daily: Option, #[serde(skip_serializing_if="Option::is_none")] pub keep_weekly: Option, #[serde(skip_serializing_if="Option::is_none")] pub keep_monthly: Option, #[serde(skip_serializing_if="Option::is_none")] pub keep_yearly: Option, /// If enabled, all backups will be verified right after completion. #[serde(skip_serializing_if="Option::is_none")] pub verify_new: Option, } fn init() -> SectionConfig { let obj_schema = match DataStoreConfig::API_SCHEMA { Schema::Object(ref obj_schema) => obj_schema, _ => unreachable!(), }; let plugin = SectionConfigPlugin::new("datastore".to_string(), Some(String::from("name")), obj_schema); let mut config = SectionConfig::new(&DATASTORE_SCHEMA); config.register_plugin(plugin); config } pub const DATASTORE_CFG_FILENAME: &str = "/etc/proxmox-backup/datastore.cfg"; pub const DATASTORE_CFG_LOCKFILE: &str = "/etc/proxmox-backup/.datastore.lck"; pub fn config() -> Result<(SectionConfigData, [u8;32]), Error> { let content = proxmox::tools::fs::file_read_optional_string(DATASTORE_CFG_FILENAME)?; let content = content.unwrap_or(String::from("")); let digest = openssl::sha::sha256(content.as_bytes()); let data = CONFIG.parse(DATASTORE_CFG_FILENAME, &content)?; Ok((data, digest)) } pub fn save_config(config: &SectionConfigData) -> Result<(), Error> { let raw = CONFIG.write(DATASTORE_CFG_FILENAME, &config)?; let backup_user = crate::backup::backup_user()?; let mode = nix::sys::stat::Mode::from_bits_truncate(0o0640); // set the correct owner/group/permissions while saving file // owner(rw) = root, group(r)= backup let options = CreateOptions::new() .perm(mode) .owner(nix::unistd::ROOT) .group(backup_user.gid); replace_file(DATASTORE_CFG_FILENAME, raw.as_bytes(), options)?; Ok(()) } // shell completion helper pub fn complete_datastore_name(_arg: &str, _param: &HashMap) -> Vec { match config() { Ok((data, _digest)) => data.sections.iter().map(|(id, _)| id.to_string()).collect(), Err(_) => return vec![], } } pub fn complete_acl_path(_arg: &str, _param: &HashMap) -> Vec { let mut list = Vec::new(); list.push(String::from("/")); list.push(String::from("/datastore")); list.push(String::from("/datastore/")); if let Ok((data, _digest)) = config() { for id in data.sections.keys() { list.push(format!("/datastore/{}", id)); } } list } pub fn complete_calendar_event(_arg: &str, _param: &HashMap) -> Vec { // just give some hints about possible values ["minutely", "hourly", "daily", "mon..fri", "0:0"] .iter().map(|s| String::from(*s)).collect() }