2020-12-26 16:48:04 +03:00
|
|
|
import { Telegraf } from 'telegraf';
|
|
|
|
import { Help, InjectBot, On, Start, Update } from '../lib/decorators';
|
|
|
|
import { Context } from '../lib/interfaces';
|
|
|
|
import { EchoService } from './echo.service';
|
2020-12-26 16:23:54 +03:00
|
|
|
|
|
|
|
@Update()
|
|
|
|
export class AppUpdate {
|
2020-12-26 16:48:04 +03:00
|
|
|
constructor(
|
|
|
|
@InjectBot()
|
|
|
|
private readonly bot: Telegraf<Context>,
|
|
|
|
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');
|
|
|
|
}
|
|
|
|
|
2020-12-26 16:23:54 +03:00
|
|
|
@On('message')
|
2020-12-26 16:48:04 +03:00
|
|
|
async onMessage(ctx: Context): Promise<void> {
|
2020-12-26 16:23:54 +03:00
|
|
|
console.log('New message received');
|
2020-12-26 16:48:04 +03:00
|
|
|
|
|
|
|
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');
|
|
|
|
}
|
2020-12-26 16:23:54 +03:00
|
|
|
}
|
|
|
|
}
|