contact-form/src/config.rs

74 lines
1.7 KiB
Rust
Raw Normal View History

2022-10-29 17:09:56 +00:00
use anyhow::{Context, Result};
2022-10-28 22:41:02 +00:00
use serde::Deserialize;
use std::env;
use std::fs::File;
use std::io::BufReader;
#[derive(Deserialize)]
pub struct EmailServer {
pub server_name: String,
pub email: String,
pub password: String,
}
#[derive(Deserialize)]
2023-02-23 02:22:31 +00:00
pub struct UtcOffset {
pub hours: i8,
pub minutes: i8,
2022-12-03 16:08:23 +00:00
}
#[derive(Deserialize)]
pub struct ErrorMessages {
pub captcha_error: String,
pub email_error: String,
}
#[derive(Deserialize)]
pub struct Field {
pub label: String,
pub invalid_feedback: String,
}
#[derive(Deserialize)]
pub struct Strings {
pub description: String,
pub title: String,
pub name_field: Field,
pub email_field: Field,
pub telefon_field_label: String,
pub message_field: Field,
pub captcha_field: Field,
pub submit: String,
pub success: String,
}
2022-10-28 22:41:02 +00:00
#[derive(Deserialize)]
pub struct Config {
2022-12-17 17:37:04 +00:00
pub lang: String,
2022-10-28 22:41:02 +00:00
pub path_prefix: String,
2023-02-23 02:22:31 +00:00
pub socket_address: String,
2022-10-28 22:41:02 +00:00
pub email_server: EmailServer,
2023-02-23 02:22:31 +00:00
pub email_from: String,
pub email_to: String,
pub log_file: String,
pub utc_offset: UtcOffset,
2022-12-03 16:08:23 +00:00
pub error_messages: ErrorMessages,
pub strings: Strings,
2022-10-28 22:41:02 +00:00
}
impl Config {
2022-10-29 17:09:56 +00:00
pub fn new() -> Result<Self> {
2022-10-28 22:41:02 +00:00
let config_file_var = "CF_CONFIG_FILE";
let config_path = env::var(config_file_var)
2022-10-29 17:09:56 +00:00
.with_context(|| format!("Environment variable {config_file_var} missing!"))?;
2022-10-28 22:41:02 +00:00
2022-10-29 17:09:56 +00:00
let config_file = File::open(&config_path)
.with_context(|| format!("Can not open the config file at the path {config_path}"))?;
2022-10-28 22:41:02 +00:00
let config_reader = BufReader::new(config_file);
2022-12-03 16:08:23 +00:00
let config: Self = serde_yaml::from_reader(config_reader)
.context("Can not parse the YAML config file!")?;
2022-10-28 22:41:02 +00:00
2022-10-29 17:09:56 +00:00
Ok(config)
2022-10-28 22:41:02 +00:00
}
}