2019-12-22 16:35:06 +00:00
|
|
|
use std::path::PathBuf;
|
2020-01-10 10:58:31 +00:00
|
|
|
use std::collections::HashMap;
|
2018-12-09 10:59:32 +00:00
|
|
|
|
2020-04-17 12:11:25 +00:00
|
|
|
use anyhow::{bail, format_err, Error};
|
2020-01-30 12:29:39 +00:00
|
|
|
use serde_json::{json, Value};
|
|
|
|
|
2020-01-30 16:57:37 +00:00
|
|
|
use proxmox::api::{api, cli::*, RpcEnvironment, ApiHandler};
|
2019-12-19 07:45:27 +00:00
|
|
|
|
2019-12-22 16:35:06 +00:00
|
|
|
use proxmox_backup::configdir;
|
2019-12-19 07:45:27 +00:00
|
|
|
use proxmox_backup::tools;
|
2020-01-16 13:32:06 +00:00
|
|
|
use proxmox_backup::config::{self, remote::{self, Remote}};
|
2020-01-30 12:29:39 +00:00
|
|
|
use proxmox_backup::api2::{self, types::* };
|
2019-12-19 07:45:27 +00:00
|
|
|
use proxmox_backup::client::*;
|
|
|
|
use proxmox_backup::tools::ticket::*;
|
|
|
|
use proxmox_backup::auth_helpers::*;
|
|
|
|
|
|
|
|
async fn view_task_result(
|
|
|
|
client: HttpClient,
|
|
|
|
result: Value,
|
|
|
|
output_format: &str,
|
|
|
|
) -> Result<(), Error> {
|
|
|
|
let data = &result["data"];
|
|
|
|
if output_format == "text" {
|
|
|
|
if let Some(upid) = data.as_str() {
|
|
|
|
display_task_log(client, upid, true).await?;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
format_and_print_result(&data, &output_format);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2018-12-10 12:28:38 +00:00
|
|
|
|
2019-12-19 10:27:36 +00:00
|
|
|
fn connect() -> Result<HttpClient, Error> {
|
|
|
|
|
|
|
|
let uid = nix::unistd::Uid::current();
|
|
|
|
|
2020-01-25 11:18:00 +00:00
|
|
|
let mut options = HttpClientOptions::new()
|
2020-01-27 08:34:02 +00:00
|
|
|
.prefix(Some("proxmox-backup".to_string()))
|
2020-01-25 11:18:00 +00:00
|
|
|
.verify_cert(false); // not required for connection to localhost
|
|
|
|
|
2019-12-19 10:27:36 +00:00
|
|
|
let client = if uid.is_root() {
|
|
|
|
let ticket = assemble_rsa_ticket(private_auth_key(), "PBS", Some("root@pam"), None)?;
|
2020-01-25 11:18:00 +00:00
|
|
|
options = options.password(Some(ticket));
|
|
|
|
HttpClient::new("localhost", "root@pam", options)?
|
2019-12-19 10:27:36 +00:00
|
|
|
} else {
|
2020-01-25 11:18:00 +00:00
|
|
|
options = options.ticket_cache(true).interactive(true);
|
|
|
|
HttpClient::new("localhost", "root@pam", options)?
|
2019-12-19 10:27:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Ok(client)
|
|
|
|
}
|
|
|
|
|
2020-01-30 12:29:39 +00:00
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
"output-format": {
|
|
|
|
schema: OUTPUT_FORMAT,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)]
|
|
|
|
/// List configured remotes.
|
2020-01-30 16:57:37 +00:00
|
|
|
fn list_remotes(param: Value, rpcenv: &mut dyn RpcEnvironment) -> Result<Value, Error> {
|
2020-01-11 09:42:09 +00:00
|
|
|
|
2020-02-28 06:42:36 +00:00
|
|
|
let output_format = get_output_format(¶m);
|
2020-01-30 12:29:39 +00:00
|
|
|
|
2020-01-30 16:57:37 +00:00
|
|
|
let info = &api2::config::remote::API_METHOD_LIST_REMOTES;
|
|
|
|
let mut data = match info.handler {
|
|
|
|
ApiHandler::Sync(handler) => (handler)(param, info, rpcenv)?,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
2020-01-30 12:29:39 +00:00
|
|
|
|
2020-02-28 06:42:36 +00:00
|
|
|
let options = default_table_format_options()
|
2020-01-31 05:59:17 +00:00
|
|
|
.column(ColumnConfig::new("name"))
|
|
|
|
.column(ColumnConfig::new("host"))
|
|
|
|
.column(ColumnConfig::new("userid"))
|
|
|
|
.column(ColumnConfig::new("fingerprint"))
|
|
|
|
.column(ColumnConfig::new("comment"));
|
2020-01-30 12:29:39 +00:00
|
|
|
|
2020-01-30 16:57:37 +00:00
|
|
|
format_and_print_result_full(&mut data, info.returns, &output_format, &options);
|
2020-01-30 12:29:39 +00:00
|
|
|
|
|
|
|
Ok(Value::Null)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn remote_commands() -> CommandLineInterface {
|
2020-01-11 09:42:09 +00:00
|
|
|
|
|
|
|
let cmd_def = CliCommandMap::new()
|
2020-01-30 12:29:39 +00:00
|
|
|
.insert("list", CliCommand::new(&&API_METHOD_LIST_REMOTES))
|
2020-01-11 09:42:09 +00:00
|
|
|
.insert(
|
|
|
|
"create",
|
|
|
|
// fixme: howto handle password parameter?
|
2020-01-16 13:32:06 +00:00
|
|
|
CliCommand::new(&api2::config::remote::API_METHOD_CREATE_REMOTE)
|
2020-01-11 09:42:09 +00:00
|
|
|
.arg_param(&["name"])
|
|
|
|
)
|
2020-01-14 13:20:16 +00:00
|
|
|
.insert(
|
|
|
|
"update",
|
2020-01-16 13:32:06 +00:00
|
|
|
CliCommand::new(&api2::config::remote::API_METHOD_UPDATE_REMOTE)
|
2020-01-14 13:20:16 +00:00
|
|
|
.arg_param(&["name"])
|
2020-01-16 13:32:06 +00:00
|
|
|
.completion_cb("name", config::remote::complete_remote_name)
|
2020-01-14 13:20:16 +00:00
|
|
|
)
|
2020-01-11 09:42:09 +00:00
|
|
|
.insert(
|
|
|
|
"remove",
|
2020-01-16 13:32:06 +00:00
|
|
|
CliCommand::new(&api2::config::remote::API_METHOD_DELETE_REMOTE)
|
2020-01-11 09:42:09 +00:00
|
|
|
.arg_param(&["name"])
|
2020-01-16 13:32:06 +00:00
|
|
|
.completion_cb("name", config::remote::complete_remote_name)
|
2020-01-11 09:42:09 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
cmd_def.into()
|
|
|
|
}
|
|
|
|
|
2020-04-06 10:09:27 +00:00
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
"output-format": {
|
|
|
|
schema: OUTPUT_FORMAT,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)]
|
|
|
|
/// List configured users.
|
|
|
|
fn list_users(param: Value, rpcenv: &mut dyn RpcEnvironment) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let output_format = get_output_format(¶m);
|
|
|
|
|
2020-04-09 08:19:38 +00:00
|
|
|
let info = &api2::access::user::API_METHOD_LIST_USERS;
|
2020-04-06 10:09:27 +00:00
|
|
|
let mut data = match info.handler {
|
|
|
|
ApiHandler::Sync(handler) => (handler)(param, info, rpcenv)?,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let options = default_table_format_options()
|
|
|
|
.column(ColumnConfig::new("userid"))
|
2020-05-01 14:08:15 +00:00
|
|
|
.column(
|
|
|
|
ColumnConfig::new("enable")
|
|
|
|
.renderer(tools::format::render_bool_with_default_true)
|
|
|
|
)
|
|
|
|
.column(
|
|
|
|
ColumnConfig::new("expire")
|
|
|
|
.renderer(tools::format::render_epoch)
|
|
|
|
)
|
2020-04-06 10:09:27 +00:00
|
|
|
.column(ColumnConfig::new("firstname"))
|
|
|
|
.column(ColumnConfig::new("lastname"))
|
|
|
|
.column(ColumnConfig::new("email"))
|
|
|
|
.column(ColumnConfig::new("comment"));
|
|
|
|
|
|
|
|
format_and_print_result_full(&mut data, info.returns, &output_format, &options);
|
|
|
|
|
|
|
|
Ok(Value::Null)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn user_commands() -> CommandLineInterface {
|
|
|
|
|
|
|
|
let cmd_def = CliCommandMap::new()
|
|
|
|
.insert("list", CliCommand::new(&&API_METHOD_LIST_USERS))
|
|
|
|
.insert(
|
|
|
|
"create",
|
|
|
|
// fixme: howto handle password parameter?
|
2020-04-09 08:19:38 +00:00
|
|
|
CliCommand::new(&api2::access::user::API_METHOD_CREATE_USER)
|
2020-04-06 10:09:27 +00:00
|
|
|
.arg_param(&["userid"])
|
|
|
|
)
|
|
|
|
.insert(
|
|
|
|
"update",
|
2020-04-09 08:19:38 +00:00
|
|
|
CliCommand::new(&api2::access::user::API_METHOD_UPDATE_USER)
|
2020-04-06 10:09:27 +00:00
|
|
|
.arg_param(&["userid"])
|
|
|
|
.completion_cb("userid", config::user::complete_user_name)
|
|
|
|
)
|
|
|
|
.insert(
|
|
|
|
"remove",
|
2020-04-09 08:19:38 +00:00
|
|
|
CliCommand::new(&api2::access::user::API_METHOD_DELETE_USER)
|
2020-04-06 10:09:27 +00:00
|
|
|
.arg_param(&["userid"])
|
|
|
|
.completion_cb("userid", config::user::complete_user_name)
|
|
|
|
);
|
|
|
|
|
|
|
|
cmd_def.into()
|
|
|
|
}
|
|
|
|
|
2020-04-13 09:09:44 +00:00
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
"output-format": {
|
|
|
|
schema: OUTPUT_FORMAT,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)]
|
|
|
|
/// Access Control list.
|
|
|
|
fn list_acls(param: Value, rpcenv: &mut dyn RpcEnvironment) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let output_format = get_output_format(¶m);
|
|
|
|
|
|
|
|
let info = &api2::access::acl::API_METHOD_READ_ACL;
|
|
|
|
let mut data = match info.handler {
|
|
|
|
ApiHandler::Sync(handler) => (handler)(param, info, rpcenv)?,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
|
|
|
|
fn render_ugid(value: &Value, record: &Value) -> Result<String, Error> {
|
|
|
|
if value.is_null() { return Ok(String::new()); }
|
|
|
|
let ugid = value.as_str().unwrap();
|
|
|
|
let ugid_type = record["ugid_type"].as_str().unwrap();
|
|
|
|
|
|
|
|
if ugid_type == "user" {
|
|
|
|
Ok(ugid.to_string())
|
|
|
|
} else if ugid_type == "group" {
|
|
|
|
Ok(format!("@{}", ugid))
|
|
|
|
} else {
|
|
|
|
bail!("render_ugid: got unknown ugid_type");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let options = default_table_format_options()
|
|
|
|
.column(ColumnConfig::new("ugid").renderer(render_ugid))
|
|
|
|
.column(ColumnConfig::new("path"))
|
|
|
|
.column(ColumnConfig::new("propagate"))
|
|
|
|
.column(ColumnConfig::new("roleid"));
|
|
|
|
|
|
|
|
format_and_print_result_full(&mut data, info.returns, &output_format, &options);
|
|
|
|
|
|
|
|
Ok(Value::Null)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn acl_commands() -> CommandLineInterface {
|
|
|
|
|
|
|
|
let cmd_def = CliCommandMap::new()
|
2020-04-14 06:40:53 +00:00
|
|
|
.insert("list", CliCommand::new(&&API_METHOD_LIST_ACLS))
|
|
|
|
.insert(
|
|
|
|
"update",
|
|
|
|
CliCommand::new(&api2::access::acl::API_METHOD_UPDATE_ACL)
|
|
|
|
.arg_param(&["path", "role"])
|
|
|
|
.completion_cb("userid", config::user::complete_user_name)
|
|
|
|
.completion_cb("path", config::datastore::complete_acl_path)
|
|
|
|
|
|
|
|
);
|
2020-04-13 09:09:44 +00:00
|
|
|
|
|
|
|
cmd_def.into()
|
|
|
|
}
|
|
|
|
|
2020-04-22 15:14:52 +00:00
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
"output-format": {
|
|
|
|
schema: OUTPUT_FORMAT,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)]
|
|
|
|
/// Network device list.
|
2020-04-25 15:20:22 +00:00
|
|
|
fn list_network_devices(mut param: Value, rpcenv: &mut dyn RpcEnvironment) -> Result<Value, Error> {
|
2020-04-22 15:14:52 +00:00
|
|
|
|
|
|
|
let output_format = get_output_format(¶m);
|
|
|
|
|
2020-04-25 15:20:22 +00:00
|
|
|
param["node"] = "localhost".into();
|
|
|
|
|
2020-04-25 15:00:38 +00:00
|
|
|
let info = &api2::node::network::API_METHOD_LIST_NETWORK_DEVICES;
|
2020-04-22 15:14:52 +00:00
|
|
|
let mut data = match info.handler {
|
|
|
|
ApiHandler::Sync(handler) => (handler)(param, info, rpcenv)?,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
|
2020-05-18 07:57:35 +00:00
|
|
|
if let Value::String(ref diff) = rpcenv["changes"] {
|
|
|
|
if output_format == "text" {
|
|
|
|
eprintln!("pending changes:\n{}\n", diff);
|
2020-04-24 07:55:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-23 04:44:55 +00:00
|
|
|
fn render_address(_value: &Value, record: &Value) -> Result<String, Error> {
|
|
|
|
let mut text = String::new();
|
|
|
|
|
2020-05-06 05:51:05 +00:00
|
|
|
if let Some(cidr) = record["cidr"].as_str() {
|
2020-04-23 04:44:55 +00:00
|
|
|
text.push_str(cidr);
|
|
|
|
}
|
2020-05-06 05:51:05 +00:00
|
|
|
if let Some(cidr) = record["cidr6"].as_str() {
|
2020-04-23 04:44:55 +00:00
|
|
|
if !text.is_empty() { text.push('\n'); }
|
|
|
|
text.push_str(cidr);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(text)
|
|
|
|
}
|
|
|
|
|
2020-05-08 14:07:23 +00:00
|
|
|
fn render_ports(_value: &Value, record: &Value) -> Result<String, Error> {
|
|
|
|
let mut text = String::new();
|
|
|
|
|
|
|
|
if let Some(ports) = record["bridge_ports"].as_array() {
|
|
|
|
let list: Vec<&str> = ports.iter().filter_map(|v| v.as_str()).collect();
|
|
|
|
text.push_str(&list.join(" "));
|
|
|
|
}
|
|
|
|
if let Some(slaves) = record["slaves"].as_array() {
|
|
|
|
let list: Vec<&str> = slaves.iter().filter_map(|v| v.as_str()).collect();
|
|
|
|
text.push_str(&list.join(" "));
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(text)
|
|
|
|
}
|
|
|
|
|
2020-04-23 04:44:55 +00:00
|
|
|
fn render_gateway(_value: &Value, record: &Value) -> Result<String, Error> {
|
|
|
|
let mut text = String::new();
|
|
|
|
|
2020-05-06 05:51:05 +00:00
|
|
|
if let Some(gateway) = record["gateway"].as_str() {
|
2020-04-23 04:44:55 +00:00
|
|
|
text.push_str(gateway);
|
|
|
|
}
|
2020-05-06 05:51:05 +00:00
|
|
|
if let Some(gateway) = record["gateway6"].as_str() {
|
2020-04-23 04:44:55 +00:00
|
|
|
if !text.is_empty() { text.push('\n'); }
|
|
|
|
text.push_str(gateway);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(text)
|
|
|
|
}
|
|
|
|
|
2020-04-22 15:14:52 +00:00
|
|
|
let options = default_table_format_options()
|
|
|
|
.column(ColumnConfig::new("name"))
|
2020-05-08 14:07:23 +00:00
|
|
|
.column(ColumnConfig::new("type").header("type"))
|
2020-05-06 05:51:05 +00:00
|
|
|
.column(ColumnConfig::new("autostart"))
|
|
|
|
.column(ColumnConfig::new("method"))
|
|
|
|
.column(ColumnConfig::new("method6"))
|
|
|
|
.column(ColumnConfig::new("cidr").header("address").renderer(render_address))
|
2020-05-08 14:07:23 +00:00
|
|
|
.column(ColumnConfig::new("gateway").header("gateway").renderer(render_gateway))
|
|
|
|
.column(ColumnConfig::new("bridge_ports").header("ports/slaves").renderer(render_ports));
|
2020-04-22 15:14:52 +00:00
|
|
|
|
|
|
|
format_and_print_result_full(&mut data, info.returns, &output_format, &options);
|
|
|
|
|
|
|
|
Ok(Value::Null)
|
|
|
|
}
|
|
|
|
|
2020-04-24 08:27:43 +00:00
|
|
|
#[api()]
|
|
|
|
/// Show pending configuration changes (diff)
|
2020-04-25 15:20:22 +00:00
|
|
|
fn pending_network_changes(mut param: Value, rpcenv: &mut dyn RpcEnvironment) -> Result<Value, Error> {
|
|
|
|
param["node"] = "localhost".into();
|
2020-04-24 08:27:43 +00:00
|
|
|
|
2020-04-25 15:00:38 +00:00
|
|
|
let info = &api2::node::network::API_METHOD_LIST_NETWORK_DEVICES;
|
2020-04-24 08:27:43 +00:00
|
|
|
let _data = match info.handler {
|
|
|
|
ApiHandler::Sync(handler) => (handler)(param, info, rpcenv)?,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
|
2020-05-18 07:57:35 +00:00
|
|
|
if let Value::String(ref diff) = rpcenv["changes"] {
|
|
|
|
println!("{}", diff);
|
2020-04-24 08:27:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(Value::Null)
|
|
|
|
}
|
|
|
|
|
2020-04-21 12:28:26 +00:00
|
|
|
fn network_commands() -> CommandLineInterface {
|
|
|
|
|
|
|
|
let cmd_def = CliCommandMap::new()
|
2020-04-25 15:00:38 +00:00
|
|
|
.insert(
|
|
|
|
"list",
|
|
|
|
CliCommand::new(&API_METHOD_LIST_NETWORK_DEVICES)
|
|
|
|
)
|
|
|
|
.insert(
|
|
|
|
"changes",
|
|
|
|
CliCommand::new(&API_METHOD_PENDING_NETWORK_CHANGES)
|
|
|
|
)
|
2020-05-08 07:55:56 +00:00
|
|
|
.insert(
|
|
|
|
"create",
|
|
|
|
CliCommand::new(&api2::node::network::API_METHOD_CREATE_INTERFACE)
|
|
|
|
.fixed_param("node", String::from("localhost"))
|
|
|
|
.arg_param(&["iface"])
|
|
|
|
.completion_cb("iface", config::network::complete_interface_name)
|
2020-05-08 15:28:04 +00:00
|
|
|
.completion_cb("bridge_ports", config::network::complete_port_list)
|
|
|
|
.completion_cb("slaves", config::network::complete_port_list)
|
2020-05-08 07:55:56 +00:00
|
|
|
)
|
2020-04-24 07:55:46 +00:00
|
|
|
.insert(
|
|
|
|
"update",
|
2020-04-25 15:00:38 +00:00
|
|
|
CliCommand::new(&api2::node::network::API_METHOD_UPDATE_INTERFACE)
|
|
|
|
.fixed_param("node", String::from("localhost"))
|
2020-05-06 05:51:05 +00:00
|
|
|
.arg_param(&["iface"])
|
|
|
|
.completion_cb("iface", config::network::complete_interface_name)
|
2020-05-08 15:28:04 +00:00
|
|
|
.completion_cb("bridge_ports", config::network::complete_port_list)
|
|
|
|
.completion_cb("slaves", config::network::complete_port_list)
|
2020-04-22 08:54:07 +00:00
|
|
|
)
|
2020-04-24 07:55:46 +00:00
|
|
|
.insert(
|
|
|
|
"remove",
|
2020-04-25 15:00:38 +00:00
|
|
|
CliCommand::new(&api2::node::network::API_METHOD_DELETE_INTERFACE)
|
|
|
|
.fixed_param("node", String::from("localhost"))
|
2020-05-06 05:51:05 +00:00
|
|
|
.arg_param(&["iface"])
|
|
|
|
.completion_cb("iface", config::network::complete_interface_name)
|
2020-04-24 07:55:46 +00:00
|
|
|
)
|
2020-04-25 15:00:38 +00:00
|
|
|
.insert(
|
|
|
|
"revert",
|
|
|
|
CliCommand::new(&api2::node::network::API_METHOD_REVERT_NETWORK_CONFIG)
|
|
|
|
.fixed_param("node", String::from("localhost"))
|
|
|
|
)
|
2020-04-24 07:55:46 +00:00
|
|
|
.insert(
|
|
|
|
"reload",
|
2020-04-25 15:00:38 +00:00
|
|
|
CliCommand::new(&api2::node::network::API_METHOD_RELOAD_NETWORK_CONFIG)
|
|
|
|
.fixed_param("node", String::from("localhost"))
|
2020-04-22 08:54:07 +00:00
|
|
|
);
|
2020-04-21 12:28:26 +00:00
|
|
|
|
|
|
|
cmd_def.into()
|
|
|
|
}
|
|
|
|
|
2020-04-26 06:23:23 +00:00
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
"output-format": {
|
|
|
|
schema: OUTPUT_FORMAT,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)]
|
|
|
|
/// Read DNS settings
|
|
|
|
fn get_dns(mut param: Value, rpcenv: &mut dyn RpcEnvironment) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let output_format = get_output_format(¶m);
|
|
|
|
|
|
|
|
param["node"] = "localhost".into();
|
|
|
|
|
|
|
|
let info = &api2::node::dns::API_METHOD_GET_DNS;
|
|
|
|
let mut data = match info.handler {
|
|
|
|
ApiHandler::Sync(handler) => (handler)(param, info, rpcenv)?,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
let options = default_table_format_options()
|
|
|
|
.column(ColumnConfig::new("search"))
|
|
|
|
.column(ColumnConfig::new("dns1"))
|
|
|
|
.column(ColumnConfig::new("dns2"))
|
|
|
|
.column(ColumnConfig::new("dns3"));
|
|
|
|
|
|
|
|
format_and_print_result_full(&mut data, info.returns, &output_format, &options);
|
|
|
|
|
|
|
|
Ok(Value::Null)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn dns_commands() -> CommandLineInterface {
|
|
|
|
|
|
|
|
let cmd_def = CliCommandMap::new()
|
|
|
|
.insert(
|
|
|
|
"get",
|
|
|
|
CliCommand::new(&API_METHOD_GET_DNS)
|
|
|
|
)
|
|
|
|
.insert(
|
|
|
|
"set",
|
|
|
|
CliCommand::new(&api2::node::dns::API_METHOD_UPDATE_DNS)
|
|
|
|
.fixed_param("node", String::from("localhost"))
|
|
|
|
);
|
|
|
|
|
|
|
|
cmd_def.into()
|
|
|
|
}
|
|
|
|
|
2020-04-22 15:37:20 +00:00
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
"output-format": {
|
|
|
|
schema: OUTPUT_FORMAT,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)]
|
|
|
|
/// Datastore list.
|
|
|
|
fn list_datastores(param: Value, rpcenv: &mut dyn RpcEnvironment) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let output_format = get_output_format(¶m);
|
|
|
|
|
|
|
|
let info = &api2::config::datastore::API_METHOD_LIST_DATASTORES;
|
|
|
|
let mut data = match info.handler {
|
|
|
|
ApiHandler::Sync(handler) => (handler)(param, info, rpcenv)?,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let options = default_table_format_options()
|
|
|
|
.column(ColumnConfig::new("name"))
|
|
|
|
.column(ColumnConfig::new("path"))
|
|
|
|
.column(ColumnConfig::new("comment"));
|
|
|
|
|
|
|
|
format_and_print_result_full(&mut data, info.returns, &output_format, &options);
|
|
|
|
|
|
|
|
Ok(Value::Null)
|
|
|
|
}
|
|
|
|
|
2018-12-10 12:40:10 +00:00
|
|
|
fn datastore_commands() -> CommandLineInterface {
|
2018-12-09 10:59:32 +00:00
|
|
|
|
2018-12-11 10:31:36 +00:00
|
|
|
let cmd_def = CliCommandMap::new()
|
2020-04-22 15:37:20 +00:00
|
|
|
.insert("list", CliCommand::new(&API_METHOD_LIST_DATASTORES))
|
2018-12-11 10:31:36 +00:00
|
|
|
.insert("create",
|
2020-01-11 09:42:09 +00:00
|
|
|
CliCommand::new(&api2::config::datastore::API_METHOD_CREATE_DATASTORE)
|
2019-11-24 10:00:53 +00:00
|
|
|
.arg_param(&["name", "path"])
|
2019-12-09 16:40:34 +00:00
|
|
|
)
|
2020-01-14 13:47:26 +00:00
|
|
|
.insert("update",
|
|
|
|
CliCommand::new(&api2::config::datastore::API_METHOD_UPDATE_DATASTORE)
|
|
|
|
.arg_param(&["name"])
|
2020-01-15 11:42:13 +00:00
|
|
|
.completion_cb("name", config::datastore::complete_datastore_name)
|
2020-01-14 13:47:26 +00:00
|
|
|
)
|
2018-12-11 10:31:36 +00:00
|
|
|
.insert("remove",
|
2020-01-11 09:42:09 +00:00
|
|
|
CliCommand::new(&api2::config::datastore::API_METHOD_DELETE_DATASTORE)
|
2019-11-24 10:00:53 +00:00
|
|
|
.arg_param(&["name"])
|
2019-01-04 09:49:52 +00:00
|
|
|
.completion_cb("name", config::datastore::complete_datastore_name)
|
2019-12-09 16:40:34 +00:00
|
|
|
);
|
2018-12-10 12:28:38 +00:00
|
|
|
|
2018-12-10 12:51:10 +00:00
|
|
|
cmd_def.into()
|
2018-12-10 12:28:38 +00:00
|
|
|
}
|
|
|
|
|
2019-01-04 10:33:58 +00:00
|
|
|
|
2019-12-19 07:45:27 +00:00
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
store: {
|
|
|
|
schema: DATASTORE_SCHEMA,
|
|
|
|
},
|
|
|
|
"output-format": {
|
|
|
|
schema: OUTPUT_FORMAT,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)]
|
|
|
|
/// Start garbage collection for a specific datastore.
|
|
|
|
async fn start_garbage_collection(param: Value) -> Result<Value, Error> {
|
2019-01-04 10:33:58 +00:00
|
|
|
|
2020-02-28 06:42:36 +00:00
|
|
|
let output_format = get_output_format(¶m);
|
2019-01-04 10:33:58 +00:00
|
|
|
|
2019-12-19 07:45:27 +00:00
|
|
|
let store = tools::required_string_param(¶m, "store")?;
|
|
|
|
|
2019-12-19 10:27:36 +00:00
|
|
|
let mut client = connect()?;
|
2019-12-19 07:45:27 +00:00
|
|
|
|
|
|
|
let path = format!("api2/json/admin/datastore/{}/gc", store);
|
|
|
|
|
|
|
|
let result = client.post(&path, None).await?;
|
|
|
|
|
|
|
|
view_task_result(client, result, &output_format).await?;
|
|
|
|
|
|
|
|
Ok(Value::Null)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
store: {
|
|
|
|
schema: DATASTORE_SCHEMA,
|
|
|
|
},
|
|
|
|
"output-format": {
|
|
|
|
schema: OUTPUT_FORMAT,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)]
|
|
|
|
/// Show garbage collection status for a specific datastore.
|
|
|
|
async fn garbage_collection_status(param: Value) -> Result<Value, Error> {
|
|
|
|
|
2020-02-28 06:42:36 +00:00
|
|
|
let output_format = get_output_format(¶m);
|
2019-12-19 07:45:27 +00:00
|
|
|
|
|
|
|
let store = tools::required_string_param(¶m, "store")?;
|
|
|
|
|
2019-12-19 10:27:36 +00:00
|
|
|
let client = connect()?;
|
2019-12-19 07:45:27 +00:00
|
|
|
|
|
|
|
let path = format!("api2/json/admin/datastore/{}/gc", store);
|
|
|
|
|
2020-01-30 12:29:39 +00:00
|
|
|
let mut result = client.get(&path, None).await?;
|
|
|
|
let mut data = result["data"].take();
|
|
|
|
let schema = api2::admin::datastore::API_RETURN_SCHEMA_GARBAGE_COLLECTION_STATUS;
|
|
|
|
|
2020-02-28 06:42:36 +00:00
|
|
|
let options = default_table_format_options();
|
2020-01-30 12:29:39 +00:00
|
|
|
|
|
|
|
format_and_print_result_full(&mut data, schema, &output_format, &options);
|
2019-12-19 07:45:27 +00:00
|
|
|
|
|
|
|
Ok(Value::Null)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn garbage_collection_commands() -> CommandLineInterface {
|
2019-01-04 10:33:58 +00:00
|
|
|
|
|
|
|
let cmd_def = CliCommandMap::new()
|
|
|
|
.insert("status",
|
2019-12-19 07:45:27 +00:00
|
|
|
CliCommand::new(&API_METHOD_GARBAGE_COLLECTION_STATUS)
|
2019-11-24 10:00:53 +00:00
|
|
|
.arg_param(&["store"])
|
2019-02-12 09:08:23 +00:00
|
|
|
.completion_cb("store", config::datastore::complete_datastore_name)
|
2019-12-09 16:40:34 +00:00
|
|
|
)
|
2019-01-04 10:33:58 +00:00
|
|
|
.insert("start",
|
2019-12-19 07:45:27 +00:00
|
|
|
CliCommand::new(&API_METHOD_START_GARBAGE_COLLECTION)
|
2019-11-24 10:00:53 +00:00
|
|
|
.arg_param(&["store"])
|
2019-02-12 09:08:23 +00:00
|
|
|
.completion_cb("store", config::datastore::complete_datastore_name)
|
2019-12-09 16:40:34 +00:00
|
|
|
);
|
2019-01-04 10:33:58 +00:00
|
|
|
|
|
|
|
cmd_def.into()
|
|
|
|
}
|
|
|
|
|
2019-12-19 10:27:36 +00:00
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
limit: {
|
|
|
|
description: "The maximal number of tasks to list.",
|
|
|
|
type: Integer,
|
|
|
|
optional: true,
|
|
|
|
minimum: 1,
|
|
|
|
maximum: 1000,
|
|
|
|
default: 50,
|
|
|
|
},
|
|
|
|
"output-format": {
|
|
|
|
schema: OUTPUT_FORMAT,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
all: {
|
|
|
|
type: Boolean,
|
|
|
|
description: "Also list stopped tasks.",
|
|
|
|
optional: true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)]
|
|
|
|
/// List running server tasks.
|
|
|
|
async fn task_list(param: Value) -> Result<Value, Error> {
|
|
|
|
|
2020-02-28 06:42:36 +00:00
|
|
|
let output_format = get_output_format(¶m);
|
2019-12-19 10:27:36 +00:00
|
|
|
|
|
|
|
let client = connect()?;
|
|
|
|
|
|
|
|
let limit = param["limit"].as_u64().unwrap_or(50) as usize;
|
|
|
|
let running = !param["all"].as_bool().unwrap_or(false);
|
|
|
|
let args = json!({
|
|
|
|
"running": running,
|
|
|
|
"start": 0,
|
|
|
|
"limit": limit,
|
|
|
|
});
|
2020-01-30 12:29:39 +00:00
|
|
|
let mut result = client.get("api2/json/nodes/localhost/tasks", Some(args)).await?;
|
2019-12-19 10:27:36 +00:00
|
|
|
|
2020-01-30 12:29:39 +00:00
|
|
|
let mut data = result["data"].take();
|
|
|
|
let schema = api2::node::tasks::API_RETURN_SCHEMA_LIST_TASKS;
|
2019-12-19 10:27:36 +00:00
|
|
|
|
2020-02-28 06:42:36 +00:00
|
|
|
let options = default_table_format_options()
|
2020-02-28 06:30:35 +00:00
|
|
|
.column(ColumnConfig::new("starttime").right_align(false).renderer(tools::format::render_epoch))
|
|
|
|
.column(ColumnConfig::new("endtime").right_align(false).renderer(tools::format::render_epoch))
|
2020-01-31 05:59:17 +00:00
|
|
|
.column(ColumnConfig::new("upid"))
|
2020-02-28 06:30:35 +00:00
|
|
|
.column(ColumnConfig::new("status").renderer(tools::format::render_task_status));
|
2020-01-30 12:29:39 +00:00
|
|
|
|
|
|
|
format_and_print_result_full(&mut data, schema, &output_format, &options);
|
2019-12-19 10:27:36 +00:00
|
|
|
|
|
|
|
Ok(Value::Null)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
upid: {
|
|
|
|
schema: UPID_SCHEMA,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)]
|
|
|
|
/// Display the task log.
|
|
|
|
async fn task_log(param: Value) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let upid = tools::required_string_param(¶m, "upid")?;
|
|
|
|
|
|
|
|
let client = connect()?;
|
|
|
|
|
|
|
|
display_task_log(client, upid, true).await?;
|
|
|
|
|
|
|
|
Ok(Value::Null)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
upid: {
|
|
|
|
schema: UPID_SCHEMA,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)]
|
|
|
|
/// Try to stop a specific task.
|
|
|
|
async fn task_stop(param: Value) -> Result<Value, Error> {
|
|
|
|
|
|
|
|
let upid_str = tools::required_string_param(¶m, "upid")?;
|
|
|
|
|
|
|
|
let mut client = connect()?;
|
|
|
|
|
|
|
|
let path = format!("api2/json/nodes/localhost/tasks/{}", upid_str);
|
|
|
|
let _ = client.delete(&path, None).await?;
|
|
|
|
|
|
|
|
Ok(Value::Null)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn task_mgmt_cli() -> CommandLineInterface {
|
|
|
|
|
|
|
|
let task_log_cmd_def = CliCommand::new(&API_METHOD_TASK_LOG)
|
|
|
|
.arg_param(&["upid"]);
|
|
|
|
|
|
|
|
let task_stop_cmd_def = CliCommand::new(&API_METHOD_TASK_STOP)
|
|
|
|
.arg_param(&["upid"]);
|
|
|
|
|
|
|
|
let cmd_def = CliCommandMap::new()
|
|
|
|
.insert("list", CliCommand::new(&API_METHOD_TASK_LIST))
|
|
|
|
.insert("log", task_log_cmd_def)
|
|
|
|
.insert("stop", task_stop_cmd_def);
|
|
|
|
|
|
|
|
cmd_def.into()
|
|
|
|
}
|
|
|
|
|
2019-12-23 12:06:43 +00:00
|
|
|
fn x509name_to_string(name: &openssl::x509::X509NameRef) -> Result<String, Error> {
|
|
|
|
let mut parts = Vec::new();
|
|
|
|
for entry in name.entries() {
|
|
|
|
parts.push(format!("{} = {}", entry.object().nid().short_name()?, entry.data().as_utf8()?));
|
|
|
|
}
|
|
|
|
Ok(parts.join(", "))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[api]
|
|
|
|
/// Diplay node certificate information.
|
|
|
|
fn cert_info() -> Result<(), Error> {
|
|
|
|
|
|
|
|
let cert_path = PathBuf::from(configdir!("/proxy.pem"));
|
|
|
|
|
|
|
|
let cert_pem = proxmox::tools::fs::file_get_contents(&cert_path)?;
|
|
|
|
|
|
|
|
let cert = openssl::x509::X509::from_pem(&cert_pem)?;
|
|
|
|
|
|
|
|
println!("Subject: {}", x509name_to_string(cert.subject_name())?);
|
|
|
|
|
|
|
|
if let Some(san) = cert.subject_alt_names() {
|
|
|
|
for name in san.iter() {
|
|
|
|
if let Some(v) = name.dnsname() {
|
|
|
|
println!(" DNS:{}", v);
|
|
|
|
} else if let Some(v) = name.ipaddress() {
|
|
|
|
println!(" IP:{:?}", v);
|
|
|
|
} else if let Some(v) = name.email() {
|
|
|
|
println!(" EMAIL:{}", v);
|
|
|
|
} else if let Some(v) = name.uri() {
|
|
|
|
println!(" URI:{}", v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
println!("Issuer: {}", x509name_to_string(cert.issuer_name())?);
|
|
|
|
println!("Validity:");
|
|
|
|
println!(" Not Before: {}", cert.not_before());
|
|
|
|
println!(" Not After : {}", cert.not_after());
|
|
|
|
|
|
|
|
let fp = cert.digest(openssl::hash::MessageDigest::sha256())?;
|
|
|
|
let fp_string = proxmox::tools::digest_to_hex(&fp);
|
|
|
|
let fp_string = fp_string.as_bytes().chunks(2).map(|v| std::str::from_utf8(v).unwrap())
|
|
|
|
.collect::<Vec<&str>>().join(":");
|
|
|
|
|
|
|
|
println!("Fingerprint (sha256): {}", fp_string);
|
|
|
|
|
|
|
|
let pubkey = cert.public_key()?;
|
|
|
|
println!("Public key type: {}", openssl::nid::Nid::from_raw(pubkey.id().as_raw()).long_name()?);
|
|
|
|
println!("Public key bits: {}", pubkey.bits());
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2019-12-22 16:35:06 +00:00
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
force: {
|
|
|
|
description: "Force generation of new SSL certifate.",
|
|
|
|
type: Boolean,
|
|
|
|
optional:true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
)]
|
|
|
|
/// Update node certificates and generate all needed files/directories.
|
|
|
|
fn update_certs(force: Option<bool>) -> Result<(), Error> {
|
|
|
|
|
|
|
|
config::create_configdir()?;
|
|
|
|
|
|
|
|
if let Err(err) = generate_auth_key() {
|
|
|
|
bail!("unable to generate auth key - {}", err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Err(err) = generate_csrf_key() {
|
|
|
|
bail!("unable to generate csrf key - {}", err);
|
|
|
|
}
|
|
|
|
|
2019-12-27 10:20:36 +00:00
|
|
|
config::update_self_signed_cert(force.unwrap_or(false))?;
|
2019-12-22 16:35:06 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn cert_mgmt_cli() -> CommandLineInterface {
|
|
|
|
|
|
|
|
let cmd_def = CliCommandMap::new()
|
2019-12-23 12:06:43 +00:00
|
|
|
.insert("info", CliCommand::new(&API_METHOD_CERT_INFO))
|
|
|
|
.insert("update", CliCommand::new(&API_METHOD_UPDATE_CERTS));
|
2019-12-22 16:35:06 +00:00
|
|
|
|
|
|
|
cmd_def.into()
|
|
|
|
}
|
|
|
|
|
2020-01-17 10:24:55 +00:00
|
|
|
// fixme: avoid API redefinition
|
2020-01-09 13:52:29 +00:00
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
2020-01-10 10:09:55 +00:00
|
|
|
"local-store": {
|
2020-01-09 13:52:29 +00:00
|
|
|
schema: DATASTORE_SCHEMA,
|
|
|
|
},
|
|
|
|
remote: {
|
2020-01-13 10:47:07 +00:00
|
|
|
schema: REMOTE_ID_SCHEMA,
|
2020-01-09 13:52:29 +00:00
|
|
|
},
|
|
|
|
"remote-store": {
|
|
|
|
schema: DATASTORE_SCHEMA,
|
|
|
|
},
|
2020-01-17 10:24:55 +00:00
|
|
|
delete: {
|
|
|
|
description: "Delete vanished backups. This remove the local copy if the remote backup was deleted.",
|
|
|
|
type: Boolean,
|
|
|
|
optional: true,
|
|
|
|
default: true,
|
|
|
|
},
|
2020-01-09 13:52:29 +00:00
|
|
|
"output-format": {
|
|
|
|
schema: OUTPUT_FORMAT,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)]
|
2020-01-10 10:09:55 +00:00
|
|
|
/// Sync datastore from another repository
|
|
|
|
async fn pull_datastore(
|
2020-01-09 13:52:29 +00:00
|
|
|
remote: String,
|
|
|
|
remote_store: String,
|
2020-01-10 10:09:55 +00:00
|
|
|
local_store: String,
|
2020-01-17 10:24:55 +00:00
|
|
|
delete: Option<bool>,
|
2020-02-28 06:42:36 +00:00
|
|
|
param: Value,
|
2020-01-09 13:52:29 +00:00
|
|
|
) -> Result<Value, Error> {
|
|
|
|
|
2020-02-28 06:42:36 +00:00
|
|
|
let output_format = get_output_format(¶m);
|
2020-01-09 13:52:29 +00:00
|
|
|
|
|
|
|
let mut client = connect()?;
|
|
|
|
|
2020-01-17 10:24:55 +00:00
|
|
|
let mut args = json!({
|
2020-01-10 10:09:55 +00:00
|
|
|
"store": local_store,
|
2020-01-16 12:54:29 +00:00
|
|
|
"remote": remote,
|
2020-01-09 13:52:29 +00:00
|
|
|
"remote-store": remote_store,
|
|
|
|
});
|
|
|
|
|
2020-01-17 10:24:55 +00:00
|
|
|
if let Some(delete) = delete {
|
|
|
|
args["delete"] = delete.into();
|
|
|
|
}
|
|
|
|
|
2020-01-10 10:09:55 +00:00
|
|
|
let result = client.post("api2/json/pull", Some(args)).await?;
|
2020-01-09 13:52:29 +00:00
|
|
|
|
|
|
|
view_task_result(client, result, &output_format).await?;
|
|
|
|
|
|
|
|
Ok(Value::Null)
|
|
|
|
}
|
|
|
|
|
2018-12-10 12:28:38 +00:00
|
|
|
fn main() {
|
|
|
|
|
2018-12-11 10:31:36 +00:00
|
|
|
let cmd_def = CliCommandMap::new()
|
2020-04-13 09:09:44 +00:00
|
|
|
.insert("acl", acl_commands())
|
2019-12-09 16:40:34 +00:00
|
|
|
.insert("datastore", datastore_commands())
|
2020-04-26 06:23:23 +00:00
|
|
|
.insert("dns", dns_commands())
|
2020-04-21 12:28:26 +00:00
|
|
|
.insert("network", network_commands())
|
2020-04-06 10:09:27 +00:00
|
|
|
.insert("user", user_commands())
|
2020-01-16 13:32:06 +00:00
|
|
|
.insert("remote", remote_commands())
|
2019-12-19 10:27:36 +00:00
|
|
|
.insert("garbage-collection", garbage_collection_commands())
|
2019-12-22 16:35:06 +00:00
|
|
|
.insert("cert", cert_mgmt_cli())
|
2020-01-09 13:52:29 +00:00
|
|
|
.insert("task", task_mgmt_cli())
|
|
|
|
.insert(
|
2020-01-10 10:09:55 +00:00
|
|
|
"pull",
|
|
|
|
CliCommand::new(&API_METHOD_PULL_DATASTORE)
|
|
|
|
.arg_param(&["remote", "remote-store", "local-store"])
|
|
|
|
.completion_cb("local-store", config::datastore::complete_datastore_name)
|
2020-01-16 13:32:06 +00:00
|
|
|
.completion_cb("remote", config::remote::complete_remote_name)
|
2020-01-10 10:58:31 +00:00
|
|
|
.completion_cb("remote-store", complete_remote_datastore_name)
|
2020-01-09 13:52:29 +00:00
|
|
|
);
|
2018-12-09 15:52:32 +00:00
|
|
|
|
2020-05-06 05:51:05 +00:00
|
|
|
let mut rpcenv = CliEnvironment::new();
|
|
|
|
rpcenv.set_user(Some(String::from("root@pam")));
|
2020-05-08 14:07:23 +00:00
|
|
|
|
2020-05-06 05:51:05 +00:00
|
|
|
proxmox_backup::tools::runtime::main(run_async_cli_command(cmd_def, rpcenv));
|
2018-12-09 10:59:32 +00:00
|
|
|
}
|
2020-01-10 10:58:31 +00:00
|
|
|
|
|
|
|
// shell completion helper
|
|
|
|
pub fn complete_remote_datastore_name(_arg: &str, param: &HashMap<String, String>) -> Vec<String> {
|
|
|
|
|
|
|
|
let mut list = Vec::new();
|
|
|
|
|
2020-01-21 11:28:01 +00:00
|
|
|
let _ = proxmox::try_block!({
|
2020-01-10 10:58:31 +00:00
|
|
|
let remote = param.get("remote").ok_or_else(|| format_err!("no remote"))?;
|
2020-01-16 13:32:06 +00:00
|
|
|
let (remote_config, _digest) = remote::config()?;
|
2020-01-10 10:58:31 +00:00
|
|
|
|
|
|
|
let remote: Remote = remote_config.lookup("remote", &remote)?;
|
|
|
|
|
2020-01-25 11:18:00 +00:00
|
|
|
let options = HttpClientOptions::new()
|
|
|
|
.password(Some(remote.password.clone()))
|
|
|
|
.fingerprint(remote.fingerprint.clone());
|
|
|
|
|
2020-01-10 10:58:31 +00:00
|
|
|
let client = HttpClient::new(
|
|
|
|
&remote.host,
|
|
|
|
&remote.userid,
|
2020-01-25 11:18:00 +00:00
|
|
|
options,
|
2020-01-10 10:58:31 +00:00
|
|
|
)?;
|
|
|
|
|
2020-02-26 10:37:38 +00:00
|
|
|
let result = crate::tools::runtime::block_on(client.get("api2/json/admin/datastore", None))?;
|
2020-01-10 10:58:31 +00:00
|
|
|
|
|
|
|
if let Some(data) = result["data"].as_array() {
|
|
|
|
for item in data {
|
|
|
|
if let Some(store) = item["store"].as_str() {
|
|
|
|
list.push(store.to_owned());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}).map_err(|_err: Error| { /* ignore */ });
|
|
|
|
|
|
|
|
list
|
|
|
|
}
|