-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
266 lines (222 loc) · 8.14 KB
/
index.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
const TelegramBot = require('node-telegram-bot-api'),
Telegraph = require('telegraph-node'),
express = require('express'),
bodyParser = require('body-parser'),
Abstracts = require('./models/abstract'),
SerdechkoBot = require('./models/telegram-bot'),
Group = require('./models/group'),
Schedule = require('./models/schedule'),
scheduleHandler = require('./schedule'),
config = require('./config'),
token = config.token,
url = config.url,
port = process.env.PORT || 3000,
secret = config.secret,
botId = 348857845,
subjects = ['Английский', 'ПРВ', 'Философия', 'Матан', 'Комп.электроника', 'ТЭЦ', 'ООП', 'КЛ', 'СП'],
groups = ['КВ-51', 'КВ-52', 'КВ-53'],
app = express(),
bot = new TelegramBot(token),
ph = new Telegraph()
bot.setWebHook(`${url}/bot${token}`);
app.use((req, res, next) => {
console.log(req.method, req.url);
next();
});
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended: true}));
app.post(`/bot${token}`, (req, res) => { // requests form Telegram
bot.processUpdate(req.body);
res.sendStatus(200);
});
app.post('/', (req, res) => { // requests from another app
console.log(req.body);
if (req.body.secret == secret) {
let name = req.body.name;
Abstracts.find({ name }, (err, abstract) => {
if (err) {
console.log(err);
return res.end('error');
}
SerdechkoBot.find({}, (err, group) => {
let groups = group[0].groups,
absText = abstract[0].text;
console.log('List of ids: ', groups)
groups.forEach((id) => {
bot.sendMessage(id, `${abstract[0].author} сохранил конспект "${abstract[0].name}" по предмету ${abstract[0].subject}`);
bot.sendMessage(id, absText);
});
res.end('Abstract has sent to the telegram chat');
})
})
} else res.end('Wrong secret');
});
app.use((err, req, res, next) => {
console.log(err);
res.send('error');
next();
})
bot.onText(/\/show/, (msg, match) => {
let text = match.input.split(' '),
subject = text[1],
command = text[2],
timer = 400;
if (!(subjects.indexOf(subject) + 1))
return bot.sendMessage(msg.chat.id, `Не нашел такого предмета: ${subjects.join('; ')}`)
if (!command)
return bot.sendMessage(msg.chat.id, `Введи пожалуйста название предмета и команду: ${subjects.join('; ')}`)
Abstracts.find({ subject }, (err, abstracts) => {
if (err) return bot.sendMessage(msg.chat.id, 'Ой, какая-то ошибка с базой данных. Попробуй еще')
abstracts.sort((a, b) => a.date - b.date);
if (command == 'all')
abstracts.forEach(abstract => sendAbstract(abstract))
else if (Number.isInteger(+command))
sendAbstract(abstracts[command - 1])
else if (isInterval(command))
for (let i = command[0] - 1; i < command[2]; i++)
sendAbstract(abstracts[i])
else bot.sendMessage(msg.chat.id, 'Что-то ты вообще не то написал')
function sendAbstract(abstract) {
setTimeout(() => {
bot.sendMessage(msg.chat.id, abstract.telegraph_url)
}, timer += 400)
// setTimeout(() => {
// let absText = abstract.text,
// length = absText.length
// const maxLength = 4096
// if (length > maxLength) {
// let i = 0;
// while (i < length) {
// j = i + maxLength
// if (j < length)
// while (absText[j] != '\n') j--
// setTimeout((i, j) => {
// bot.sendMessage(msg.chat.id, absText.slice(i, j))
// }, Math.trunc(i / 10), i, j)
// i = j + 1
// }
// } else
// bot.sendMessage(msg.chat.id, absText)
// }, timer)
// timer += 500;
}
function isInterval(command) {
command = command.split('')
return (command[0] < command[2] && abstracts[command[0] - 1] && abstracts[command[2] - 1] && command[1] == '-') ? true : false
}
})
})
bot.onText(/\/all/, (msg, match) => {
let res = 'Вот что по лекциям:\n',
num = subjects.length,
counter = 0;
subjects.forEach(subject => {
Abstracts.find({ subject }, (err, abstracts) => {
if (!err) {
if (abstracts.length != 0)
res += `${subject}: ${abstracts.length}\n`;
counter++;
if (counter == num) bot.sendMessage(msg.chat.id, res);
}
})
})
});
bot.onText(/\/grouplist/, (msg, match) => {
let text = match.input.split(' '),
name = text[1] || 'КВ-51';
Group.find({ name }, (err, group) => {
if (err) return console.log(err);
if (!group) return bot.sendMessage(msg.chat.id, 'Не нашел группу');
let response = '';
for (let i = 0; i < group[0].amount; i++)
response += `${i+1}. ${group[0].list[i].name} ${group[0].list[i].surname}\n`;
bot.sendMessage(msg.chat.id, response);
})
});
bot.onText(/\/schedule/, (msg, match) => {
scheduleHandler(msg, bot, SerdechkoBot, groups, Schedule);
});
bot.onText(/\/timesch/, (msg, match) => {
let response = '',
firstStart = new Date('1 8:30'),
len = new Date('1 1:35'),
shift = new Date('1 1:55');
for (let i = 0; i < 5; i++) {
let startM = firstStart.getMinutes() + shift.getMinutes() * i,
startH = firstStart.getHours() + shift.getHours() * i;
while(startM >= 60) {
startM -= 60;
startH++;
};
let endM = startM + len.getMinutes(),
endH = startH + len.getHours();
while(endM >= 60) {
endM -= 60;
endH++;
};
if (endM < 10) endM = '0' + endM;
response += `${i+1}. ${startH}:${startM} - ${endH}:${endM}\n`;
}
bot.sendMessage(msg.chat.id, response);
});
bot.onText(/\/timeleft/, (msg, match) => {
let len = 100 * 60 + 100 * 35, // 1:35
shift = 100 * 60 + 100 * 55, // 1:55
firstStart = 100 * 60 * 8 + 100 * 30, // 8:30
timeNow = new Date(),
curr = 100 * 60 * (timeNow.getHours() + 2) + 100 * timeNow.getMinutes(),
flag = false;
for (let i = 0; i < 5; i++) {
let start = firstStart + shift * i,
end = start + len;
if (curr > start && curr < end) {
flag = true;
let minutes = Math.trunc((end - curr) / 100),
ending;
if (minutes % 10 == 1)
if (minutes == 11)
ending = 'минуточек'
else
ending = 'минуточка'
else if (minutes % 10 < 5 && minutes % 10 != 0)
if (minutes > 10 && minutes < 15)
ending = 'минуточек'
else
ending = 'минуточки'
else
ending = 'минуточек'
response = `Тебе осталось ${minutes} ${ending}`;
}
}
flag ? bot.sendMessage(msg.chat.id, response) : bot.sendMessage(msg.chat.id, 'Тебе повезло, ты не на паре');
})
bot.onText(/\/start/, (msg, match) => {
SerdechkoBot.find({}, (err, data) => {
let groups = data[0].groups;
if (!(groups.indexOf(msg.chat.id) + 1)) {
groups.push(msg.chat.id)
SerdechkoBot.update({}, { groups }, err => err ? console.log(err) : console.log('New group!'))
bot.sendMessage(msg.chat.id, 'Привет <3')
} else {
bot.sendMessage(msg.chat.id, 'Я тебя уже знаю!')
}
})
})
bot.onText(/\/die/, (msg, match) => {
bot.sendMessage(msg.chat.id, 'Я ХОЧУ СДОХНУТЬ!!!!!!')
})
bot.onText(/\/help/, (msg, match) => {
bot.sendMessage(msg.chat.id, `Я бот-сердечко. Записываю лекции и дарю любовь <3\n\n` +
`/all - посмотреть что по лекциям\n/show subject number - посмотреть конкретную лекцию\n` +
`/grouplist - посмотреть список своей группы\n/schedule - посмотреть расписание\n/love - дарить любовь\n` +
`/schedule group/day/today/tomorrow - как хочешь, так и юзаешь, чтобы посмотреть расписание любой группы потока`);
})
bot.onText(/\/love/, (msg, match) => {
bot.sendMessage(msg.chat.id, 'Всем любви в этом чатике <3')
// bot.sendMessage(msg.chat.id, 'Это love-police. Вы арестованы за нелюбовь к чатику. Штраф - ваше сердечко. Впредь без нарушений');
})
bot.onText(/\/test/, (msg, match) => {
bot.sendMessage(msg.chat.id, 'http://telegra.ph/Test-03-23-2')
})
bot.on('webhook_error', error => console.log(error))
app.listen(port, () => console.log(`Express-bot is running on port ${port}`))