import { Module } from '@nestjs/common'; import { ConfigModule, ConfigService } from '@nestjs/config'; import { AdModule } from './modules/ad/ad.module'; import { ConfigurationModule, ConfigurationModuleOptions, } from '@mobicoop/configuration-module'; import { EventEmitterModule } from '@nestjs/event-emitter'; import { RequestContextModule } from 'nestjs-request-context'; import { MessagerModule } from '@modules/messager/messager.module'; import { HealthModule, HealthRepositoryPort } from '@mobicoop/health-module'; import { AD_REPOSITORY } from '@modules/ad/ad.di-tokens'; import { MESSAGE_PUBLISHER } from '@modules/messager/messager.di-tokens'; import { HealthModuleOptions } from '@mobicoop/health-module/dist/core/domain/types/health.types'; import { MessagePublisherPort } from '@mobicoop/ddd-library'; import { GeographyModule } from '@modules/geography/geography.module'; import { HEALTH_AD_REPOSITORY, HEALTH_CRITICAL_LOGGING_KEY, SERVICE_CONFIGURATION_DELETE_QUEUE, SERVICE_CONFIGURATION_PROPAGATE_QUEUE, SERVICE_CONFIGURATION_SET_QUEUE, SERVICE_NAME, } from './app.constants'; @Module({ imports: [ ConfigModule.forRoot({ isGlobal: true }), EventEmitterModule.forRoot(), RequestContextModule, ConfigurationModule.forRootAsync({ imports: [ConfigModule], inject: [ConfigService], useFactory: async ( configService: ConfigService, ): Promise => ({ domain: configService.get( 'SERVICE_CONFIGURATION_DOMAIN', ) as string, messageBroker: { uri: configService.get('MESSAGE_BROKER_URI') as string, exchange: { name: configService.get( 'MESSAGE_BROKER_EXCHANGE', ) as string, durable: configService.get( 'MESSAGE_BROKER_EXCHANGE_DURABILITY', ) as boolean, }, }, redis: { host: configService.get('REDIS_HOST') as string, password: configService.get('REDIS_PASSWORD'), port: configService.get('REDIS_PORT') as number, }, setConfigurationQueue: SERVICE_CONFIGURATION_SET_QUEUE, deleteConfigurationQueue: SERVICE_CONFIGURATION_DELETE_QUEUE, propagateConfigurationQueue: SERVICE_CONFIGURATION_PROPAGATE_QUEUE, }), }), HealthModule.forRootAsync({ imports: [AdModule, MessagerModule], inject: [AD_REPOSITORY, MESSAGE_PUBLISHER], useFactory: async ( adRepository: HealthRepositoryPort, messagePublisher: MessagePublisherPort, ): Promise => ({ serviceName: SERVICE_NAME, criticalLoggingKey: HEALTH_CRITICAL_LOGGING_KEY, checkRepositories: [ { name: HEALTH_AD_REPOSITORY, repository: adRepository, }, ], messagePublisher, }), }), AdModule, GeographyModule, MessagerModule, ], exports: [AdModule, GeographyModule, MessagerModule], }) export class AppModule {}