2021-10-08 09:19:37 +00:00
|
|
|
use std::collections::HashMap;
|
|
|
|
|
2022-04-14 11:32:04 +00:00
|
|
|
use anyhow::Error;
|
2021-06-11 04:34:37 +00:00
|
|
|
use lazy_static::lazy_static;
|
|
|
|
|
2021-11-18 10:19:44 +00:00
|
|
|
use proxmox_schema::{ApiType, Schema};
|
2021-10-08 09:19:37 +00:00
|
|
|
use proxmox_section_config::{SectionConfig, SectionConfigData, SectionConfigPlugin};
|
2021-06-11 04:34:37 +00:00
|
|
|
|
2021-09-02 10:47:11 +00:00
|
|
|
use crate::{open_backup_lockfile, replace_backup_config, BackupLockGuard};
|
2022-04-14 11:32:04 +00:00
|
|
|
use pbs_api_types::{OpenIdRealmConfig, REALM_ID_SCHEMA};
|
2021-06-11 04:34:37 +00:00
|
|
|
|
|
|
|
lazy_static! {
|
|
|
|
pub static ref CONFIG: SectionConfig = init();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn init() -> SectionConfig {
|
|
|
|
let obj_schema = match OpenIdRealmConfig::API_SCHEMA {
|
|
|
|
Schema::Object(ref obj_schema) => obj_schema,
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
|
2022-04-14 11:32:04 +00:00
|
|
|
let plugin = SectionConfigPlugin::new(
|
|
|
|
"openid".to_string(),
|
|
|
|
Some(String::from("realm")),
|
|
|
|
obj_schema,
|
|
|
|
);
|
2021-06-11 04:34:37 +00:00
|
|
|
let mut config = SectionConfig::new(&REALM_ID_SCHEMA);
|
|
|
|
config.register_plugin(plugin);
|
|
|
|
|
|
|
|
config
|
|
|
|
}
|
|
|
|
|
|
|
|
pub const DOMAINS_CFG_FILENAME: &str = "/etc/proxmox-backup/domains.cfg";
|
|
|
|
pub const DOMAINS_CFG_LOCKFILE: &str = "/etc/proxmox-backup/.domains.lck";
|
|
|
|
|
|
|
|
/// Get exclusive lock
|
2021-07-20 11:51:54 +00:00
|
|
|
pub fn lock_config() -> Result<BackupLockGuard, Error> {
|
|
|
|
open_backup_lockfile(DOMAINS_CFG_LOCKFILE, None, true)
|
2021-06-11 04:34:37 +00:00
|
|
|
}
|
|
|
|
|
2022-04-14 11:32:04 +00:00
|
|
|
pub fn config() -> Result<(SectionConfigData, [u8; 32]), Error> {
|
2021-11-23 16:57:00 +00:00
|
|
|
let content = proxmox_sys::fs::file_read_optional_string(DOMAINS_CFG_FILENAME)?
|
2021-06-11 04:34:37 +00:00
|
|
|
.unwrap_or_else(|| "".to_string());
|
|
|
|
|
|
|
|
let digest = openssl::sha::sha256(content.as_bytes());
|
|
|
|
let data = CONFIG.parse(DOMAINS_CFG_FILENAME, &content)?;
|
|
|
|
Ok((data, digest))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn save_config(config: &SectionConfigData) -> Result<(), Error> {
|
2021-12-30 11:57:37 +00:00
|
|
|
let raw = CONFIG.write(DOMAINS_CFG_FILENAME, config)?;
|
2021-09-02 10:47:11 +00:00
|
|
|
replace_backup_config(DOMAINS_CFG_FILENAME, raw.as_bytes())
|
2021-06-11 04:34:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// shell completion helper
|
|
|
|
pub fn complete_realm_name(_arg: &str, _param: &HashMap<String, String>) -> Vec<String> {
|
|
|
|
match config() {
|
|
|
|
Ok((data, _digest)) => data.sections.iter().map(|(id, _)| id.to_string()).collect(),
|
|
|
|
Err(_) => return vec![],
|
|
|
|
}
|
|
|
|
}
|
2021-06-11 08:52:41 +00:00
|
|
|
|
|
|
|
pub fn complete_openid_realm_name(_arg: &str, _param: &HashMap<String, String>) -> Vec<String> {
|
|
|
|
match config() {
|
2022-04-14 11:32:04 +00:00
|
|
|
Ok((data, _digest)) => data
|
|
|
|
.sections
|
|
|
|
.iter()
|
|
|
|
.filter_map(|(id, (t, _))| {
|
|
|
|
if t == "openid" {
|
|
|
|
Some(id.to_string())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
2021-06-11 08:52:41 +00:00
|
|
|
.collect(),
|
|
|
|
Err(_) => return vec![],
|
|
|
|
}
|
|
|
|
}
|