forked from telegraf/telegraf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecho-bot-module.js
40 lines (37 loc) · 1.19 KB
/
echo-bot-module.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Modules documentation: https://telegraf.js.org/#/?id=telegraf-modules
// $> telegraf -t `BOT TOKEN` echo-bot-module.js
const Composer = require('telegraf/composer')
const Extra = require('telegraf/extra')
const Markup = require('telegraf/markup')
const keyboard = Markup.inlineKeyboard([
Markup.urlButton('❤️', 'http://telegraf.js.org'),
Markup.callbackButton('Delete', 'delete')
])
const bot = new Composer()
bot.start((ctx) => ctx.replyWithDice())
bot.settings(async (ctx) => {
await ctx.setMyCommands([
{
command: '/foo',
description: 'foo description'
},
{
command: '/bar',
description: 'bar description'
},
{
command: '/baz',
description: 'baz description'
}
])
return ctx.reply('Ok')
})
bot.help(async (ctx) => {
const commands = await ctx.getMyCommands()
const info = commands.reduce((acc, val) => `${acc}/${val.command} - ${val.description}\n`, '')
return ctx.reply(info)
})
bot.action('delete', ({ deleteMessage }) => deleteMessage())
bot.on('dice', (ctx) => ctx.reply(`Value: ${ctx.message.dice.value}`))
bot.on('message', (ctx) => ctx.telegram.sendCopy(ctx.chat.id, ctx.message, Extra.markup(keyboard)))
module.exports = bot