2021-03-01 17:24:11 +00:00
|
|
|
use merge::Merge;
|
|
|
|
use serde::Deserialize;
|
|
|
|
use std::net::IpAddr;
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize, Clone, Merge)]
|
|
|
|
pub struct Settings {
|
|
|
|
pub(crate) database: Option<DatabaseConfig>,
|
|
|
|
pub(crate) rate_limit: Option<RateLimitConfig>,
|
|
|
|
pub(crate) federation: Option<FederationConfig>,
|
|
|
|
pub(crate) hostname: Option<String>,
|
|
|
|
pub(crate) bind: Option<IpAddr>,
|
|
|
|
pub(crate) port: Option<u16>,
|
|
|
|
pub(crate) tls_enabled: Option<bool>,
|
|
|
|
pub(crate) jwt_secret: Option<String>,
|
|
|
|
pub(crate) pictrs_url: Option<String>,
|
|
|
|
pub(crate) iframely_url: Option<String>,
|
|
|
|
pub(crate) captcha: Option<CaptchaConfig>,
|
|
|
|
pub(crate) email: Option<EmailConfig>,
|
|
|
|
pub(crate) setup: Option<SetupConfig>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize, Clone)]
|
|
|
|
pub struct CaptchaConfig {
|
|
|
|
pub enabled: bool,
|
|
|
|
pub difficulty: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize, Clone)]
|
|
|
|
pub struct DatabaseConfig {
|
2021-04-06 12:57:37 +00:00
|
|
|
pub user: Option<String>,
|
2021-03-01 17:24:11 +00:00
|
|
|
pub password: String,
|
|
|
|
pub host: String,
|
2021-04-06 12:57:37 +00:00
|
|
|
pub port: Option<i32>,
|
|
|
|
pub database: Option<String>,
|
|
|
|
pub pool_size: Option<u32>,
|
2021-03-01 17:24:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize, Clone)]
|
|
|
|
pub struct EmailConfig {
|
|
|
|
pub smtp_server: String,
|
|
|
|
pub smtp_login: Option<String>,
|
|
|
|
pub smtp_password: Option<String>,
|
|
|
|
pub smtp_from_address: String,
|
|
|
|
pub use_tls: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize, Clone)]
|
|
|
|
pub struct FederationConfig {
|
|
|
|
pub enabled: bool,
|
|
|
|
pub allowed_instances: Option<Vec<String>>,
|
|
|
|
pub blocked_instances: Option<Vec<String>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize, Clone)]
|
|
|
|
pub struct RateLimitConfig {
|
|
|
|
pub message: i32,
|
|
|
|
pub message_per_second: i32,
|
|
|
|
pub post: i32,
|
|
|
|
pub post_per_second: i32,
|
|
|
|
pub register: i32,
|
|
|
|
pub register_per_second: i32,
|
|
|
|
pub image: i32,
|
|
|
|
pub image_per_second: i32,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Deserialize, Clone)]
|
|
|
|
pub struct SetupConfig {
|
|
|
|
pub admin_username: String,
|
|
|
|
pub admin_password: String,
|
|
|
|
pub admin_email: Option<String>,
|
|
|
|
pub site_name: String,
|
|
|
|
}
|