use crate::{ location_info, settings::structs::{ CaptchaConfig, DatabaseConfig, EmailConfig, FederationConfig, RateLimitConfig, Settings, SetupConfig, }, LemmyError, }; use anyhow::{anyhow, Context}; use deser_hjson::from_str; use merge::Merge; use std::{env, fs, io::Error, net::IpAddr, sync::RwLock}; pub(crate) mod defaults; pub mod structs; static CONFIG_FILE: &str = "config/config.hjson"; lazy_static! { static ref SETTINGS: RwLock = RwLock::new(match Settings::init() { Ok(c) => c, Err(e) => panic!("{}", e), }); } impl Settings { /// Reads config from the files and environment. /// First, defaults are loaded from CONFIG_FILE_DEFAULTS, then these values can be overwritten /// from CONFIG_FILE (optional). Finally, values from the environment (with prefix LEMMY) are /// added to the config. /// /// Note: The env var `LEMMY_DATABASE_URL` is parsed in /// `lemmy_db_queries/src/lib.rs::get_database_url_from_env()` fn init() -> Result { // Read the config file let mut custom_config = from_str::(&Self::read_config_file()?)?; // Merge with env vars custom_config.merge(envy::prefixed("LEMMY_").from_env::()?); // Merge with default custom_config.merge(Settings::default()); if custom_config.hostname == Settings::default().hostname { return Err(anyhow!("Hostname variable is not set!").into()); } Ok(custom_config) } /// Returns the config as a struct. pub fn get() -> Self { SETTINGS.read().unwrap().to_owned() } pub fn get_database_url(&self) -> String { let conf = self.database(); format!( "postgres://{}:{}@{}:{}/{}", conf.user, conf.password, conf.host, conf.port, conf.database, ) } pub fn get_config_location() -> String { env::var("LEMMY_CONFIG_LOCATION").unwrap_or_else(|_| CONFIG_FILE.to_string()) } pub fn read_config_file() -> Result { fs::read_to_string(Self::get_config_location()) } pub fn get_allowed_instances(&self) -> Option> { self.federation().allowed_instances } pub fn get_blocked_instances(&self) -> Option> { self.federation().blocked_instances } /// Returns either "http" or "https", depending on tls_enabled setting pub fn get_protocol_string(&self) -> &'static str { if let Some(tls_enabled) = self.tls_enabled { if tls_enabled { "https" } else { "http" } } else { "http" } } /// Returns something like `http://localhost` or `https://lemmy.ml`, /// with the correct protocol and hostname. pub fn get_protocol_and_hostname(&self) -> String { format!("{}://{}", self.get_protocol_string(), self.hostname()) } /// When running the federation test setup in `api_tests/` or `docker/federation`, the `hostname` /// variable will be like `lemmy-alpha:8541`. This method removes the port and returns /// `lemmy-alpha` instead. It has no effect in production. pub fn get_hostname_without_port(&self) -> Result { Ok( self .hostname() .split(':') .collect::>() .first() .context(location_info!())? .to_string(), ) } pub fn save_config_file(data: &str) -> Result { fs::write(CONFIG_FILE, data)?; // Reload the new settings // From https://stackoverflow.com/questions/29654927/how-do-i-assign-a-string-to-a-mutable-static-variable/47181804#47181804 let mut new_settings = SETTINGS.write().unwrap(); *new_settings = match Settings::init() { Ok(c) => c, Err(e) => panic!("{}", e), }; Self::read_config_file() } pub fn database(&self) -> DatabaseConfig { self.database.to_owned().unwrap_or_default() } pub fn hostname(&self) -> String { self.hostname.to_owned().unwrap_or_default() } pub fn bind(&self) -> IpAddr { self.bind.unwrap() } pub fn port(&self) -> u16 { self.port.unwrap_or_default() } pub fn tls_enabled(&self) -> bool { self.tls_enabled.unwrap_or_default() } pub fn jwt_secret(&self) -> String { self.jwt_secret.to_owned().unwrap_or_default() } pub fn pictrs_url(&self) -> String { self.pictrs_url.to_owned().unwrap_or_default() } pub fn iframely_url(&self) -> String { self.iframely_url.to_owned().unwrap_or_default() } pub fn rate_limit(&self) -> RateLimitConfig { self.rate_limit.to_owned().unwrap_or_default() } pub fn federation(&self) -> FederationConfig { self.federation.to_owned().unwrap_or_default() } pub fn captcha(&self) -> CaptchaConfig { self.captcha.to_owned().unwrap_or_default() } pub fn email(&self) -> Option { self.email.to_owned() } pub fn setup(&self) -> Option { self.setup.to_owned() } }