2019-02-28 11:29:26 +03:00
|
|
|
import {
|
|
|
|
Module,
|
|
|
|
DynamicModule,
|
2020-01-12 01:36:53 +03:00
|
|
|
Provider,
|
2019-02-28 11:29:26 +03:00
|
|
|
} from '@nestjs/common'
|
|
|
|
import { TelegramBot } from './TelegramBot'
|
2020-01-12 01:36:53 +03:00
|
|
|
import {
|
|
|
|
TelegrafModuleAsyncOptions,
|
|
|
|
TelegrafOptionsFactory,
|
|
|
|
} from './interfaces'
|
|
|
|
import { TELEGRAF_MODULE_OPTIONS } from './telegraf.constants'
|
2019-02-28 11:29:26 +03:00
|
|
|
import { TokenInjectionToken } from './TokenInjectionToken'
|
2019-05-11 20:55:15 +03:00
|
|
|
import { TelegramClient } from './TelegramClient'
|
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),
|
2019-02-28 11:29:26 +03:00
|
|
|
TelegramBot,
|
2019-05-11 20:55:15 +03:00
|
|
|
TelegramClient,
|
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
|
|
|
},
|
|
|
|
],
|
2019-05-11 21:10:14 +03:00
|
|
|
exports: [TelegramBot, TelegramClient],
|
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
|
|
|
}
|