mirror of
https://github.com/Maks1mS/nestjs-telegraf.git
synced 2024-12-26 07:48:11 +03:00
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import { SceneContext, Telegraf } from 'telegraf';
|
|
import { Command, Help, InjectBot, On, Start, Update } from '../lib';
|
|
import { EchoService } from './echo.service';
|
|
import { HELLO_SCENE_ID } from './app.constants';
|
|
import { Context } from './interfaces/context.interface';
|
|
|
|
@Update()
|
|
export class AppUpdate {
|
|
constructor(
|
|
@InjectBot()
|
|
private readonly bot: Telegraf<SceneContext>,
|
|
private readonly echoService: EchoService,
|
|
) {}
|
|
|
|
@Start()
|
|
async onStart(ctx: Context): Promise<void> {
|
|
const me = await this.bot.telegram.getMe();
|
|
await ctx.reply(`Hey, I'm ${me.first_name}`);
|
|
}
|
|
|
|
@Help()
|
|
async onHelp(ctx: Context): Promise<void> {
|
|
await ctx.reply('Send me any text');
|
|
}
|
|
|
|
@Command('scene')
|
|
async onSceneCommand(ctx: Context): Promise<void> {
|
|
await ctx.scene.enter(HELLO_SCENE_ID);
|
|
}
|
|
|
|
@On('message')
|
|
async onMessage(ctx: Context): Promise<void> {
|
|
console.log('New message received');
|
|
|
|
if ('text' in ctx.message) {
|
|
const messageText = ctx.message.text;
|
|
const echoText = this.echoService.echo(messageText);
|
|
await ctx.reply(echoText);
|
|
} else {
|
|
await ctx.reply('Only text messages');
|
|
}
|
|
}
|
|
}
|