gt/src/config.rs

70 lines
1.7 KiB
Rust
Raw Normal View History

2020-06-13 15:06:46 -04:00
use std::env;
use config::File;
2021-07-27 01:48:05 -04:00
use serde::Deserialize;
2020-06-13 15:06:46 -04:00
2021-07-27 01:48:05 -04:00
#[derive(Clone, Debug, Deserialize)]
2020-06-13 15:06:46 -04:00
pub struct Configuration {
2021-07-27 01:48:05 -04:00
pub api_token: Option<String>,
2020-06-13 15:06:46 -04:00
pub base_api: String,
pub base_url: String,
2021-07-27 01:48:05 -04:00
pub username: Option<String>,
pub password: Option<String>
2020-06-13 15:06:46 -04:00
}
impl Configuration {
pub fn new() -> Configuration {
let home_dir_env = env::var("HOME").unwrap();
let mut settings = config::Config::default();
let mut location: Vec<String> = Vec::new();
2021-07-28 21:31:25 -04:00
// TODO: add condition for target os
2020-06-13 15:06:46 -04:00
location.push("config.json".to_string());
location.push("/etc/gt/config.json".to_string());
location.push(format!("{}/.config/gt/config.json", home_dir_env));
for i in location {
settings.merge(File::with_name(&i)
.required(false))
.unwrap();
}
2021-07-28 21:31:25 -04:00
let config = settings
.try_into::<Configuration>()
.expect("Couldn't load config into gt!");
2020-06-13 15:06:46 -04:00
config
}
2021-07-27 01:48:05 -04:00
}
2021-07-28 21:31:25 -04:00
#[cfg(target_os = "linux")]
fn set_location_linux(
location: &mut Vec<String>,
home: String
) -> Vec<String> {
location.push("config.json".to_string());
location.push("/etc/gt/config.json".to_string());
location.push(format!("{}/.config/gt/config.json", home));
location.to_vec()
}
#[cfg(target_os = "macos")]
fn set_location_macos(
location: &mut Vec<String>,
home: String
) -> Vec<String> {
location.push("config.json".to_string());
location.to_vec()
}
#[cfg(target_os = "windows")]
fn set_location_windows(
location: &mut Vec<String>,
home: String
) -> Vec<String> {
location.push("config.json".to_string());
location.to_vec()
}