~ Finish Chapter 3 + Adjusted tests to accomodate a new DB with every run + Add in a no db option to database
42 lines
1.0 KiB
Rust
42 lines
1.0 KiB
Rust
#[derive(serde::Deserialize)]
|
|
pub struct Settings {
|
|
pub database: DatabaseSettings,
|
|
pub application_port: u16,
|
|
}
|
|
|
|
#[derive(serde::Deserialize)]
|
|
pub struct DatabaseSettings {
|
|
pub username: String,
|
|
pub password: String,
|
|
pub port: u16,
|
|
pub host: String,
|
|
pub database_name: String,
|
|
}
|
|
|
|
pub fn get_configuration() -> Result<Settings, config::ConfigError> {
|
|
// initialise config reader
|
|
let settings = config::Config::builder()
|
|
.add_source(config::File::new(
|
|
"configuration.yaml",
|
|
config::FileFormat::Yaml,
|
|
))
|
|
.build()?;
|
|
settings.try_deserialize::<Settings>()
|
|
}
|
|
|
|
impl DatabaseSettings {
|
|
pub fn connection_string(&self) -> String {
|
|
format!(
|
|
"postgres://{}:{}@{}:{}/{}",
|
|
self.username, self.password, self.host, self.port, self.database_name
|
|
)
|
|
}
|
|
|
|
pub fn connection_string_without_db(&self) -> String {
|
|
format!(
|
|
"postgres://{}:{}@{}:{}",
|
|
self.username, self.password, self.host, self.port
|
|
)
|
|
}
|
|
}
|