nestjs-telegraf/lib/telegraf.provider.ts

38 lines
978 B
TypeScript
Raw Normal View History

2020-03-19 16:21:35 +03:00
import {
Injectable,
Inject,
OnApplicationBootstrap,
Logger,
OnApplicationShutdown,
2020-03-19 16:21:35 +03:00
} from '@nestjs/common';
import { Telegraf } from 'telegraf';
import { Context, TelegrafModuleOptions } from './interfaces';
2020-03-19 16:21:35 +03:00
import { TELEGRAF_MODULE_OPTIONS } from './telegraf.constants';
@Injectable()
export class TelegrafProvider extends Telegraf<Context>
implements OnApplicationBootstrap, OnApplicationShutdown {
2020-03-19 16:21:35 +03:00
private logger = new Logger('Telegraf');
private readonly launchOptions;
2020-03-19 16:21:35 +03:00
constructor(@Inject(TELEGRAF_MODULE_OPTIONS) options: TelegrafModuleOptions) {
super(options.token, options.options);
2020-04-24 18:52:54 +03:00
this.launchOptions = options.launchOptions;
2020-03-19 16:21:35 +03:00
}
async onApplicationBootstrap() {
2020-05-05 16:34:44 +03:00
this.catch((err, ctx: Context) => {
this.logger.error(
`Encountered an error for ${ctx.updateType} update type`,
err,
);
2020-03-19 16:21:35 +03:00
});
2020-04-24 18:52:54 +03:00
await this.launch(this.launchOptions);
2020-03-19 16:21:35 +03:00
}
async onApplicationShutdown() {
await this.stop();
}
2020-03-19 16:21:35 +03:00
}