forked from LyoSU/fStikBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.js
223 lines (194 loc) · 5.54 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
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
const path = require('path')
const Telegraf = require('telegraf')
const Composer = require('telegraf/composer')
const session = require('telegraf/session')
const rateLimit = require('telegraf-ratelimit')
const I18n = require('telegraf-i18n')
const {
db
} = require('./database')
const {
handleError,
handleStart,
handleClub,
handleSticker,
handleDeleteSticker,
handleRestoreSticker,
handlePacks,
handleSelectPack,
handleHidePack,
handleRestorePack,
handleCopyPack,
handleLanguage,
handleEmoji,
handleStickerUpade,
handlePublish,
handleInlineQuery
} = require('./handlers')
const scenes = require('./scenes')
const {
updateUser,
stats
} = require('./utils')
global.startDate = new Date()
// init bot
const bot = new Telegraf(process.env.BOT_TOKEN, {
telegram: {
webhookReply: false
},
handlerTimeout: 1
})
bot.on(['channel_post', 'edited_channel_post', 'poll'], () => {})
bot.use((ctx, next) => {
next().catch((error) => {
return handleError(error, ctx)
})
return true
})
// I18n settings
const { match } = I18n
const i18n = new I18n({
directory: path.resolve(__dirname, 'locales'),
defaultLanguage: 'en',
defaultLanguageOnMissing: true
})
// I18n middleware
bot.use(i18n)
// rate limit
bot.use(rateLimit({
window: 1000,
limit: 10,
onLimitExceeded: (ctx) => ctx.reply(ctx.i18n.t('ratelimit'))
}))
const limitPublicPack = Composer.optional((ctx) => {
return ctx.session?.userInfo?.stickerSet?.passcode === 'public'
}, rateLimit({
window: 1000 * 60,
limit: 1,
onLimitExceeded: (ctx) => ctx.reply(ctx.i18n.t('ratelimit'))
}))
bot.use(stats)
bot.use((ctx, next) => {
if (ctx.update.my_chat_member) return false
else return next()
})
// bot config
bot.context.config = require('./config.json')
// db connect
bot.context.db = db
// use session
bot.use(
session({
getSessionKey: (ctx) => {
if ((ctx.from && ctx.chat && ctx.chat.id === ctx.from.id) || (!ctx.chat && ctx.from)) {
return `user:${ctx.from.id}`
} else if (ctx.from && ctx.chat) {
return `${ctx.from.id}:${ctx.chat.id}`
}
return null
}
})
)
// response time logger
bot.use(async (ctx, next) => {
// const ms = new Date()
if (ctx.inlineQuery) {
await updateUser(ctx)
ctx.state.answerIQ = []
}
if (ctx.callbackQuery) ctx.state.answerCbQuery = []
return next(ctx).then(() => {
if (ctx.inlineQuery) return ctx.answerInlineQuery(...ctx.state.answerIQ)
if (ctx.callbackQuery) return ctx.answerCbQuery(...ctx.state.answerCbQuery)
})
})
bot.use(Composer.privateChat(async (ctx, next) => {
await updateUser(ctx)
await next(ctx)
await ctx.session.userInfo.save().catch(() => {})
}))
bot.command('json', ({ replyWithHTML, message }) =>
replyWithHTML('<code>' + JSON.stringify(message, null, 2) + '</code>')
)
// scene
bot.use(scenes)
bot.use(require('./handlers/admin'))
// main commands
bot.start((ctx, next) => {
if (ctx.startPayload === 'inline_pack') {
ctx.state.type = 'inline'
return handlePacks(ctx)
}
return next()
})
bot.hears(['/packs', match('cmd.start.btn.packs')], ctx => {
ctx.state.type = 'common'
return handlePacks(ctx)
})
bot.hears(['/inline', match('cmd.start.btn.inline')], ctx => {
ctx.state.type = 'inline'
return handlePacks(ctx)
})
bot.hears(['/anim', match('cmd.start.btn.anim')], ctx => {
ctx.state.type = 'animated'
return handlePacks(ctx)
})
bot.hears(['/video', match('cmd.start.btn.video')], ctx => {
ctx.state.type = 'video'
return handlePacks(ctx)
})
bot.start((ctx, next) => {
if (ctx.startPayload.match(/s_(.*)/)) return handleSelectPack(ctx)
return next()
})
bot.hears(['/new', match('cmd.start.btn.new')], (ctx) => ctx.scene.enter('сhoosePackType'))
bot.action(/new_pack/, (ctx) => ctx.scene.enter('сhoosePackType'))
bot.hears(['/club', '/start club', match('cmd.start.btn.club')], handleClub)
bot.hears(/addstickers\/(.*)/, handleCopyPack)
bot.command('public', handleSelectPack)
bot.command('emoji', handleEmoji)
bot.command('copy', (ctx) => ctx.replyWithHTML(ctx.i18n.t('cmd.copy')))
bot.command('restore', (ctx) => ctx.replyWithHTML(ctx.i18n.t('cmd.restore')))
bot.command('original', (ctx) => ctx.scene.enter('originalSticker'))
bot.command('lang', handleLanguage)
bot.hears(/(\u00a9|\u00ae|[\u2000-\u3300]|\ud83c[\ud000-\udfff]|\ud83d[\ud000-\udfff]|\ud83e[\ud000-\udfff])/g, handleStickerUpade)
bot.use(handlePublish)
bot.use(handleInlineQuery)
// sticker detect
bot.on(['sticker', 'document', 'photo', 'video'], limitPublicPack, handleSticker)
// callback
bot.action(/(set_pack):(.*)/, handlePacks)
bot.action(/(hide_pack):(.*)/, handleHidePack)
bot.action(/(delete_sticker):(.*)/, limitPublicPack, handleDeleteSticker)
bot.action(/(restore_sticker):(.*)/, limitPublicPack, handleRestoreSticker)
bot.action(/set_language:(.*)/, handleLanguage)
// forward from sticker bot
bot.on('text', (ctx, next) => {
if (ctx.message.forward_from && ctx.message.forward_from.id === 429000) return handleRestorePack(ctx)
else return next()
})
// club
bot.action(/(club):(.*)/, handleClub)
// any message
bot.on('message', handleStart)
// start bot
db.connection.once('open', async () => {
console.log('Connected to MongoDB')
if (process.env.BOT_DOMAIN) {
bot.launch({
webhook: {
domain: process.env.BOT_DOMAIN,
hookPath: `/fStikBot:${process.env.BOT_TOKEN}`,
port: process.env.WEBHOOK_PORT || 2500
}
}).then(() => {
console.log('bot start webhook')
})
} else {
bot.launch().then(() => {
console.log('bot start polling')
})
}
require('./utils/messaging')
require('./utils/optimize-db')
})