2020-01-10 12:28:15 +00:00
|
|
|
use failure::*;
|
|
|
|
use serde_json::Value;
|
|
|
|
|
2020-01-10 18:25:26 +00:00
|
|
|
use proxmox::api::{api, ApiMethod, Router, RpcEnvironment};
|
2020-01-10 12:28:15 +00:00
|
|
|
|
2020-01-13 10:47:07 +00:00
|
|
|
use crate::api2::types::*;
|
2020-01-10 12:28:15 +00:00
|
|
|
use crate::config::remotes;
|
|
|
|
|
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {},
|
|
|
|
},
|
|
|
|
returns: {
|
2020-01-14 13:55:58 +00:00
|
|
|
description: "The list of configured remotes (with config digest).",
|
2020-01-10 12:28:15 +00:00
|
|
|
type: Array,
|
|
|
|
items: {
|
|
|
|
type: remotes::Remote,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)]
|
|
|
|
/// List all remotes
|
|
|
|
pub fn list_remotes(
|
|
|
|
_param: Value,
|
|
|
|
_info: &ApiMethod,
|
|
|
|
_rpcenv: &mut dyn RpcEnvironment,
|
|
|
|
) -> Result<Value, Error> {
|
|
|
|
|
2020-01-14 11:57:03 +00:00
|
|
|
let (config, digest) = remotes::config()?;
|
2020-01-10 12:28:15 +00:00
|
|
|
|
2020-01-14 11:57:03 +00:00
|
|
|
Ok(config.convert_to_array("name", Some(&digest)))
|
2020-01-10 12:28:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[api(
|
2020-01-11 09:42:09 +00:00
|
|
|
protected: true,
|
2020-01-10 12:28:15 +00:00
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
name: {
|
2020-01-13 10:47:07 +00:00
|
|
|
schema: REMOTE_ID_SCHEMA,
|
2020-01-10 12:28:15 +00:00
|
|
|
},
|
|
|
|
comment: {
|
|
|
|
optional: true,
|
2020-01-13 11:02:13 +00:00
|
|
|
schema: SINGLE_LINE_COMMENT_SCHEMA,
|
2020-01-10 12:28:15 +00:00
|
|
|
},
|
|
|
|
host: {
|
2020-01-13 13:17:22 +00:00
|
|
|
schema: DNS_NAME_OR_IP_SCHEMA,
|
2020-01-10 12:28:15 +00:00
|
|
|
},
|
|
|
|
userid: {
|
2020-01-13 13:17:22 +00:00
|
|
|
schema: PROXMOX_USER_ID_SCHEMA,
|
2020-01-10 12:28:15 +00:00
|
|
|
},
|
|
|
|
password: {
|
|
|
|
schema: remotes::REMOTE_PASSWORD_SCHEMA,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)]
|
|
|
|
/// Create new remote.
|
|
|
|
pub fn create_remote(name: String, param: Value) -> Result<(), Error> {
|
|
|
|
|
2020-01-15 10:57:12 +00:00
|
|
|
let _lock = crate::tools::open_file_locked(remotes::REMOTES_CFG_LOCKFILE, std::time::Duration::new(10, 0))?;
|
2020-01-10 12:28:15 +00:00
|
|
|
|
|
|
|
let remote: remotes::Remote = serde_json::from_value(param.clone())?;
|
|
|
|
|
2020-01-14 11:57:03 +00:00
|
|
|
let (mut config, _digest) = remotes::config()?;
|
2020-01-10 12:28:15 +00:00
|
|
|
|
|
|
|
if let Some(_) = config.sections.get(&name) {
|
|
|
|
bail!("remote '{}' already exists.", name);
|
|
|
|
}
|
|
|
|
|
2020-01-11 10:09:27 +00:00
|
|
|
config.set_data(&name, "remote", &remote)?;
|
2020-01-10 12:28:15 +00:00
|
|
|
|
|
|
|
remotes::save_config(&config)?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-01-14 13:20:16 +00:00
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
name: {
|
|
|
|
schema: REMOTE_ID_SCHEMA,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-01-14 13:55:58 +00:00
|
|
|
returns: {
|
|
|
|
description: "The remote configuration (with config digest).",
|
|
|
|
type: remotes::Remote,
|
|
|
|
},
|
2020-01-14 13:20:16 +00:00
|
|
|
)]
|
|
|
|
/// Read remote configuration data.
|
|
|
|
pub fn read_remote(name: String) -> Result<Value, Error> {
|
|
|
|
let (config, digest) = remotes::config()?;
|
|
|
|
let mut data = config.lookup_json("remote", &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: REMOTE_ID_SCHEMA,
|
|
|
|
},
|
|
|
|
comment: {
|
|
|
|
optional: true,
|
|
|
|
schema: SINGLE_LINE_COMMENT_SCHEMA,
|
|
|
|
},
|
|
|
|
host: {
|
|
|
|
optional: true,
|
|
|
|
schema: DNS_NAME_OR_IP_SCHEMA,
|
|
|
|
},
|
|
|
|
userid: {
|
|
|
|
optional: true,
|
|
|
|
schema: PROXMOX_USER_ID_SCHEMA,
|
|
|
|
},
|
|
|
|
password: {
|
|
|
|
optional: true,
|
|
|
|
schema: remotes::REMOTE_PASSWORD_SCHEMA,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)]
|
|
|
|
/// Update remote configuration.
|
|
|
|
pub fn update_remote(
|
|
|
|
name: String,
|
|
|
|
comment: Option<String>,
|
|
|
|
host: Option<String>,
|
|
|
|
userid: Option<String>,
|
|
|
|
password: Option<String>,
|
|
|
|
) -> Result<(), Error> {
|
|
|
|
|
2020-01-15 10:57:12 +00:00
|
|
|
let _lock = crate::tools::open_file_locked(remotes::REMOTES_CFG_LOCKFILE, std::time::Duration::new(10, 0))?;
|
|
|
|
|
2020-01-14 13:20:16 +00:00
|
|
|
// pass/compare digest
|
|
|
|
let (mut config, _digest) = remotes::config()?;
|
|
|
|
|
|
|
|
let mut data: remotes::Remote = config.lookup("remote", &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(host) = host { data.host = host; }
|
|
|
|
if let Some(userid) = userid { data.userid = userid; }
|
|
|
|
if let Some(password) = password { data.password = password; }
|
|
|
|
|
|
|
|
config.set_data(&name, "remote", &data)?;
|
|
|
|
|
|
|
|
remotes::save_config(&config)?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-01-10 12:28:15 +00:00
|
|
|
#[api(
|
2020-01-11 09:42:09 +00:00
|
|
|
protected: true,
|
2020-01-10 12:28:15 +00:00
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
name: {
|
2020-01-13 10:47:07 +00:00
|
|
|
schema: REMOTE_ID_SCHEMA,
|
2020-01-10 12:28:15 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)]
|
|
|
|
/// Remove a remote from the configuration file.
|
|
|
|
pub fn delete_remote(name: String) -> Result<(), Error> {
|
|
|
|
|
|
|
|
// fixme: locking ?
|
|
|
|
// fixme: check digest ?
|
|
|
|
|
2020-01-14 11:57:03 +00:00
|
|
|
let (mut config, _digest) = remotes::config()?;
|
2020-01-10 12:28:15 +00:00
|
|
|
|
|
|
|
match config.sections.get(&name) {
|
|
|
|
Some(_) => { config.sections.remove(&name); },
|
|
|
|
None => bail!("remote '{}' does not exist.", name),
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-01-14 13:20:16 +00:00
|
|
|
const ITEM_ROUTER: Router = Router::new()
|
|
|
|
.get(&API_METHOD_READ_REMOTE)
|
|
|
|
.put(&API_METHOD_UPDATE_REMOTE)
|
|
|
|
.delete(&API_METHOD_DELETE_REMOTE);
|
|
|
|
|
2020-01-10 12:28:15 +00:00
|
|
|
pub const ROUTER: Router = Router::new()
|
|
|
|
.get(&API_METHOD_LIST_REMOTES)
|
|
|
|
.post(&API_METHOD_CREATE_REMOTE)
|
2020-01-14 13:20:16 +00:00
|
|
|
.match_all("name", &ITEM_ROUTER);
|