2019-09-26 08:30:58 +00:00
|
|
|
use std::env;
|
|
|
|
|
2020-07-07 22:45:32 +00:00
|
|
|
use super::{Context, Module};
|
2019-09-26 08:30:58 +00:00
|
|
|
|
2019-10-15 11:34:48 +00:00
|
|
|
use crate::config::RootModuleConfig;
|
|
|
|
use crate::configs::env_var::EnvVarConfig;
|
2020-07-07 22:45:32 +00:00
|
|
|
use crate::formatter::StringFormatter;
|
2019-10-15 11:34:48 +00:00
|
|
|
|
2019-09-26 08:30:58 +00:00
|
|
|
/// Creates a module with the value of the chosen environment variable
|
|
|
|
///
|
|
|
|
/// Will display the environment variable's value if all of the following criteria are met:
|
|
|
|
/// - env_var.disabled is absent or false
|
|
|
|
/// - env_var.variable is defined
|
|
|
|
/// - a variable named as the value of env_var.variable is defined
|
|
|
|
pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
|
|
|
|
let mut module = context.new_module("env_var");
|
2019-10-15 11:34:48 +00:00
|
|
|
let config: EnvVarConfig = EnvVarConfig::try_load(module.config);
|
2019-09-26 08:30:58 +00:00
|
|
|
|
2019-10-15 11:34:48 +00:00
|
|
|
let env_value = get_env_value(config.variable?, config.default)?;
|
2020-07-07 22:45:32 +00:00
|
|
|
let parsed = StringFormatter::new(config.format).and_then(|formatter| {
|
|
|
|
formatter
|
|
|
|
.map_meta(|var, _| match var {
|
|
|
|
"symbol" => Some(config.symbol),
|
|
|
|
_ => None,
|
|
|
|
})
|
|
|
|
.map_style(|variable| match variable {
|
|
|
|
"style" => Some(Ok(config.style)),
|
|
|
|
_ => None,
|
|
|
|
})
|
|
|
|
.map(|variable| match variable {
|
|
|
|
"env_value" => Some(Ok(&env_value)),
|
|
|
|
_ => None,
|
|
|
|
})
|
|
|
|
.parse(None)
|
|
|
|
});
|
|
|
|
|
|
|
|
module.set_segments(match parsed {
|
|
|
|
Ok(segments) => segments,
|
|
|
|
Err(error) => {
|
|
|
|
log::warn!("Error in module `env_var`:\n{}", error);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
});
|
2019-09-26 08:30:58 +00:00
|
|
|
|
|
|
|
Some(module)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_env_value(name: &str, default: Option<&str>) -> Option<String> {
|
|
|
|
match env::var_os(name) {
|
|
|
|
Some(os_value) => match os_value.into_string() {
|
|
|
|
Ok(value) => Some(value),
|
|
|
|
Err(_error) => None,
|
|
|
|
},
|
|
|
|
None => default.map(|value| value.to_owned()),
|
|
|
|
}
|
|
|
|
}
|