kanidm/kanidm_tools/src/cli/synch.rs
2022-12-21 09:53:57 +10:00

114 lines
4.2 KiB
Rust

use crate::SynchOpt;
use dialoguer::Confirm;
impl SynchOpt {
pub fn debug(&self) -> bool {
match self {
SynchOpt::List(copt) => copt.debug,
SynchOpt::Get(nopt) => nopt.copt.debug,
SynchOpt::Create { copt, .. }
| SynchOpt::GenerateToken { copt, .. }
| SynchOpt::DestroyToken { copt, .. }
| SynchOpt::ForceRefresh { copt, .. }
| SynchOpt::Finalise { copt, .. }
| SynchOpt::Terminate { copt, .. } => copt.debug,
}
}
pub async fn exec(&self) {
match self {
SynchOpt::List(copt) => {
let client = copt.to_client().await;
match client.idm_sync_account_list().await {
Ok(r) => r.iter().for_each(|ent| println!("{}", ent)),
Err(e) => error!("Error -> {:?}", e),
}
}
SynchOpt::Get(nopt) => {
let client = nopt.copt.to_client().await;
match client.idm_sync_account_get(nopt.name.as_str()).await {
Ok(Some(e)) => println!("{}", e),
Ok(None) => println!("No matching entries"),
Err(e) => error!("Error -> {:?}", e),
}
}
SynchOpt::Create {
account_id,
copt,
description,
} => {
let client = copt.to_client().await;
match client
.idm_sync_account_create(account_id, description.as_deref())
.await
{
Ok(()) => println!("Success"),
Err(e) => error!("Error -> {:?}", e),
}
}
SynchOpt::GenerateToken {
account_id,
label,
copt,
} => {
let client = copt.to_client().await;
match client
.idm_sync_account_generate_token(account_id, label)
.await
{
Ok(token) => println!("token: {}", token),
Err(e) => error!("Error -> {:?}", e),
}
}
SynchOpt::DestroyToken { account_id, copt } => {
let client = copt.to_client().await;
match client.idm_sync_account_destroy_token(account_id).await {
Ok(()) => println!("Success"),
Err(e) => error!("Error -> {:?}", e),
}
}
SynchOpt::ForceRefresh { account_id, copt } => {
let client = copt.to_client().await;
match client.idm_sync_account_force_refresh(account_id).await {
Ok(()) => println!("Success"),
Err(e) => error!("Error -> {:?}", e),
}
}
SynchOpt::Finalise { account_id, copt } => {
if !Confirm::new()
.default(false)
.with_prompt("Do you want to continue? This operation can NOT be undone.")
.interact()
.unwrap()
{
info!("No changes were made");
return;
}
let client = copt.to_client().await;
match client.idm_sync_account_finalise(account_id).await {
Ok(()) => println!("Success"),
Err(e) => error!("Error -> {:?}", e),
}
}
SynchOpt::Terminate { account_id, copt } => {
if !Confirm::new()
.default(false)
.with_prompt("Do you want to continue? This operation can NOT be undone.")
.interact()
.unwrap()
{
info!("No changes were made");
return;
}
let client = copt.to_client().await;
match client.idm_sync_account_terminate(account_id).await {
Ok(()) => println!("Success"),
Err(e) => error!("Error -> {:?}", e),
}
}
}
}
}