This repository was archived by the owner on May 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbot.js
More file actions
283 lines (251 loc) · 7.22 KB
/
bot.js
File metadata and controls
283 lines (251 loc) · 7.22 KB
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
'use strict'
const cluster = require('cluster')
const fs = require('fs')
const Telegram = require('telegram-node-bot')
const TinyRequest = require('tiny_request')
const TelegramBaseController = Telegram.TelegramBaseController
const TextCommand = Telegram.TextCommand
const BaseScopeExtension = Telegram.BaseScopeExtension
const MongooseStorage = require('./extensions/storages/MongooseStorage')
const Middleware = require('./extensions/middlewares/Middleware')
const MiddlewareBaseController = require('./extensions/middlewares/MiddlewareBaseController')
const fast = require('fast.js')
const mongoose = require('mongoose')
const seneca = require('seneca')()
const sources = require('./sources')
const config = require('./config')
const tg = new Telegram.Telegram(require('./token').token, {
webAdmin: {
port: 3011,
host: 'localhost'
},
storage: new MongooseStorage()
})
if (cluster.isMaster) {
mongoose.connect('mongodb://localhost/bashrobot')
seneca
.use('QuoteServices')
.listen()
} else if (cluster.isWorker) {
seneca
.client()
}
// TODO: add jsdoc
class UpdateLastActivityMW extends Middleware {
updateLastActivity($, resolve, reject) {
let set = $.idFromGroupChat ? 'setChatSession' : 'setUserSession';
let get = $.idFromGroupChat ? 'getChatSession' : 'getUserSession';
$[get]('totalRequests')
.then(totalRequests => {
if (!totalRequests)
return $[set]('totalRequests', 1)
return $[set]('totalRequests', ++totalRequests)
})
.then(() => $[set]('lastActivity', Date.now()))
.then(() => resolve($))
}
get order() {
return ['updateLastActivity']
}
}
class DoNotHandleOldMessages extends Middleware {
doNotHandleOldMessages($, resolve, reject) {
let difference = $.message.date - Math.floor(Date.now() / 1000);
if (difference >= -30 && difference <= -5) {
return reject('Almost new')
} else if (difference < -30) {
return reject('Old')
}
return resolve($)
}
get order() {
return ['doNotHandleOldMessages']
}
}
// TODO: refactor this trash
class QuoteController extends MiddlewareBaseController {
constructor(config) {
super()
this.source = config.source || {}
this.sources = config.sources || [[{}]]
}
randomQuoteForUserHandler($) {
seneca
.act({
role: 'quote',
cmd: 'random',
chatId: $.chatId,
source: this.source
}, (err, res) => {
$.sendMessage(res.quote || 'Whoops, something went wrong.', {
parse_mode: 'html',
disable_web_page_preview: true,
reply_markup: JSON.stringify({
ForceReply: {
force_reply: true,
selective: true
}
}),
reply_to_message_id: $.idFromGroupChat ? $.message.messageId : ''
})
})
}
randomQuoteHandler($) {
let randomSourceInd = Math.floor(Math.random() * this.sources.length)
let randomVariatInd = Math.floor(Math.random() * this.sources[randomSourceInd].length)
seneca
.act({
role: 'quote',
cmd: 'random',
chatId: $.chatId,
source: this.sources[randomSourceInd][randomVariatInd]
}, (err, res) => {
$.sendMessage(
res.quote || 'Whoops, something went wrong. Data: ' + randomSourceInd + ', ' + randomVariatInd,
{
parse_mode: 'html',
disable_web_page_preview: true,
reply_markup: JSON.stringify({
ForceReply: {
force_reply: true,
selective: true
}
}),
reply_to_message_id: $.idFromGroupChat ? $.message.messageId : ''
}
)
})
}
get routes() {
return {
'randomQuoteForUserCommand': 'randomQuoteForUserHandler',
'randomQuoteCommand': 'randomQuoteHandler'
}
}
}
class StartController extends MiddlewareBaseController {
startHandler($) {
$.sendMessage('Добро пожаловать!\n\nЧтобы посмотреть все команды, нажми /help')
}
get routes() {
return {
'startCommand': 'startHandler'
}
}
}
class HelpController extends MiddlewareBaseController {
constructor(additionalCommands) {
super()
this.additionalCommands = additionalCommands || ''
}
helpHandler($) {
$.sendMessage(
'Список команд:\n'
+ '/help - Помощь\n'
+ '/random - Случайная цитата\n'
+ '\nКоманды ниже отдают случайную цитату:\n'
+ this.additionalCommands
+ '\n\nIf you want to contribute, check out bot\'s github page:\nhttp://github.com/bitrixhater/bashrobot',
{
disable_web_page_preview: true,
reply_markup: JSON.stringify({
ForceReply: {
force_reply: true,
selective: true
}
}),
reply_to_message_id: $.idFromGroupChat ? $.message.messageId : ''
}
)
}
chlenHandler($) {
$.sendMessage(
'/chlen',
{
disable_web_page_preview: true,
reply_markup: JSON.stringify({
ForceReply: {
force_reply: true,
selective: true
}
}),
reply_to_message_id: $.idFromGroupChat ? $.message.messageId : ''
}
)
}
get routes() {
return {
'helpCommand': 'helpHandler',
'chlenCommand': 'chlenHandler'
}
}
}
class OtherwiseController extends MiddlewareBaseController {
handle($) {
if (!$.idFromGroupChat)
$.sendMessage('Воспользуйтесь командой /help для просмотра списка возможных команд', {
reply_markup: JSON.stringify({
ForceReply: {
force_reply: true,
selective: true
}
})
})
}
}
let router = tg.router
let updateLastActivityMW = new UpdateLastActivityMW()
let doNotHandleOldMessages = new DoNotHandleOldMessages()
fast.forEach(sources, variations => {
fast.forEach(variations, source => {
router = router.when(
new TextCommand(
source.name.replace(/\s/g, ' ').toLowerCase(),
'randomQuoteForUserCommand'
),
new QuoteController({
source: source
})
.middleware(updateLastActivityMW)
.middleware(doNotHandleOldMessages)
)
})
})
let helpController = new HelpController(fast.map(sources, variations => {
return fast.map(variations, source => {
return '/' + source.name.replace(/\s/g, ' ').toLowerCase()
+ ' - ' + source.desc
}).join('\n')
}).join('\n'))
router = router
.when(
new TextCommand('random', 'randomQuoteCommand'),
new QuoteController({
sources: sources
})
.middleware(updateLastActivityMW)
.middleware(doNotHandleOldMessages)
)
.when(
new TextCommand('start', 'startCommand'),
new StartController()
.middleware(updateLastActivityMW)
.middleware(doNotHandleOldMessages)
)
.when(
new TextCommand('chlen', 'chlenCommand'),
helpController
.middleware(updateLastActivityMW)
.middleware(doNotHandleOldMessages)
)
.when(
new TextCommand('help', 'helpCommand'),
helpController
.middleware(updateLastActivityMW)
.middleware(doNotHandleOldMessages)
)
.otherwise(
new OtherwiseController()
.middleware(updateLastActivityMW)
.middleware(doNotHandleOldMessages)
)