feat: add launch options

This commit is contained in:
Aleksandr Bukhalo
2020-04-24 18:52:54 +03:00
parent 19f3fc7134
commit a5962fa7b9
3 changed files with 29 additions and 4 deletions

View File

@@ -1,9 +1,17 @@
import { ModuleMetadata, Type } from '@nestjs/common/interfaces';
import { TelegrafOptions } from 'telegraf';
import {
TelegrafOptions,
LaunchPollingOptions,
LaunchWebhookOptions,
} from 'telegraf';
export interface TelegrafModuleOptions {
token: string;
options?: TelegrafOptions;
launchOptions?: {
polling?: LaunchPollingOptions;
webhook?: LaunchWebhookOptions;
};
}
export interface TelegrafOptionsFactory {

View File

@@ -15,16 +15,19 @@ export class TelegrafProvider<TContext extends ContextMessageUpdate>
extends Telegraf<TContext>
implements OnApplicationBootstrap, OnApplicationShutdown {
private logger = new Logger('Telegraf');
private launchOptions;
constructor(@Inject(TELEGRAF_MODULE_OPTIONS) options: TelegrafModuleOptions) {
super(options.token, options.options);
this.launchOptions = options.launchOptions;
}
onApplicationBootstrap() {
this.catch((e) => {
this.logger.error(e);
});
this.startPolling();
this.launch(this.launchOptions);
}
async onApplicationShutdown(signal?: string) {