ldap_backend/src/bin/update_groups.rs

124 lines
3.5 KiB
Rust
Raw Normal View History

2023-06-18 17:29:49 +00:00
use dotenv::dotenv;
use ldap3::{LdapConn, Mod};
use skynet_ldap_backend::{get_config, Config};
2023-06-18 17:34:27 +00:00
use std::env;
#[async_std::main]
async fn main() -> tide::Result<()> {
let config = get_config();
update_users(&config).await?;
update_admin(&config).await?;
2023-06-18 17:37:44 +00:00
update_committee(&config).await?;
2023-06-18 17:34:27 +00:00
Ok(())
}
async fn update_users(config: &Config) -> tide::Result<()> {
let mut users_tmp = vec![
// default user to ensure group is never empty
String::from("compsoc"),
];
// add lifetime folks
if let Ok(x) = env::var("USERS_LIFETIME") {
for user in x.split(',').collect::<Vec<&str>>() {
users_tmp.push(user.to_string());
}
}
/*
pull in data from wolves (csv or api (hopefully api)
pull entire ldap data
for every valid user in wolves match to ldap
add to users
*/
// sorting makes it easier/faster
users_tmp.sort();
if let Ok(x) = env::var("USERS_BANNED") {
for user in x.split(',').collect::<Vec<&str>>() {
// find its position
while let Ok(index) = users_tmp.binary_search(&user.to_string()) {
// in case it just so happens to be there multiple times
users_tmp.remove(index);
}
}
}
// easier to work with Strings above but easier to work with &str below
let users: Vec<&str> = users_tmp.iter().map(|s| &**s).collect();
update_group(config, "skynet-users", &users, true).await?;
Ok(())
}
2023-06-18 17:34:27 +00:00
fn uid_to_dn(uid: &str) -> String {
format!("uid={},ou=users,dc=skynet,dc=ie", uid)
}
2023-06-18 17:34:27 +00:00
async fn update_admin(config: &Config) -> tide::Result<()> {
2023-06-18 17:29:49 +00:00
dotenv().ok();
2023-06-18 17:34:27 +00:00
2023-06-18 17:29:49 +00:00
// read from teh env
if let Ok(x) = env::var("USERS_ADMIN") {
let users = x.split(',').collect::<Vec<&str>>();
2023-06-18 17:34:27 +00:00
update_group(config, "skynet-admins", &users, true).await?;
2023-06-18 17:29:49 +00:00
// admins automatically get added as users
2023-06-18 17:34:27 +00:00
update_group(config, "skynet-users", &users, false).await?;
2023-06-18 17:29:49 +00:00
}
Ok(())
}
2023-06-18 17:37:44 +00:00
async fn update_committee(config: &Config) -> tide::Result<()> {
dotenv().ok();
// read from teh env
if let Ok(x) = env::var("USERS_COMMITTEE") {
let users = x.split(',').collect::<Vec<&str>>();
update_group(config, "skynet-committee", &users, true).await?;
// admins automatically get added as users
update_group(config, "skynet-users", &users, false).await?;
}
Ok(())
}
2023-06-18 17:34:27 +00:00
async fn update_group(config: &Config, group: &str, users: &[&str], replace: bool) -> tide::Result<()> {
let mut ldap = LdapConn::new(&config.ldap_host)?;
// use the admin account
ldap.simple_bind(&config.ldap_admin, &config.ldap_admin_pw)?.success()?;
2023-06-18 17:32:52 +00:00
let dn = format!("cn={},ou=groups,dc=skynet,dc=ie", group);
2023-06-18 17:34:27 +00:00
let members = users.iter().map(|uid| uid_to_dn(uid)).collect();
let mods = if replace {
2023-06-18 17:32:52 +00:00
vec![Mod::Replace("member".to_string(), members)]
} else {
2023-06-18 17:32:52 +00:00
vec![Mod::Add("member".to_string(), members)]
};
2023-06-18 17:34:27 +00:00
2023-06-18 17:32:52 +00:00
if let Err(x) = ldap.modify(&dn, mods) {
println!("{:?}", x);
}
2023-06-18 17:32:52 +00:00
let dn_linux = format!("cn={}-linux,ou=groups,dc=skynet,dc=ie", group);
2023-06-18 17:34:27 +00:00
let members_linux = users.iter().map(|uid| uid.to_string()).collect();
let mods = if replace {
2023-06-18 17:32:52 +00:00
vec![Mod::Replace("memberUid".to_string(), members_linux)]
} else {
2023-06-18 17:32:52 +00:00
vec![Mod::Add("memberUid".to_string(), members_linux)]
};
2023-06-18 17:34:27 +00:00
if let Err(x) = ldap.modify(&dn_linux, mods) {
println!("{:?}", x);
};
2023-06-18 17:32:52 +00:00
// tidy up
ldap.unbind()?;
Ok(())
2023-06-18 17:34:27 +00:00
}