]> Untitled Git - lemmy.git/blob - server/src/settings.rs
ee3a3c0720036595362a98e93a2bc0122a474802
[lemmy.git] / server / src / settings.rs
1 extern crate lazy_static;
2 use config::{Config, ConfigError, Environment, File};
3 use serde::Deserialize;
4 use std::env;
5 use std::net::IpAddr;
6
7 static CONFIG_FILE_DEFAULTS: &str = "config/defaults.hjson";
8 static CONFIG_FILE: &str = "config/config.hjson";
9
10 #[derive(Debug, Deserialize)]
11 pub struct Settings {
12   pub database: Database,
13   pub hostname: String,
14   pub bind: IpAddr,
15   pub port: u16,
16   pub jwt_secret: String,
17   pub front_end_dir: String,
18   pub rate_limit: RateLimitConfig,
19   pub email: Option<EmailConfig>,
20   pub federation_enabled: bool,
21 }
22
23 #[derive(Debug, Deserialize)]
24 pub struct RateLimitConfig {
25   pub message: i32,
26   pub message_per_second: i32,
27   pub post: i32,
28   pub post_per_second: i32,
29   pub register: i32,
30   pub register_per_second: i32,
31 }
32
33 #[derive(Debug, Deserialize)]
34 pub struct EmailConfig {
35   pub smtp_server: String,
36   pub smtp_login: Option<String>,
37   pub smtp_password: Option<String>,
38   pub smtp_from_address: String,
39   pub use_tls: bool,
40 }
41
42 #[derive(Debug, Deserialize)]
43 pub struct Database {
44   pub user: String,
45   pub password: String,
46   pub host: String,
47   pub port: i32,
48   pub database: String,
49   pub pool_size: u32,
50 }
51
52 lazy_static! {
53   static ref SETTINGS: Settings = {
54     match Settings::init() {
55       Ok(c) => c,
56       Err(e) => panic!("{}", e),
57     }
58   };
59 }
60
61 impl Settings {
62   /// Reads config from the files and environment.
63   /// First, defaults are loaded from CONFIG_FILE_DEFAULTS, then these values can be overwritten
64   /// from CONFIG_FILE (optional). Finally, values from the environment (with prefix LEMMY) are
65   /// added to the config.
66   fn init() -> Result<Self, ConfigError> {
67     let mut s = Config::new();
68
69     s.merge(File::with_name(CONFIG_FILE_DEFAULTS))?;
70
71     s.merge(File::with_name(CONFIG_FILE).required(false))?;
72
73     // Add in settings from the environment (with a prefix of LEMMY)
74     // Eg.. `LEMMY_DEBUG=1 ./target/app` would set the `debug` key
75     // Note: we need to use double underscore here, because otherwise variables containing
76     //       underscore cant be set from environmnet.
77     // https://github.com/mehcode/config-rs/issues/73
78     s.merge(Environment::with_prefix("LEMMY").separator("__"))?;
79
80     s.try_into()
81   }
82
83   /// Returns the config as a struct.
84   pub fn get() -> &'static Self {
85     &SETTINGS
86   }
87
88   /// Returns the postgres connection url. If LEMMY_DATABASE_URL is set, that is used,
89   /// otherwise the connection url is generated from the config.
90   pub fn get_database_url(&self) -> String {
91     match env::var("LEMMY_DATABASE_URL") {
92       Ok(url) => url,
93       Err(_) => format!(
94         "postgres://{}:{}@{}:{}/{}",
95         self.database.user,
96         self.database.password,
97         self.database.host,
98         self.database.port,
99         self.database.database
100       ),
101     }
102   }
103
104   pub fn api_endpoint(&self) -> String {
105     format!("{}/api/v1", self.hostname)
106   }
107 }