use std::path::PathBuf; use failure::*; use serde_json::Value; use proxmox::api::{api, ApiMethod, Router, RpcEnvironment}; use crate::api2::types::*; use crate::backup::*; use crate::config::datastore; #[api( input: { properties: {}, }, returns: { description: "List the configured datastores.", type: Array, items: { type: datastore::DataStoreConfig, }, }, )] /// List all datastores pub fn list_datastores( _param: Value, _info: &ApiMethod, _rpcenv: &mut dyn RpcEnvironment, ) -> Result { let (config, digest) = datastore::config()?; Ok(config.convert_to_array("name", Some(&digest))) } #[api( protected: true, input: { properties: { name: { schema: DATASTORE_SCHEMA, }, comment: { optional: true, schema: SINGLE_LINE_COMMENT_SCHEMA, }, path: { schema: datastore::DIR_NAME_SCHEMA, }, }, }, )] /// Create new datastore config. pub fn create_datastore(name: String, param: Value) -> Result<(), Error> { // fixme: locking ? let datastore: datastore::DataStoreConfig = serde_json::from_value(param.clone())?; let (mut config, _digest) = datastore::config()?; if let Some(_) = config.sections.get(&name) { bail!("datastore '{}' already exists.", name); } let path: PathBuf = datastore.path.clone().into(); let backup_user = crate::backup::backup_user()?; let _store = ChunkStore::create(&name, path, backup_user.uid, backup_user.gid)?; config.set_data(&name, "datastore", &datastore)?; datastore::save_config(&config)?; Ok(()) } #[api( input: { properties: { name: { schema: DATASTORE_SCHEMA, }, }, }, )] /// Read a datastore configuration. pub fn read_datastore(name: String) -> Result { let (config, digest) = datastore::config()?; let mut data = config.lookup_json("datastore", &name)?; data.as_object_mut().unwrap() .insert("digest".into(), proxmox::tools::digest_to_hex(&digest).into()); Ok(data) } #[api( protected: true, input: { properties: { name: { schema: DATASTORE_SCHEMA, }, comment: { optional: true, schema: SINGLE_LINE_COMMENT_SCHEMA, }, path: { optional: true, schema: datastore::DIR_NAME_SCHEMA, }, }, }, )] /// Create new datastore config. pub fn update_datastore( name: String, comment: Option, path: Option, ) -> Result<(), Error> { // fixme: locking ? // pass/compare digest let (mut config, _digest) = datastore::config()?; let mut data: datastore::DataStoreConfig = config.lookup("datastore", &name)?; 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(path) = path { data.path = path; } config.set_data(&name, "datastore", &data)?; datastore::save_config(&config)?; Ok(()) } #[api( protected: true, input: { properties: { name: { schema: DATASTORE_SCHEMA, }, }, }, )] /// Remove a datastore configuration. pub fn delete_datastore(name: String) -> Result<(), Error> { // fixme: locking ? // fixme: check digest ? let (mut config, _digest) = datastore::config()?; match config.sections.get(&name) { Some(_) => { config.sections.remove(&name); }, None => bail!("datastore '{}' does not exist.", name), } datastore::save_config(&config)?; Ok(()) } const ITEM_ROUTER: Router = Router::new() .get(&API_METHOD_READ_DATASTORE) .put(&API_METHOD_UPDATE_DATASTORE) .delete(&API_METHOD_DELETE_DATASTORE); pub const ROUTER: Router = Router::new() .get(&API_METHOD_LIST_DATASTORES) .post(&API_METHOD_CREATE_DATASTORE) .match_all("name", &ITEM_ROUTER);