node-telegram-api/demo.js

56 lines
1.7 KiB
JavaScript
Raw Normal View History

2015-06-28 22:42:48 +00:00
var Bot = require('telegram-api');
// only require the message types you need, more coming soon!
var Message = require('telegram-api/types/Message');
var Question = require('telegram-api/types/Question');
2015-06-26 23:56:28 +00:00
var smartBot = new Bot({
2015-06-28 01:04:18 +00:00
token: '121143906:AAE6pcpBoARNZZjr3fUpvKuLInJ5Eee5Ajk'
2015-06-26 23:56:28 +00:00
});
// getMe is called before polling starts, setting info property of bot
smartBot.start().then(() => {
console.log(smartBot.info);
});
2015-06-28 22:42:48 +00:00
// Create a new question
// answers is a keyboard layout as defined in Telegram API
// we're going to reuse this by modifying it's target
const question = new Question()
.text('How should I greet you?')
.answers([['Hey'], ['Hello, Sir'], ['Yo bro']]);
// Called when a message starting with Hi is received
// You can use Regular Expressions, too
// update is an Update object as defined in Telegram API
smartBot.get('Hi', update => {
2015-06-26 23:56:28 +00:00
const message = update.message;
const id = message.chat.id;
2015-06-28 22:42:48 +00:00
question.to(id).reply(message.message_id);
2015-06-26 23:56:28 +00:00
2015-06-28 22:42:48 +00:00
// Send the question, returns a promise, resolves on valid answer,
// rejects in case of an invalid answer
2015-06-28 01:04:18 +00:00
smartBot.send(question).then(answer => {
const msg = new Message().to(id).text('Your answer: ' + answer);
smartBot.send(msg);
2015-06-26 23:56:28 +00:00
}, () => {
2015-06-28 01:04:18 +00:00
const msg = new Message().to(id).text('Invalid answer');
smartBot.send(msg);
2015-06-26 23:56:28 +00:00
});
});
2015-06-28 22:42:48 +00:00
// Commands are in the format `/command` or `/command@botusername` in groups
const test = new Message().text('Test Command');
2015-06-26 23:56:28 +00:00
smartBot.command('test', update => {
const message = update.message;
const id = message.chat.id;
2015-06-28 22:42:48 +00:00
smartBot.send(test.to(id));
2015-06-26 23:56:28 +00:00
});
2015-06-28 22:42:48 +00:00
const hello = new Message().text('Hello');
2015-06-26 23:56:28 +00:00
smartBot.command('start', update => {
2015-06-28 22:42:48 +00:00
smartBot.send(hello.to(update.message.chat.id));
2015-06-26 23:56:28 +00:00
});