diff options
author | Vika <vika@fireburn.ru> | 2025-01-01 08:18:42 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2025-01-01 08:18:42 +0300 |
commit | 585ae01da68bb091e75ab0c2cf38f503114a043c (patch) | |
tree | 12b104afcd37f68e0e494ec5b1bd1b9018f2792c /src/database/postgres/mod.rs | |
parent | 56258dad4ce7492df3e06c45865015cbb1e588fe (diff) | |
download | kittybox-585ae01da68bb091e75ab0c2cf38f503114a043c.tar.zst |
PGPASS → PGPASSWORD
Turns out sqlx natively reads a plaintext password from this variable, otherwise from the `$PGPASSFILE`, otherwise from `$HOME/.pgpass`, so I don't need custom logic around passwords. Yay for sqlx being smart! Change-Id: I14858903ea1605469f9ea8095dc3bb056f617e85
Diffstat (limited to 'src/database/postgres/mod.rs')
-rw-r--r-- | src/database/postgres/mod.rs | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/src/database/postgres/mod.rs b/src/database/postgres/mod.rs index 98d9f8d..af19fea 100644 --- a/src/database/postgres/mod.rs +++ b/src/database/postgres/mod.rs @@ -48,21 +48,11 @@ impl PostgresStorage { impl Storage for PostgresStorage { /// Construct a new [`PostgresStorage`] from an URI string and run /// migrations on the database. - /// - /// If `PGPASS_FILE` environment variable is defined, read the - /// password from the file at the specified path. If, instead, - /// the `PGPASS` environment variable is present, read the - /// password from it. async fn new(url: &'_ url::Url) -> Result<Self> { tracing::debug!("Postgres URL: {url}"); - let mut options = sqlx::postgres::PgConnectOptions::from_url(url)? + let options = sqlx::postgres::PgConnectOptions::from_url(url)? .options([("search_path", "kittybox")]); - if let Ok(password_file) = std::env::var("PGPASS_FILE") { - let password = tokio::fs::read_to_string(password_file).await.unwrap(); - options = options.password(&password); - } else if let Ok(password) = std::env::var("PGPASS") { - options = options.password(&password) - } + Self::from_pool( sqlx::postgres::PgPoolOptions::new() .max_connections(50) |