1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-08-07 17:03:01 +03:00

Remove the dependency on sqlx in the config crate

This commit is contained in:
Quentin Gliech
2022-12-15 14:44:20 +01:00
parent 306b71baf5
commit ee42250660
14 changed files with 130 additions and 137 deletions

View File

@@ -17,6 +17,8 @@ use clap::Parser;
use mas_config::DatabaseConfig;
use mas_storage::MIGRATOR;
use crate::util::database_from_config;
#[derive(Parser, Debug)]
pub(super) struct Options {
#[command(subcommand)]
@@ -32,7 +34,7 @@ enum Subcommand {
impl Options {
pub async fn run(&self, root: &super::Options) -> anyhow::Result<()> {
let config: DatabaseConfig = root.load_config()?;
let pool = config.connect().await?;
let pool = database_from_config(&config).await?;
// Run pending migrations
MIGRATOR

View File

@@ -28,7 +28,7 @@ use oauth2_types::scope::Scope;
use rand::SeedableRng;
use tracing::{info, warn};
use crate::util::password_manager_from_config;
use crate::util::{database_from_config, password_manager_from_config};
#[derive(Parser, Debug)]
pub(super) struct Options {
@@ -197,7 +197,7 @@ impl Options {
let database_config: DatabaseConfig = root.load_config()?;
let passwords_config: PasswordsConfig = root.load_config()?;
let pool = database_config.connect().await?;
let pool = database_from_config(&database_config).await?;
let password_manager = password_manager_from_config(&passwords_config).await?;
let mut txn = pool.begin().await?;
@@ -228,7 +228,7 @@ impl Options {
SC::VerifyEmail { username, email } => {
let config: DatabaseConfig = root.load_config()?;
let pool = config.connect().await?;
let pool = database_from_config(&config).await?;
let mut txn = pool.begin().await?;
let user = lookup_user_by_username(&mut txn, username)
@@ -247,7 +247,7 @@ impl Options {
SC::ImportClients { truncate } => {
let config: RootConfig = root.load_config()?;
let pool = config.database.connect().await?;
let pool = database_from_config(&config.database).await?;
let encrypter = config.secrets.encrypter();
let mut txn = pool.begin().await?;
@@ -306,7 +306,7 @@ impl Options {
} => {
let config: RootConfig = root.load_config()?;
let encrypter = config.secrets.encrypter();
let pool = config.database.connect().await?;
let pool = database_from_config(&config.database).await?;
let url_builder = UrlBuilder::new(config.http.public_base);
let mut conn = pool.acquire().await?;

View File

@@ -28,7 +28,10 @@ use mas_templates::Templates;
use tokio::signal::unix::SignalKind;
use tracing::{error, info, log::warn};
use crate::util::{mailer_from_config, password_manager_from_config, policy_factory_from_config};
use crate::util::{
database_from_config, mailer_from_config, password_manager_from_config,
policy_factory_from_config, templates_from_config,
};
#[derive(Parser, Debug, Default)]
pub(super) struct Options {
@@ -105,7 +108,7 @@ impl Options {
let config: RootConfig = root.load_config()?;
// Connect to the database
let pool = config.database.connect().await?;
let pool = database_from_config(&config.database).await?;
if self.migrate {
info!("Running pending migrations");
@@ -120,7 +123,6 @@ impl Options {
queue.recuring(Duration::from_secs(15), mas_tasks::cleanup_expired(&pool));
queue.start();
// TODO: task queue, key store, encrypter, url builder, http client
// Initialize the key store
let key_store = config
.secrets
@@ -138,9 +140,7 @@ impl Options {
let url_builder = UrlBuilder::new(config.http.public_base.clone());
// Load and compile the templates
let templates = Templates::load(config.templates.path.clone(), url_builder.clone())
.await
.context("could not load templates")?;
let templates = templates_from_config(&config.templates, &url_builder).await?;
let mailer = mailer_from_config(&config.email, &templates).await?;
mailer.test_connection().await?;