2020-01-12 02:41:27 +03:00
|
|
|
import { Module, DynamicModule, Provider } from '@nestjs/common'
|
|
|
|
import { TelegrafBotService } from './telegraf-bot.service'
|
2020-01-12 01:36:53 +03:00
|
|
|
import {
|
|
|
|
TelegrafModuleAsyncOptions,
|
|
|
|
TelegrafOptionsFactory,
|
|
|
|
} from './interfaces'
|
2020-01-12 02:41:27 +03:00
|
|
|
import { TELEGRAF_MODULE_OPTIONS, TokenInjectionToken } from './telegraf.constants'
|
|
|
|
import { TelegrafTelegramClientService } from './telegraf-telegram-client.service'
|
2019-02-28 11:29:26 +03:00
|
|
|
|
|
|
|
@Module({})
|
2020-01-12 01:45:10 +03:00
|
|
|
export class TelegrafModule {
|
2020-01-12 01:36:53 +03:00
|
|
|
static fromFactory(options: TelegrafModuleAsyncOptions): DynamicModule {
|
2019-02-28 11:29:26 +03:00
|
|
|
return {
|
2020-01-12 01:15:32 +03:00
|
|
|
module: TelegrafModule,
|
2020-01-12 01:36:53 +03:00
|
|
|
imports: options.imports || [],
|
2019-02-28 11:29:26 +03:00
|
|
|
providers: [
|
2020-01-12 01:36:53 +03:00
|
|
|
...this.createAsyncProviders(options),
|
2020-01-12 02:41:27 +03:00
|
|
|
TelegrafBotService,
|
|
|
|
TelegrafTelegramClientService,
|
2019-02-28 11:29:26 +03:00
|
|
|
{
|
|
|
|
provide: TokenInjectionToken,
|
2020-01-12 01:36:53 +03:00
|
|
|
useClass: options.useClass,
|
2019-02-28 11:29:26 +03:00
|
|
|
},
|
|
|
|
],
|
2020-01-12 02:41:27 +03:00
|
|
|
exports: [TelegrafBotService, TelegrafTelegramClientService],
|
2019-02-28 11:29:26 +03:00
|
|
|
}
|
|
|
|
}
|
2020-01-12 01:36:53 +03:00
|
|
|
|
|
|
|
private static createAsyncProviders(
|
|
|
|
options: TelegrafModuleAsyncOptions,
|
|
|
|
): Provider[] {
|
|
|
|
if (options.useExisting || options.useFactory) {
|
|
|
|
return [this.createAsyncOptionsProvider(options)]
|
|
|
|
}
|
|
|
|
return [
|
|
|
|
this.createAsyncOptionsProvider(options),
|
|
|
|
{
|
|
|
|
provide: options.useClass,
|
|
|
|
useClass: options.useClass,
|
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
private static createAsyncOptionsProvider(
|
|
|
|
options: TelegrafModuleAsyncOptions,
|
|
|
|
): Provider {
|
|
|
|
if (options.useFactory) {
|
|
|
|
return {
|
|
|
|
provide: TELEGRAF_MODULE_OPTIONS,
|
|
|
|
useFactory: options.useFactory,
|
|
|
|
inject: options.inject || [],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
provide: TELEGRAF_MODULE_OPTIONS,
|
|
|
|
useFactory: async (optionsFactory: TelegrafOptionsFactory) =>
|
|
|
|
await optionsFactory.createTelegrafOptions(),
|
|
|
|
inject: [options.useExisting || options.useClass],
|
|
|
|
}
|
|
|
|
}
|
2019-02-28 11:29:26 +03:00
|
|
|
}
|