mirror of
https://git.verdigado.com/NB-Public/simple-wkd.git
synced 2024-10-30 11:05:53 +01:00
97 lines
2.7 KiB
Rust
97 lines
2.7 KiB
Rust
use lettre::{transport::smtp::authentication::Credentials, SmtpTransport};
|
|
use log::{debug, error, warn};
|
|
use once_cell::sync::Lazy;
|
|
use sequoia_net::wkd::Variant;
|
|
use serde::{Deserialize, Serialize};
|
|
use std::fs;
|
|
use url::Url;
|
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
|
pub struct Settings {
|
|
#[serde(with = "VariantDef")]
|
|
pub variant: Variant,
|
|
pub max_age: i64,
|
|
pub cleanup_interval: u64,
|
|
pub allowed_domains: Vec<String>,
|
|
pub port: u16,
|
|
pub bind_host: String,
|
|
pub external_url: Url,
|
|
pub mail_settings: MailSettings,
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
|
pub struct MailSettings {
|
|
pub smtp_host: String,
|
|
pub smtp_username: String,
|
|
pub smtp_password: String,
|
|
pub smtp_port: u16,
|
|
pub smtp_tls: SMTPEncryption,
|
|
pub mail_from: String,
|
|
pub mail_subject: String,
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
|
#[serde(remote = "Variant")]
|
|
pub enum VariantDef {
|
|
Advanced,
|
|
Direct,
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize, Debug)]
|
|
pub enum SMTPEncryption {
|
|
Tls,
|
|
Starttls,
|
|
}
|
|
|
|
fn get_settings() -> Settings {
|
|
debug!("Reading settings...");
|
|
let content = match fs::read_to_string("config.toml") {
|
|
Ok(content) => content,
|
|
Err(_) => {
|
|
error!("Unable to access settings file!");
|
|
panic!("Unable to access settings file!")
|
|
}
|
|
};
|
|
let settings = match toml::from_str(&content) {
|
|
Ok(settings) => settings,
|
|
Err(_) => {
|
|
error!("Unable to parse settings from file!");
|
|
panic!("Unable to parse settings from file!")
|
|
}
|
|
};
|
|
debug!("Successfully read setting!");
|
|
settings
|
|
}
|
|
|
|
fn get_mailer() -> SmtpTransport {
|
|
debug!("Setting up SMTP...");
|
|
let creds = Credentials::new(
|
|
SETTINGS.mail_settings.smtp_username.to_owned(),
|
|
SETTINGS.mail_settings.smtp_password.to_owned(),
|
|
);
|
|
let builder = match &SETTINGS.mail_settings.smtp_tls {
|
|
SMTPEncryption::Tls => SmtpTransport::relay(&SETTINGS.mail_settings.smtp_host),
|
|
SMTPEncryption::Starttls => {
|
|
SmtpTransport::starttls_relay(&SETTINGS.mail_settings.smtp_host)
|
|
}
|
|
};
|
|
let mailer = match builder {
|
|
Ok(builder) => builder,
|
|
Err(_) => {
|
|
error!("Unable to set up smtp");
|
|
panic!("Unable to set up smtp")
|
|
}
|
|
}
|
|
.credentials(creds)
|
|
.port(SETTINGS.mail_settings.smtp_port)
|
|
.build();
|
|
if mailer.test_connection().is_err() {
|
|
warn!("Connection test to smtp host failed!");
|
|
}
|
|
debug!("SMTP setup successful!");
|
|
mailer
|
|
}
|
|
|
|
pub const ROOT_FOLDER: &str = "data";
|
|
pub static SETTINGS: Lazy<Settings> = Lazy::new(get_settings);
|
|
pub static MAILER: Lazy<SmtpTransport> = Lazy::new(get_mailer);
|