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

107 lines
2.4 KiB
Rust
Raw Normal View History

2018-12-08 13:44:55 +00:00
use failure::*;
2018-12-08 13:55:54 +00:00
//use std::collections::HashMap;
2018-12-08 13:44:55 +00:00
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::*;
use crate::backup::*;
2018-12-08 13:44:55 +00:00
use serde_json::{json, Value};
2018-12-16 12:57:59 +00:00
use std::path::PathBuf;
2018-12-08 13:44:55 +00:00
2018-12-08 13:51:08 +00:00
use crate::config::datastore;
2019-11-21 08:36:41 +00:00
pub const GET: ApiMethod = ApiMethod::new(
&ApiHandler::Sync(&get_datastore_list),
&ObjectSchema::new("Directory index.", &[])
);
fn get_datastore_list(
_param: Value,
_info: &ApiMethod,
_rpcenv: &mut dyn RpcEnvironment,
) -> Result<Value, Error> {
2018-12-08 13:51:08 +00:00
let config = datastore::config()?;
Ok(config.convert_to_array("name"))
}
2019-11-21 08:36:41 +00:00
pub const POST: ApiMethod = ApiMethod::new(
&ApiHandler::Sync(&create_datastore),
&ObjectSchema::new(
"Create new datastore.",
&[
("name", false, &StringSchema::new("Datastore name.").schema()),
("path", false, &StringSchema::new("Directory path (must exist).").schema()),
],
)
);
fn create_datastore(
param: Value,
_info: &ApiMethod,
_rpcenv: &mut dyn RpcEnvironment,
) -> Result<Value, Error> {
2018-12-09 11:51:31 +00:00
// fixme: locking ?
let mut config = datastore::config()?;
let name = param["name"].as_str().unwrap();
if let Some(_) = config.sections.get(name) {
bail!("datastore '{}' already exists.", name);
}
let path: PathBuf = param["path"].as_str().unwrap().into();
2018-12-19 12:40:26 +00:00
let _store = ChunkStore::create(name, path)?;
2018-12-09 11:51:31 +00:00
let datastore = json!({
"path": param["path"]
});
config.set_data(name, "datastore", datastore);
datastore::save_config(&config)?;
Ok(Value::Null)
2018-12-08 13:44:55 +00:00
}
2019-11-21 08:36:41 +00:00
pub const DELETE: ApiMethod = ApiMethod::new(
&ApiHandler::Sync(&delete_datastore),
&ObjectSchema::new(
"Remove a datastore configuration.",
&[
("name", false, &StringSchema::new("Datastore name.").schema()),
],
)
);
fn delete_datastore(
param: Value,
_info: &ApiMethod,
_rpcenv: &mut dyn RpcEnvironment,
) -> Result<Value, Error> {
println!("This is a test {}", param);
// fixme: locking ?
// fixme: check digest ?
let mut config = datastore::config()?;
let name = param["name"].as_str().unwrap();
match config.sections.get(name) {
Some(_) => { config.sections.remove(name); },
None => bail!("datastore '{}' does not exist.", name),
}
datastore::save_config(&config)?;
Ok(Value::Null)
}
2019-11-21 08:36:41 +00:00
pub const ROUTER: Router = Router::new()
.get(&GET)
.post(&POST)
.delete(&DELETE);