From 2762481cc8ff7d3be3adba5e5bbb4b038897aea0 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Fri, 30 Oct 2020 12:51:19 +0100 Subject: [PATCH] proxmox-backup-manager: add subscription commands Signed-off-by: Thomas Lamprecht --- src/bin/proxmox-backup-manager.rs | 1 + src/bin/proxmox_backup_manager/mod.rs | 2 + .../proxmox_backup_manager/subscription.rs | 55 +++++++++++++++++++ 3 files changed, 58 insertions(+) create mode 100644 src/bin/proxmox_backup_manager/subscription.rs diff --git a/src/bin/proxmox-backup-manager.rs b/src/bin/proxmox-backup-manager.rs index 549be2ef..bbb3ed2f 100644 --- a/src/bin/proxmox-backup-manager.rs +++ b/src/bin/proxmox-backup-manager.rs @@ -368,6 +368,7 @@ fn main() { .insert("remote", remote_commands()) .insert("garbage-collection", garbage_collection_commands()) .insert("cert", cert_mgmt_cli()) + .insert("subscription", subscription_commands()) .insert("sync-job", sync_job_commands()) .insert("task", task_mgmt_cli()) .insert( diff --git a/src/bin/proxmox_backup_manager/mod.rs b/src/bin/proxmox_backup_manager/mod.rs index 33c1d570..1f3ff92e 100644 --- a/src/bin/proxmox_backup_manager/mod.rs +++ b/src/bin/proxmox_backup_manager/mod.rs @@ -14,5 +14,7 @@ mod sync; pub use sync::*; mod user; pub use user::*; +mod subscription; +pub use subscription::*; mod disk; pub use disk::*; diff --git a/src/bin/proxmox_backup_manager/subscription.rs b/src/bin/proxmox_backup_manager/subscription.rs new file mode 100644 index 00000000..8daec62b --- /dev/null +++ b/src/bin/proxmox_backup_manager/subscription.rs @@ -0,0 +1,55 @@ +use anyhow::Error; +use serde_json::Value; + +use proxmox::api::{api, cli::*, RpcEnvironment, ApiHandler}; + +use proxmox_backup::api2; + +#[api( + input: { + properties: { + "output-format": { + schema: OUTPUT_FORMAT, + optional: true, + }, + } + } +)] +/// Read subscription info. +fn get(param: Value, rpcenv: &mut dyn RpcEnvironment) -> Result { + + let output_format = get_output_format(¶m); + + let info = &api2::node::subscription::API_METHOD_GET_SUBSCRIPTION; + let mut data = match info.handler { + ApiHandler::Sync(handler) => (handler)(param, info, rpcenv)?, + _ => unreachable!(), + }; + + let options = default_table_format_options(); + format_and_print_result_full(&mut data, info.returns, &output_format, &options); + + Ok(Value::Null) +} + +pub fn subscription_commands() -> CommandLineInterface { + + let cmd_def = CliCommandMap::new() + .insert("get", CliCommand::new(&API_METHOD_GET)) + .insert("set", + CliCommand::new(&api2::node::subscription::API_METHOD_SET_SUBSCRIPTION) + .fixed_param("node", "localhost".into()) + .arg_param(&["key"]) + ) + .insert("update", + CliCommand::new(&api2::node::subscription::API_METHOD_CHECK_SUBSCRIPTION) + .fixed_param("node", "localhost".into()) + ) + .insert("delete", + CliCommand::new(&api2::node::subscription::API_METHOD_DELETE_SUBSCRIPTION) + .fixed_param("node", "localhost".into()) + ) + ; + + cmd_def.into() +} -- 2.39.2