node-telegram-api/demo.js
Ali Movahedi 03bfae0028 feat(API): add previous API
copy types folder into module root path
2016-03-28 12:35:56 +04:30

52 lines
1.2 KiB
JavaScript

var Bot = require('telegram-api').default;
// only require the message types you need, more coming soon!
var Message = require('telegram-api/types/Message');
var Question = require('telegram-api/types/Question');
var bot = new Bot({
token: '114687409:AAEVpfOmGI7xNKiKzVA9LBcOO9INpIwnvDI'
});
bot.start().catch(err => {
console.error(err, '\n', err.stack);
});
// polling
bot.on('update', update => {
console.log('Polled\n', update);
});
const question = new Question({
text: 'How should I greet you?',
answers: [['Hey'], ['Hello, Sir'], ['Yo bro']]
});
bot.get(/Hi\sBot/, message => {
const id = message.chat.id;
question.to(id).reply(message.message_id);
bot.send(question).then(answer => {
const msg = new Message().to(id).text('Your answer: ' + answer.text);
bot.send(msg);
}, () => {
const msg = new Message().to(id).text('Invalid answer');
bot.send(msg);
});
});
const hello = new Message().text('Hello');
bot.command('start', message => {
bot.send(hello.to(message.chat.id));
});
const test = new Message().text('Test Command');
bot.command('test <subject> [count|number] ...rest', message => {
bot.send(test.to(message.chat.id).text(message.args.subject));
});
// to stop a bot
// bot.stop();