forked from idoco/intergram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
121 lines (106 loc) · 3.14 KB
/
server.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
require('dotenv').config()
const request = require('request')
const express = require('express')
const bodyParser = require('body-parser')
const app = express()
const http = require('http').Server(app)
const io = require('socket.io')(http)
app.use(express.static('dist', { index: 'demo.html', maxage: '4h' }))
app.use(bodyParser.json())
const { TELEGRAM_TOKEN, TELEGRAM_CHAT_ID, PORT } = process.env
const sessions = {}
const buffer = {}
const sendTelegramMessage = (chatId, text, parseMode, disableNotification = false) => {
const data = {
disable_notification: disableNotification,
chat_id: chatId,
text,
}
if (parseMode) data.parse_mode = parseMode
request
.post(`https://api.telegram.org/bot${TELEGRAM_TOKEN}/sendMessage`)
.form(data)
.on('error', console.error)
}
// Handle admin Telegram messages
app.post('/hook', (req, res) => {
try {
const message = req.body.message || req.body.channel_post
let name = 'Andrii' // message.from.first_name || message.chat.first_name
const chatId = TELEGRAM_CHAT_ID // || message.chat.id;
const text = message.text || ''
const reply = message.reply_to_message
if (text.startsWith('/start')) { // init
sendTelegramMessage(
chatId,
'*Welcome to Intergram* \n' +
'Your unique chat id is `' +
chatId +
'`\n' +
'Use it to link between the embedded chat and this telegram chat',
'Markdown'
)
} else if (reply) { // reply to a specific user
let replyText = reply.text || ''
let userId = replyText.split(':')[0]
const socketId = sessions[userId]
if (socketId) {
io.to(socketId).emit(chatId + '-' + userId, {
name,
text,
from: 'admin',
})
} else {
if (!buffer[userId]) {
buffer[userId] = []
}
buffer[userId].unshift({
chatId,
name,
text,
from: 'admin',
adminName: name,
})
}
} else if (text) { // broadcast message to all users
// io.emit(chatId, {name, text, from: 'admin'})
}
} catch (e) {
console.error('hook error', e, req.body)
}
res.statusCode = 200
res.end()
})
// Handle chat visitors websocket messages
io.on('connection', (socket) => {
socket.on('register', (registerMsg) => {
let userId = registerMsg.userId
let chatId = registerMsg.chatId
sessions[userId] = socket.id
if (buffer[userId]) {
const buffered = buffer[userId]
let msg = buffered.pop()
while (msg) {
const { chatId, name, text, from, adminName } = msg
io.to(socket.id).emit(chatId + '-' + userId, {
name,
text,
from,
adminName,
})
msg = buffered.pop()
}
delete buffer[userId]
}
socket.on('message', (msg) => {
if (msg.from !== 'bot') io.to(socket.id).emit(chatId + '-' + userId, msg)
sendTelegramMessage(chatId, `${userId}: ${msg.text}`)
})
socket.on('disconnect', () => {
delete sessions[userId]
})
})
})
http.listen(PORT || 3002, () => {
console.log(`Chat listening on port: ${PORT || 3002}`)
})