1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
pub use config::ConfigError;
use lazy_static::lazy_static;
use sentry::ClientInitGuard;
use serde::Deserialize;
#[derive(Deserialize)]
pub struct Configuration {
pub page_limit: i64,
pub save_file_base_path: String,
pub uploads_endpoint: String,
pub rust_log: String,
pub database_url: String,
pub jwt_secret: String,
pub allowed_host: String,
pub sentry_dsn: Option<String>,
}
impl Configuration {
pub fn new() -> Result<Self, ConfigError> {
let mut cfg = config::Config::new();
cfg.merge(config::Environment::default())?;
cfg.try_into()
}
pub fn set_sentry_guard(&self) -> Option<ClientInitGuard> {
match &self.sentry_dsn {
Some(dsn) => Some(sentry::init((
dsn.clone(),
sentry::ClientOptions {
release: sentry::release_name!(),
..Default::default()
},
))),
None => None,
}
}
}
lazy_static! {
pub static ref CONFIG: Configuration = Configuration::new().expect("Config can be loaded");
}
|