use std::collections::HashMap; use anyhow::Error; use serde_json::Value; use proxmox_router::{cli::*, ApiHandler, RpcEnvironment}; use proxmox_schema::api; use pbs_api_types::{PruneJobConfig, JOB_ID_SCHEMA}; use pbs_config::prune; use proxmox_backup::api2; #[api( input: { properties: { "output-format": { schema: OUTPUT_FORMAT, optional: true, }, } } )] /// List all prune jobs fn list_prune_jobs(param: Value, rpcenv: &mut dyn RpcEnvironment) -> Result { let output_format = get_output_format(¶m); let info = &api2::config::prune::API_METHOD_LIST_PRUNE_JOBS; let mut data = match info.handler { ApiHandler::Sync(handler) => (handler)(param, info, rpcenv)?, _ => unreachable!(), }; let options = default_table_format_options() .column(ColumnConfig::new("id")) .column(ColumnConfig::new("disable")) .column(ColumnConfig::new("store")) .column(ColumnConfig::new("ns")) .column(ColumnConfig::new("schedule")) .column(ColumnConfig::new("max-depth")) .column(ColumnConfig::new("keep-last")) .column(ColumnConfig::new("keep-hourly")) .column(ColumnConfig::new("keep-daily")) .column(ColumnConfig::new("keep-weekly")) .column(ColumnConfig::new("keep-monthly")) .column(ColumnConfig::new("keep-yearly")); format_and_print_result_full(&mut data, &info.returns, &output_format, &options); Ok(Value::Null) } #[api( input: { properties: { id: { schema: JOB_ID_SCHEMA, }, "output-format": { schema: OUTPUT_FORMAT, optional: true, }, } } )] /// Show prune job configuration fn show_prune_job(param: Value, rpcenv: &mut dyn RpcEnvironment) -> Result { let output_format = get_output_format(¶m); let info = &api2::config::prune::API_METHOD_READ_PRUNE_JOB; 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 prune_job_commands() -> CommandLineInterface { let cmd_def = CliCommandMap::new() .insert("list", CliCommand::new(&API_METHOD_LIST_PRUNE_JOBS)) .insert( "show", CliCommand::new(&API_METHOD_SHOW_PRUNE_JOB) .arg_param(&["id"]) .completion_cb("id", pbs_config::prune::complete_prune_job_id), ) .insert( "create", CliCommand::new(&api2::config::prune::API_METHOD_CREATE_PRUNE_JOB) .arg_param(&["id"]) .completion_cb("id", pbs_config::prune::complete_prune_job_id) .completion_cb("schedule", pbs_config::datastore::complete_calendar_event) .completion_cb("store", pbs_config::datastore::complete_datastore_name) .completion_cb("ns", complete_prune_local_datastore_namespace), ) .insert( "update", CliCommand::new(&api2::config::prune::API_METHOD_UPDATE_PRUNE_JOB) .arg_param(&["id"]) .completion_cb("id", pbs_config::prune::complete_prune_job_id) .completion_cb("schedule", pbs_config::datastore::complete_calendar_event) .completion_cb("store", pbs_config::datastore::complete_datastore_name) .completion_cb("ns", complete_prune_local_datastore_namespace), ) .insert( "remove", CliCommand::new(&api2::config::prune::API_METHOD_DELETE_PRUNE_JOB) .arg_param(&["id"]) .completion_cb("id", pbs_config::prune::complete_prune_job_id), ); cmd_def.into() } // shell completion helper fn complete_prune_local_datastore_namespace( _arg: &str, param: &HashMap, ) -> Vec { let mut list = Vec::new(); let mut rpcenv = CliEnvironment::new(); rpcenv.set_auth_id(Some(String::from("root@pam"))); let mut job: Option = None; let store = param.get("store").map(|r| r.to_owned()).or_else(|| { if let Some(id) = param.get("id") { job = get_prune_job(id).ok(); if let Some(ref job) = job { return Some(job.store.clone()); } } None }); if let Some(store) = store { if let Ok(data) = crate::api2::admin::namespace::list_namespaces(store, None, None, &mut rpcenv) { for item in data { list.push(item.ns.name()); } } } list } fn get_prune_job(id: &str) -> Result { let (config, _digest) = prune::config()?; config.lookup("prune", id) }