-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.js
90 lines (67 loc) · 2.11 KB
/
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
81
82
83
84
85
86
87
88
89
90
const { TELEGRAM_TOKEN, DATABASE_URL, ACCOUNT_FILE } = require('./config/env_vars')
const admin = require('firebase-admin')
const serviceAccount = require(ACCOUNT_FILE)
/**
* INIT DB STUFF
* In the future it should be able to move to any DB, not only Firebase
*/
admin.initializeApp({
credential: admin.credential.cert(serviceAccount),
databaseURL: DATABASE_URL
})
const db = admin.database()
const ref = db.ref('songs')
const DB_Handler = require('./dbhandler/dbhandler')
const dbhandler = new DB_Handler(db, ref)
/**
* INIT BOT STUFF
*/
const { Telegraf } = require('telegraf')
const Telegram = require('telegraf/telegram')
const bot = new Telegraf(TELEGRAM_TOKEN)
const telegram = new Telegram(TELEGRAM_TOKEN)
const BotHelpers = require('./bot_helpers')
const bothelper = new BotHelpers(dbhandler, telegram)
/**
* WEB DEV SERVER STUFF
* The following code is only for demo purpose to display
* info visually in order to easily test the info retrieval
*/
const WebDevServer = require('./webdevserver/devserver')
const webdevserver = new WebDevServer(dbhandler, bothelper)
webdevserver.init()
/**
* BOT STUFF
*/
// CHANNELS
bot.on('channel_post', async (ctx) => {
const response = await bothelper.messageHandler(ctx.update.channel_post)
if (response && response.ok) {
ctx.reply(response.result)
}
})
bot.on('edited_channel_post', async (ctx) => {
if (ctx.update.edited_channel_post.caption === 'delete') {
const isDeleted = await bothelper.deleteMessage(ctx.update.edited_channel_post)
if (isDeleted.ok) {
ctx.reply(`File ${isDeleted.result} deleted`)
}
}
})
// GROUPS
bot.on('message', async (ctx) => {
const response = await bothelper.messageHandler(ctx.message)
if (response && response.ok) {
ctx.reply(response.result)
}
})
bot.on('edited_message', async (ctx) => {
if (ctx.update.edited_message.caption === 'delete') {
const isDeleted = await bothelper.deleteMessage(ctx.update.edited_message)
if (isDeleted.ok) {
ctx.reply(`File ${isDeleted.result} deleted`)
}
}
})
bot.launch()
console.log('Server running at port: ', process.env.PORT || 8125)