kanidm/tools/orca/src/populate.rs
Sebastiano Tocci 9354c180af
added profile and memberof search to the basic model (#2712)
Co-authored-by: Firstyear <william@blackhats.net.au>
2024-04-23 10:30:38 +10:00

114 lines
3.1 KiB
Rust

use crate::error::Error;
use crate::kani;
use crate::state::*;
use std::sync::Arc;
async fn apply_flags(client: Arc<kani::KanidmOrcaClient>, flags: &[Flag]) -> Result<(), Error> {
for flag in flags {
match flag {
Flag::DisableAllPersonsMFAPolicy => client.disable_mfa_requirement().await?,
}
}
Ok(())
}
async fn preflight_person(
client: Arc<kani::KanidmOrcaClient>,
person: Person,
) -> Result<(), Error> {
debug!(?person);
if client.person_exists(&person.username).await? {
// Do nothing? Do we need to reset them later?
} else {
client
.person_create(&person.username, &person.display_name)
.await?;
}
match &person.credential {
Credential::Password { plain } => {
client
.person_set_primary_password_only(&person.username, plain)
.await?;
}
}
// For each role we are part of, did we have other permissions required to fufil that?
for role in &person.roles {
if let Some(need_groups) = role.requires_membership_to() {
for group_name in need_groups {
client
.group_add_members(group_name, &[person.username.as_str()])
.await?;
}
}
}
Ok(())
}
async fn preflight_group(client: Arc<kani::KanidmOrcaClient>, group: Group) -> Result<(), Error> {
if client.group_exists(group.name.as_str()).await? {
// Do nothing? Do we need to reset them later?
} else {
client.group_create(group.name.as_str()).await?;
}
// We can submit all the members in one go.
let members = group.members.iter().map(|s| s.as_str()).collect::<Vec<_>>();
client
.group_set_members(group.name.as_str(), members.as_slice())
.await?;
Ok(())
}
pub async fn preflight(state: State) -> Result<(), Error> {
// Get the admin client.
let client = Arc::new(kani::KanidmOrcaClient::new(&state.profile).await?);
// Apply any flags if they exist.
apply_flags(client.clone(), state.preflight_flags.as_slice()).await?;
let mut tasks = Vec::with_capacity(state.persons.len());
// Create persons.
for person in state.persons.into_iter() {
let c = client.clone();
tasks.push(tokio::spawn(preflight_person(c, person)))
}
for task in tasks {
task.await.map_err(|tokio_err| {
error!(?tokio_err, "Failed to join task");
Error::Tokio
})??;
// The double ? isn't a mistake, it's because this is Result<Result<T, E>, E>
// and flatten is nightly.
}
// Create groups.
let mut tasks = Vec::with_capacity(state.groups.len());
for group in state.groups.into_iter() {
let c = client.clone();
tasks.push(tokio::spawn(preflight_group(c, group)))
}
for task in tasks {
task.await.map_err(|tokio_err| {
error!(?tokio_err, "Failed to join task");
Error::Tokio
})??;
}
// Create integrations.
info!("Ready to 🛫");
Ok(())
}