proxmox-backup-manager: split out users.rs
This commit is contained in:
parent
a220a4564a
commit
6fa39e53e0
@ -54,73 +54,6 @@ fn connect() -> Result<HttpClient, Error> {
|
|||||||
Ok(client)
|
Ok(client)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[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);
|
|
||||||
|
|
||||||
let info = &api2::access::user::API_METHOD_LIST_USERS;
|
|
||||||
let mut data = match info.handler {
|
|
||||||
ApiHandler::Sync(handler) => (handler)(param, info, rpcenv)?,
|
|
||||||
_ => unreachable!(),
|
|
||||||
};
|
|
||||||
|
|
||||||
let options = default_table_format_options()
|
|
||||||
.column(ColumnConfig::new("userid"))
|
|
||||||
.column(
|
|
||||||
ColumnConfig::new("enable")
|
|
||||||
.renderer(tools::format::render_bool_with_default_true)
|
|
||||||
)
|
|
||||||
.column(
|
|
||||||
ColumnConfig::new("expire")
|
|
||||||
.renderer(tools::format::render_epoch)
|
|
||||||
)
|
|
||||||
.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?
|
|
||||||
CliCommand::new(&api2::access::user::API_METHOD_CREATE_USER)
|
|
||||||
.arg_param(&["userid"])
|
|
||||||
)
|
|
||||||
.insert(
|
|
||||||
"update",
|
|
||||||
CliCommand::new(&api2::access::user::API_METHOD_UPDATE_USER)
|
|
||||||
.arg_param(&["userid"])
|
|
||||||
.completion_cb("userid", config::user::complete_user_name)
|
|
||||||
)
|
|
||||||
.insert(
|
|
||||||
"remove",
|
|
||||||
CliCommand::new(&api2::access::user::API_METHOD_DELETE_USER)
|
|
||||||
.arg_param(&["userid"])
|
|
||||||
.completion_cb("userid", config::user::complete_user_name)
|
|
||||||
);
|
|
||||||
|
|
||||||
cmd_def.into()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[api(
|
#[api(
|
||||||
input: {
|
input: {
|
||||||
properties: {
|
properties: {
|
||||||
|
@ -1,2 +1,4 @@
|
|||||||
mod remote;
|
mod remote;
|
||||||
pub use remote::*;
|
pub use remote::*;
|
||||||
|
mod user;
|
||||||
|
pub use user::*;
|
||||||
|
75
src/bin/proxmox_backup_manager/user.rs
Normal file
75
src/bin/proxmox_backup_manager/user.rs
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
use anyhow::Error;
|
||||||
|
use serde_json::Value;
|
||||||
|
|
||||||
|
use proxmox::api::{api, cli::*, RpcEnvironment, ApiHandler};
|
||||||
|
|
||||||
|
use proxmox_backup::config;
|
||||||
|
use proxmox_backup::tools;
|
||||||
|
use proxmox_backup::api2;
|
||||||
|
|
||||||
|
#[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);
|
||||||
|
|
||||||
|
let info = &api2::access::user::API_METHOD_LIST_USERS;
|
||||||
|
let mut data = match info.handler {
|
||||||
|
ApiHandler::Sync(handler) => (handler)(param, info, rpcenv)?,
|
||||||
|
_ => unreachable!(),
|
||||||
|
};
|
||||||
|
|
||||||
|
let options = default_table_format_options()
|
||||||
|
.column(ColumnConfig::new("userid"))
|
||||||
|
.column(
|
||||||
|
ColumnConfig::new("enable")
|
||||||
|
.renderer(tools::format::render_bool_with_default_true)
|
||||||
|
)
|
||||||
|
.column(
|
||||||
|
ColumnConfig::new("expire")
|
||||||
|
.renderer(tools::format::render_epoch)
|
||||||
|
)
|
||||||
|
.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)
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn user_commands() -> CommandLineInterface {
|
||||||
|
|
||||||
|
let cmd_def = CliCommandMap::new()
|
||||||
|
.insert("list", CliCommand::new(&&API_METHOD_LIST_USERS))
|
||||||
|
.insert(
|
||||||
|
"create",
|
||||||
|
// fixme: howto handle password parameter?
|
||||||
|
CliCommand::new(&api2::access::user::API_METHOD_CREATE_USER)
|
||||||
|
.arg_param(&["userid"])
|
||||||
|
)
|
||||||
|
.insert(
|
||||||
|
"update",
|
||||||
|
CliCommand::new(&api2::access::user::API_METHOD_UPDATE_USER)
|
||||||
|
.arg_param(&["userid"])
|
||||||
|
.completion_cb("userid", config::user::complete_user_name)
|
||||||
|
)
|
||||||
|
.insert(
|
||||||
|
"remove",
|
||||||
|
CliCommand::new(&api2::access::user::API_METHOD_DELETE_USER)
|
||||||
|
.arg_param(&["userid"])
|
||||||
|
.completion_cb("userid", config::user::complete_user_name)
|
||||||
|
);
|
||||||
|
|
||||||
|
cmd_def.into()
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user