survey/src/data.rs

82 lines
2.3 KiB
Rust
Raw Normal View History

2021-10-04 21:21:10 +05:30
/*
* Copyright (C) 2021 Aravinth Manivannan <realaravinth@batsense.net>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
//! App data: database connections, etc.
use std::sync::Arc;
2021-10-11 09:56:15 +05:30
use std::thread;
2021-10-04 21:21:10 +05:30
use argon2_creds::{Config, ConfigBuilder, PasswordPolicy};
2021-10-04 21:21:10 +05:30
use sqlx::postgres::PgPoolOptions;
use sqlx::PgPool;
use crate::mcaptcha::*;
use crate::settings::Settings;
2021-10-04 21:21:10 +05:30
/// App data
pub struct Data {
/// database pool
2021-10-04 21:21:10 +05:30
pub db: PgPool,
pub creds: Config,
pub settings: Settings,
pub mcaptcha: Box<dyn MCaptchaClient>,
2021-10-04 21:21:10 +05:30
}
impl Data {
2021-10-11 09:56:15 +05:30
pub fn get_creds() -> Config {
ConfigBuilder::default()
.username_case_mapped(true)
.profanity(true)
.blacklist(true)
.password_policy(PasswordPolicy::default())
.build()
.unwrap()
}
2021-10-04 21:21:10 +05:30
#[cfg(not(tarpaulin_include))]
/// create new instance of app data
pub async fn new(
settings: Settings,
mcaptcha: Box<dyn MCaptchaClient>,
) -> Arc<Self> {
let creds = Self::get_creds();
2021-10-11 09:56:15 +05:30
let c = creds.clone();
#[allow(unused_variables)]
let init = thread::spawn(move || {
log::info!("Initializing credential manager");
c.init();
log::info!("Initialized credential manager");
});
2021-10-04 21:21:10 +05:30
let db = PgPoolOptions::new()
.max_connections(settings.database.pool)
.connect(&settings.database.url)
2021-10-04 21:21:10 +05:30
.await
.expect("Unable to form database pool");
2021-10-11 09:56:15 +05:30
#[cfg(not(debug_assertions))]
init.join().unwrap();
let data = Data {
db,
creds,
settings,
mcaptcha,
};
2021-10-04 21:21:10 +05:30
Arc::new(data)
}
}