forked from marklagendijk/node-toogoodtogo-watcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtelegram-bot.js
80 lines (72 loc) · 2.23 KB
/
telegram-bot.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
const _ = require('lodash');
const Telegraf = require('telegraf');
const { config } = require('./config');
const cache = {};
let bot;
module.exports = {
notify
};
function notify(message){
cache.message = message;
if(!bot){
createBot();
}
const chats = config.get('notifications.telegram.chats');
_.forEach(chats, chat => sendMessage(chat.id, message));
}
function sendMessage(chatId, message){
return bot.telegram
.sendMessage(chatId, message)
.catch(error => {
if(error.code === 403){
removeChat(chatId);
} else {
console.error(`${error.code} - ${error.description}`);
}
});
}
function createBot(){
const options = config.get('notifications.telegram');
if(!options.enabled || !options.botToken){
return null;
}
bot = new Telegraf(options.botToken);
bot.command('start', startCommand);
bot.command('stop', stopCommand);
bot.launch();
return bot;
}
function startCommand(context){
addChat(context);
context.reply(`*bleep* I am the TooGoodToGo bot.
I will tell you whenever the stock of your favorites changes. *bloop*.
If you get tired of my spamming you can (temporarily) disable me with:
/stop`);
if(cache.message){
context.reply(cache.message);
}
}
function stopCommand(context){
context.reply(`*bleep* Ok.. I get it. Too much is too much. I'll stop bothering you now. *bloop*.
You can enable me again with:
/start`);
removeChat(context.chat.id);
}
function addChat(context){
const chats = config.get('notifications.telegram.chats');
const chat = {
id: context.chat.id,
firstName: context.from.first_name,
lastName: context.from.last_name
};
config.set('notifications.telegram.chats', _.unionBy(chats, [chat], chat => chat.id));
console.log(`Added chat ${chat.firstName} ${chat.lastName} (${chat.id})`);
}
function removeChat(chatId){
const chats = config.get('notifications.telegram.chats');
const chat = _.find(chats, { id: chatId });
if(chat){
config.set('notifications.telegram.chats', _.pull(chats, chat));
console.log(`Removed chat ${chat.firstName} ${chat.lastName} (${chat.id})`);
}
}