mycelium-api 8.3.1-rc.1

Provide API ports to the mycelium project.
use super::api_config::ApiConfig;

use myc_adapters_shared_lib::models::RedisConfig;
use myc_config::{optional_config::OptionalConfig, VaultConfig};
use myc_core::models::CoreConfig;
use myc_diesel::models::config::DieselConfig;
use myc_http_tools::models::auth_config::AuthConfig;
use myc_notifier::models::{QueueConfig, SmtpConfig};
use mycelium_base::utils::errors::MappedErrors;
use std::path::PathBuf;

#[derive(Clone)]
pub struct ConfigHandler {
    pub core: CoreConfig,
    pub diesel: DieselConfig,
    pub api: ApiConfig,
    pub auth: AuthConfig,
    pub smtp: SmtpConfig,
    pub queue: QueueConfig,
    pub redis: RedisConfig,
    pub vault: OptionalConfig<VaultConfig>,
}

impl ConfigHandler {
    pub fn init_from_file(file: PathBuf) -> Result<Self, MappedErrors> {
        Ok(Self {
            // Core configurations are used during the execution of the Mycelium
            // core functionalities, overall defined into use-cases layer.
            core: CoreConfig::from_default_config_file(file.clone())?,
            // Database configurations serves the database connector, which is
            // responsible for the communication with the database into the
            // adapters layer.
            diesel: DieselConfig::from_default_config_file(file.clone())?,
            // API configuration should be used by the web server into the ports
            // layer.
            api: ApiConfig::from_default_config_file(file.clone())?,
            // Auth configuration should be used by the web server into the
            // ports.
            auth: AuthConfig::from_default_config_file(file.clone())?,
            // SMTP configuration should be used by the email sending repository
            // managements into the adapters layer.
            smtp: SmtpConfig::from_default_config_file(file.clone())?,
            // Queue configuration should be used by the queue repository
            // managements into the adapters layer.
            queue: QueueConfig::from_default_config_file(file.clone())?,
            // Redis configuration should be used by the redis repository
            // managements into the adapters layer.
            redis: RedisConfig::from_default_config_file(file.clone())?,
            // Vault configuration should be used by the secret resolver into
            // the domain layer.
            vault: VaultConfig::from_default_config_file(file.clone())?,
        })
    }
}