2022-06-13 19:15:04 +00:00
|
|
|
use crate::{
|
|
|
|
error::LemmyError,
|
|
|
|
location_info,
|
|
|
|
settings::structs::{PictrsConfig, Settings},
|
|
|
|
};
|
2021-03-01 17:24:11 +00:00
|
|
|
use anyhow::{anyhow, Context};
|
|
|
|
use deser_hjson::from_str;
|
2021-11-22 18:58:31 +00:00
|
|
|
use once_cell::sync::Lazy;
|
2021-09-22 15:57:09 +00:00
|
|
|
use regex::{Regex, RegexBuilder};
|
2022-06-22 20:24:54 +00:00
|
|
|
use std::{env, fs, io::Error};
|
2021-03-01 17:24:11 +00:00
|
|
|
|
|
|
|
pub mod structs;
|
|
|
|
|
2021-09-28 15:34:18 +00:00
|
|
|
static DEFAULT_CONFIG_FILE: &str = "config/config.hjson";
|
2021-03-01 17:24:11 +00:00
|
|
|
|
2022-06-22 20:24:54 +00:00
|
|
|
pub static SETTINGS: Lazy<Settings> =
|
|
|
|
Lazy::new(|| Settings::init().expect("Failed to load settings file"));
|
2021-11-22 18:58:31 +00:00
|
|
|
static WEBFINGER_REGEX: Lazy<Regex> = Lazy::new(|| {
|
|
|
|
Regex::new(&format!(
|
2021-12-20 22:23:06 +00:00
|
|
|
"^acct:([a-zA-Z0-9_]{{3,}})@{}$",
|
2022-06-22 20:24:54 +00:00
|
|
|
SETTINGS.hostname
|
2021-10-08 15:07:24 +00:00
|
|
|
))
|
2021-11-22 18:58:31 +00:00
|
|
|
.expect("compile webfinger regex")
|
|
|
|
});
|
2021-03-01 17:24:11 +00:00
|
|
|
|
|
|
|
impl Settings {
|
2021-05-26 13:39:38 +00:00
|
|
|
/// Reads config from configuration file.
|
2021-03-01 17:24:11 +00:00
|
|
|
///
|
|
|
|
/// Note: The env var `LEMMY_DATABASE_URL` is parsed in
|
2021-10-16 13:33:38 +00:00
|
|
|
/// `lemmy_db_schema/src/lib.rs::get_database_url_from_env()`
|
2021-09-22 15:57:09 +00:00
|
|
|
/// Warning: Only call this once.
|
2022-06-22 20:24:54 +00:00
|
|
|
pub(crate) fn init() -> Result<Self, LemmyError> {
|
2021-03-01 17:24:11 +00:00
|
|
|
// Read the config file
|
2021-10-08 15:07:24 +00:00
|
|
|
let config = from_str::<Settings>(&Self::read_config_file()?)?;
|
2021-03-01 17:24:11 +00:00
|
|
|
|
2021-08-04 21:13:51 +00:00
|
|
|
if config.hostname == "unset" {
|
2021-03-01 17:24:11 +00:00
|
|
|
return Err(anyhow!("Hostname variable is not set!").into());
|
|
|
|
}
|
|
|
|
|
2021-08-04 21:13:51 +00:00
|
|
|
Ok(config)
|
2021-03-01 17:24:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_database_url(&self) -> String {
|
2021-08-04 21:13:51 +00:00
|
|
|
let conf = &self.database;
|
2021-03-01 17:24:11 +00:00
|
|
|
format!(
|
|
|
|
"postgres://{}:{}@{}:{}/{}",
|
2021-08-04 21:13:51 +00:00
|
|
|
conf.user, conf.password, conf.host, conf.port, conf.database,
|
2021-03-01 17:24:11 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_config_location() -> String {
|
2021-09-28 15:34:18 +00:00
|
|
|
env::var("LEMMY_CONFIG_LOCATION").unwrap_or_else(|_| DEFAULT_CONFIG_FILE.to_string())
|
2021-03-01 17:24:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn read_config_file() -> Result<String, Error> {
|
|
|
|
fs::read_to_string(Self::get_config_location())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns either "http" or "https", depending on tls_enabled setting
|
|
|
|
pub fn get_protocol_string(&self) -> &'static str {
|
2021-08-04 21:13:51 +00:00
|
|
|
if self.tls_enabled {
|
|
|
|
"https"
|
2021-03-01 17:24:11 +00:00
|
|
|
} 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 {
|
2021-08-04 21:13:51 +00:00
|
|
|
format!("{}://{}", self.get_protocol_string(), self.hostname)
|
2021-03-01 17:24:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// 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<String, anyhow::Error> {
|
|
|
|
Ok(
|
|
|
|
self
|
2021-08-04 21:13:51 +00:00
|
|
|
.hostname
|
2021-03-01 17:24:11 +00:00
|
|
|
.split(':')
|
|
|
|
.collect::<Vec<&str>>()
|
|
|
|
.first()
|
|
|
|
.context(location_info!())?
|
|
|
|
.to_string(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-11-16 17:03:09 +00:00
|
|
|
pub fn webfinger_regex(&self) -> Regex {
|
|
|
|
WEBFINGER_REGEX.to_owned()
|
2021-09-22 15:57:09 +00:00
|
|
|
}
|
|
|
|
|
2021-10-28 20:47:25 +00:00
|
|
|
pub fn slur_regex(&self) -> Option<Regex> {
|
|
|
|
self.slur_filter.as_ref().map(|slurs| {
|
|
|
|
RegexBuilder::new(slurs)
|
|
|
|
.case_insensitive(true)
|
|
|
|
.build()
|
|
|
|
.expect("compile regex")
|
|
|
|
})
|
2021-09-22 15:57:09 +00:00
|
|
|
}
|
2022-06-13 19:15:04 +00:00
|
|
|
|
|
|
|
pub fn pictrs_config(&self) -> Result<PictrsConfig, LemmyError> {
|
|
|
|
self
|
|
|
|
.pictrs_config
|
|
|
|
.to_owned()
|
|
|
|
.ok_or_else(|| anyhow!("images_disabled").into())
|
|
|
|
}
|
2021-03-01 17:24:11 +00:00
|
|
|
}
|