GeneIT/geneit_backend/src/app_config.rs

60 lines
1.5 KiB
Rust
Raw Normal View History

2023-05-24 12:38:18 +00:00
use clap::Parser;
/// GeneIT backend API
#[derive(Parser, Debug, Clone)]
#[clap(author, version, about, long_about = None)]
pub struct AppConfig {
/// Listen address
#[clap(short, long, env, default_value = "0.0.0.0:8000")]
pub listen_address: String,
/// Website origin
#[clap(short, long, env, default_value = "http://localhost:3000")]
pub website_origin: String,
/// Proxy IP, might end with a star "*"
#[clap(short, long, env)]
pub proxy_ip: Option<String>,
2023-05-24 14:19:46 +00:00
/// PostgreSQL database host
#[clap(long, env, default_value = "localhost")]
db_host: String,
/// PostgreSQL database port
#[clap(long, env, default_value_t = 5432)]
db_port: u16,
2023-05-24 12:38:18 +00:00
/// PostgreSQL username
#[clap(long, env, default_value = "user")]
db_username: String,
/// PostgreSQL password
2023-05-24 14:19:46 +00:00
#[clap(long, env, default_value = "pass")]
2023-05-24 12:38:18 +00:00
db_password: String,
2023-05-24 14:19:46 +00:00
/// PostgreSQL database name
#[clap(long, env, default_value = "geneit")]
db_name: String,
2023-05-24 12:38:18 +00:00
}
lazy_static::lazy_static! {
static ref ARGS: AppConfig = {
AppConfig::parse()
};
}
impl AppConfig {
/// Get parsed command line arguments
pub fn get() -> &'static AppConfig {
&ARGS
}
2023-05-24 14:19:46 +00:00
/// Get full db connection chain
pub fn db_connection_chain(&self) -> String {
format!(
"postgres://{}:{}@{}:{}/{}",
self.db_username, self.db_password, self.db_host, self.db_port, self.db_name
)
}
}