2023-02-08 20:49:05 +01:00
|
|
|
use serde::Deserialize;
|
2023-02-09 11:42:33 +01:00
|
|
|
use std::fs;
|
2023-02-08 20:49:05 +01:00
|
|
|
|
2023-02-09 11:42:33 +01:00
|
|
|
#[derive(Deserialize, Clone, Default)]
|
2023-02-08 20:49:05 +01:00
|
|
|
pub struct Config {
|
2023-02-09 11:36:22 +01:00
|
|
|
pub scheme: Option<String>,
|
|
|
|
pub port: Option<u16>,
|
2023-02-08 22:14:57 +01:00
|
|
|
pub mail: Option<String>,
|
|
|
|
pub lang: Option<String>,
|
2023-02-08 20:49:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_config(file_path: &str) -> Config {
|
2023-02-09 11:42:33 +01:00
|
|
|
match fs::read_to_string(file_path) {
|
2023-02-08 20:49:05 +01:00
|
|
|
Ok(file) => match toml::from_str(&file) {
|
|
|
|
Ok(stored_config) => stored_config,
|
|
|
|
Err(file_error) => {
|
|
|
|
panic!("Error in config file: {file_error}");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Err(_) =>
|
|
|
|
// No config file
|
|
|
|
{
|
2023-02-09 12:42:39 +01:00
|
|
|
Config {
|
|
|
|
scheme: Some("http".to_string()),
|
|
|
|
port: Some(8080),
|
|
|
|
..Config::default()
|
|
|
|
}
|
2023-02-08 20:49:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|