-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
456 lines (407 loc) · 16.1 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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
const telegraf = require('telegraf')
const config = require('./config')
const data = require('./data')
const mongo = require('mongodb').MongoClient
const urlencode = require('urlencode')
const Extra = require('telegraf/extra')
const Markup = require('telegraf/markup')
const session = require('telegraf/session')
const Stage = require('telegraf/stage')
const Scene = require('telegraf/scenes/base')
const rateLimit = require('telegraf-ratelimit')
const { createServer } = require('http')
const { text } = config
http=require("http");
const Server=createServer((req,res)=>{
res.end("server is running")
})
const bot = new telegraf(data.token, {telegram: {webhookReply: true}} )
let db =null
const PRODUCTION = true;
// bot.use(stage.middleware());
if (PRODUCTION) {
bot.startPolling(`https://tg-uoz5.onrender.com/${data.token}`)
// bot.telegram.setWebhook(`/${data.token}`, null, 4000);
} else {
// bot.launch()
// .then(() => console.log("Bot Launched"))
// .catch(console.log);
}
const buttonsLimit = {
window: 1000,
limit: 1,
onLimitExceeded: (ctx, next) => {
if ('callback_query' in ctx.update)
ctx.answerCbQuery('You`ve pressed buttons too oftern, wait.', true)
.catch((err) => sendError(err, ctx))
},
keyGenerator: (ctx) => {
return ctx.callbackQuery ? true : false
}
}
bot.use(rateLimit(buttonsLimit))
mongo.connect(data.mongoLink, {useNewUrlParser: true, }, (err, client) => {
if (err) {
sendError(err)
console.log("error")
}
else{
console.log("mongoDB connect")
}
db = client.db('bot')
bot.startWebhook(`https://tg-uoz5.onrender.com/${data.token}`, null, 2104)
// bot.startPolling()
})
const stage = new Stage()
bot.use(session())
bot.use(stage.middleware())
const getNumber = new Scene('getNumber')
stage.register(getNumber)
bot.hears(/^\/start (.+[1-9]$)/, async (ctx) => {
let tgData = await bot.telegram.getChatMember(data.channel, ctx.from.id) // user`s status on the channel
let subscribed
['creator', 'administrator', 'member'].includes(tgData.status) ? subscribed = true : subscribed = false
try {
subscribed? ctx.reply(
text.hello + ctx.from.id,
Extra
.markup(Markup.inlineKeyboard([
[Markup.urlButton('📨 Share link', 't.me/share/url?url=' + urlencode(text.invite + ctx.from.id))],
[Markup.callbackButton('💵 ቀሪ ሂሳብ', 'balance'), Markup.callbackButton('📱የኔ ስልክ ቁጥር', 'number')]
]))
.webPreview(false)
):ctx.reply(
text.hello + ctx.from.id,
Extra
.markup(Markup.inlineKeyboard([
ctx.reply(
text.hello + ctx.from.id,
Extra
.markup(Markup.inlineKeyboard([
[Markup.urlButton('📥 በመጀመሪያ የቴሌግራም ቻናላችንን መቀላቀል አለብዎ ', data.chanLink),
],
[ Markup.callbackButton('🔄 Restart', 'main')]
]))
.webPreview(false)
)
]))
.webPreview(false)
)
let dbData = await db.collection('allUsers').find({userId: ctx.from.id}).toArray()
if (dbData.length === 0 && ctx.from.id != +ctx.match[1]) {
db.collection('allUsers').insertOne({userId: ctx.from.id, inviter: +ctx.match[1], virgin: true, paid: false, payments: 0})
}
} catch (err) {
sendError(err, ctx)
}
})
bot.start(async (ctx) => {
let tgData = await bot.telegram.getChatMember(data.channel, ctx.from.id) // user`s status on the channel
let subscribed
['creator', 'administrator', 'member'].includes(tgData.status) ? subscribed = true : subscribed = false
try {
subscribed? ctx.reply(
text.hello + ctx.from.id,
Extra
.markup(Markup.inlineKeyboard([
[ Markup.urlButton('📨 ሰው ለመጋበዝ ', 't.me/share/url?url=' + urlencode(text.invite + ctx.from.id))],
[Markup.callbackButton('💵 ቀሪ ሂሳብ', 'balance'), Markup.callbackButton('📱 የኔ ስልክ ቁጥር', 'number')]
]))
.webPreview(false)
):ctx.reply(
text.hello + ctx.from.id,
Extra
.markup(Markup.inlineKeyboard([
[Markup.urlButton('📥 በመጀመሪያ የቴሌግራም ቻናላችንን መቀላቀል አለብዎ ', data.chanLink),
],
[ Markup.callbackButton('🔄 Restart', 'main')]
]))
.webPreview(false)
)
let dbData = await db.collection('allUsers').find({userId: ctx.from.id}).toArray()
if (dbData.length === 0) {
db.collection('allUsers').insertOne({userId: ctx.from.id, virgin: true, payments: 0})
}
} catch (err) {
sendError(err, ctx)
}
})
{
bot.action('main', async (ctx) => {
let tgData = await bot.telegram.getChatMember(data.channel, ctx.from.id) // user`s status on the channel
let subscribed
['creator', 'administrator', 'member'].includes(tgData.status) ? subscribed = true : subscribed = false
try {
subscribed&& ctx.answerCbQuery()
subscribed&&ctx.scene.leave('getNumber')
subscribed&&ctx.editMessageText(
text.hello + ctx.from.id,
Extra
.markup(Markup.inlineKeyboard([
[Markup.urlButton('📨 ሰው ለመጋበዝ', 't.me/share/url?url=' + urlencode(text.invite + ctx.from.id))],
[Markup.callbackButton('💵 ቀሪ ሂሳብ', 'balance'), Markup.callbackButton('📱 የኔ ስልክ ቁጥር', 'number')],
]))
.webPreview(false)
)
// !subscribed&&ctx.editMessageText(
// 'You didn`t performed no condition. Collect 1000 {currency} by inviting friends' +
// 'and subscribe the channel ' + data.chanLink + '',
// Extra
// .markup(Markup.inlineKeyboard([
// [Markup.urlButton('📨 Share link', 't.me/share/url?url=' + urlencode(text.invite + ctx.from.id))],
// [Markup.urlButton('📥 Subscribe the channel', data.chanLink)],
// [Markup.callbackButton('◀️ Back', 'balance')]
// ]))
// .webPreview(false)
// )
let dbData = await db.collection('allUsers').find({userId: ctx.from.id}).toArray()
if (dbData.length === 0) {
db.collection('allUsers').insertOne({userId: ctx.from.id, virgin: true, payments: 0})
}
} catch (err) {
sendError(err, ctx)
}
})}
bot.action('balance', async (ctx) => {
try {
ctx.answerCbQuery()
let notPaid = await db.collection('allUsers').find({inviter: ctx.from.id, paid: false}).toArray() // only not paid invited users
let allRefs = await db.collection('allUsers').find({inviter: ctx.from.id}).toArray() // all invited users
let thisUsersData = await db.collection('allUsers').find({userId: ctx.from.id}).toArray()
let sum, payments
if (thisUsersData[0].virgin) {
sum = notPaid.length * 1 + 1
} else {
sum = notPaid.length * 1
}
if (thisUsersData[0].payments === 0) {
payments = ''
} else {
payments = '\n ትንሹ ማውጣት የሚችሉት የገንዘብ መጠን : ' + thisUsersData[0].payments
}
ctx.editMessageText(
'አሁን ያለዎት ሂሳብ: ' + sum + ' ብር . እስካሁን የጋበዙት ' + allRefs.length + ' ሰው.' + payments,
Extra
.markup(Markup.inlineKeyboard([
[Markup.callbackButton('◀️ Back', 'main'), Markup.callbackButton('💸 ገንዘብዎን ወጭ ለማረግ ', 'withdraw')]
]))
)
.catch((err) => sendError(err, ctx))
} catch (err) {
sendError(err, ctx)
}
})
bot.action('withdraw', async (ctx) => {
try {
ctx.answerCbQuery()
let notPaid = await db.collection('allUsers').find({inviter: ctx.from.id, paid: false}).toArray() // only not paid invited users
let tgData = await bot.telegram.getChatMember(data.channel, ctx.from.id) // user`s status on the channel
let subscribed, minSum
['creator', 'administrator', 'member'].includes(tgData.status) ? subscribed = true : subscribed = false
let thisUsersData = await db.collection('allUsers').find({userId: ctx.from.id}).toArray()
let sum, friendsLeft
if (thisUsersData[0].virgin) { // if user hasn`t got gift till
sum = notPaid.length *1 + 1
friendsLeft = 10 - notPaid.length
minSum = 10
} else {
sum = notPaid.length * 1
friendsLeft = 10 - notPaid.length
minSum = 10
}
if (!('number' in thisUsersData[0])) {
return ctx.editMessageText(
'እባክዎ ስልክ ቁጥርዎን ያስገቡ.',
Extra
.markup(Markup.inlineKeyboard([
[Markup.callbackButton('◀️ ዋና ገጽ', 'main')],
[Markup.callbackButton('💵 ቀሪ ሂሳብ', 'balance'), Markup.callbackButton('📱 የኔ ስልክ ቁጥር', 'number')],
]))
.webPreview(false)
)
.catch((err) => sendError(err, ctx))
}
if (sum >= minSum && subscribed) {
ctx.editMessageText(
'✅ ጥያቄዎ በሂደት ላይ ነው በአጭር ጊዜ ውስጥ ስለ ክፍያዎ እናሳውቅዎታለን .',
Extra
.markup(Markup.inlineKeyboard([
[Markup.callbackButton('◀️ ዋና ገጽ', 'main')]
]))
)
.catch((err) => sendError(err, ctx))
bot.telegram.sendMessage( // send message to admin
data.admins[1],
'New request. \nUser: [' + ctx.from.first_name + '](tg://user?id=' + ctx.from.id + ')\n' +
'The sum: ' + sum + ' Birr. \nNumber: ' + thisUsersData[0].number,
Extra
.markup(Markup.inlineKeyboard([
[Markup.callbackButton('✅ Paid', 'paid_' + ctx.from.id)]
]))
.markdown()
)
.catch((err) => sendError(err, ctx))
for (let key of notPaid) {
db.collection('allUsers').updateOne({userId: key.userId}, {$set: {paid: true}}, {upsert: true}) // mark refs as paid
.catch((err) => sendError(err, ctx))
}
db.collection('allUsers').updateOne({userId: ctx.from.id}, {$set: {virgin: false, payments: thisUsersData[0].payments + sum}}, {upsert: true})
.catch((err) => sendError(err, ctx))
} else if (sum >= minSum && !subscribed) {
ctx.editMessageText(
'You didn`t subscribe to the channel ' + data.chanLink + '. Make that and press "Withdraw" again.',
Extra
.markup(Markup.inlineKeyboard([
[Markup.urlButton('📥 Subscribe የቴሌግራም ቻናችንን ይቀላቀሉ ', data.chanLink)],
[Markup.callbackButton('◀️ ለመመለስ', 'balance')]
]))
.webPreview(false)
)
.catch((err) => sendError(err, ctx))
} else if (sum < minSum && subscribed) {
ctx.editMessageText(
'ያለዎት ሂሳብ : ' + sum + 'ብር ነው ማውጣት የሚችሉት በትንሹ ' + minSum +' ብር ሲሆን ' +
'ለማውጣት ተጭማሪ : ' + friendsLeft +
' ይጋብዙ . \n የእርስዎ መጋበዣ ሊንክ ያጋሩ: t.me/PlacetobeEthiopiabot?start=' + ctx.from.id,
Extra
.markup(Markup.inlineKeyboard([
[Markup.urlButton('📨 ሰው ለመጋበዝ', 't.me/share/url?url=' + urlencode(text.invite + ctx.from.id))],
[Markup.callbackButton('◀️ ለመመለስ', 'balance')]
]))
.webPreview(false)
)
.catch((err) => sendError(err, ctx))
} else {
ctx.editMessageText(
'ገንዘብዎን ለማውጣት መስፈርቱን አላሟሉም . እባክዎ በመጀመሪያ የእስዎን ሊንክ ለጉዋደኞችዎ በመላክ እና ' +
'የቴሌግራም ቻናችንን እንዲቀላቀሉ ያድርጉ ' + data.chanLink + '',
Extra
.markup(Markup.inlineKeyboard([
[Markup.urlButton('📨 ሰው ለመጋበዝ', 't.me/share/url?url=' + urlencode(text.invite + ctx.from.id))],
[Markup.urlButton('📥 የቴሌግራም ቻናችንን ይቀላቀሉ', data.chanLink)],
[Markup.callbackButton('◀️ ለመመለስ', 'balance')]
]))
.webPreview(false)
)
.catch((err) => sendError(err, ctx))
}
} catch (err) {
sendError(err, ctx)
}
})
bot.action(/paid_[1-9]/, async (ctx) => {
try {
ctx.answerCbQuery()
let userId = ctx.update.callback_query.data.substr(5)
ctx.editMessageText(ctx.update.callback_query.message.text + '\n\n✅ Paid')
.catch((err) => sendError(err, ctx))
bot.telegram.sendMessage(userId, 'ሂሳብዎ ወጪ ሆኗል .')
.catch((err) => sendError(err, ctx))
} catch (err) {
sendError(err, ctx)
}
})
bot.action('number', async (ctx) => {
try {
ctx.answerCbQuery()
let dbData = await db.collection('allUsers').find({userId: ctx.from.id}).toArray()
if ('number' in dbData[0]) {
ctx.editMessageText(
'የእርስዎ ቁጥር: ' + dbData[0].number + '\n❗️ ገንዘብ የሚያወጡበት በዚህ ስልክ ቁጥር ስለሆነ ልክ መሆኑን እባክዎ ያረጋግጡ ',
Extra
.markup(Markup.inlineKeyboard([
[Markup.callbackButton('◀️ ለመመለስ', 'main'), Markup.callbackButton('🖊 ለማስተካከል', 'get_number')]
]))
)
.catch((err) => sendError(err, ctx))
} else {
ctx.editMessageText(
'ስልክዎን አላስገቡም ',
Extra
.markup(Markup.inlineKeyboard([
[Markup.callbackButton('◀️ ለመመለስ', 'main'), Markup.callbackButton('🖊ስልክ ቁጥርዎን ለማስገባት...', 'get_number')]
]))
)
.catch((err) => sendError(err, ctx))
}
} catch (err) {
sendError(err, ctx)
}
})
bot.action('get_number', async (ctx) => {
try {
ctx.answerCbQuery()
ctx.scene.enter('getNumber')
ctx.editMessageText(
'ስልክ ቁጥርዎን በዚህ ፎርም ያስገቡ +2519********:',
Extra
.markup(Markup.inlineKeyboard([
[Markup.callbackButton('◀️ ስልክ ቁጥርዎን ለማስገባት...', 'number')]
]))
)
.catch((err) => sendError(err, ctx))
} catch (err) {
sendError(err, ctx)
}
})
getNumber.hears(/^.+251[0-9]{9}$/, async (ctx) => { // replace 998 to your country`s code or turn off regexp
ctx.reply('የእርስዎ ቁጥር: ' + ctx.message.text,
Extra
.markup(Markup.inlineKeyboard([
[Markup.callbackButton('◀️ ለመመለስ', 'main'), Markup.callbackButton('🖊 ለማስተካከል', 'get_number')]
]))
)
.catch((err) => sendError(err, ctx))
db.collection('allUsers').updateOne({userId: ctx.from.id}, {$set: {number: ctx.message.text}}, {upsert: true})
.catch((err) => sendError(err, ctx))
ctx.scene.leave('getNumber')
})
bot.command('getmembers', async (ctx) => {
if (data.admins.includes(ctx.from.id)) {
try {
let dbData = await db.collection('allUsers').find({}).toArray()
ctx.reply('🌀 All users: ' + dbData.length)
} catch (err) {
sendError(err, ctx)
}
}
})
async function sendError(err, ctx) {
console.log(err.toString())
if (ctx != undefined) {
if (err.code === 400) {
return setTimeout(() => {
ctx.answerCbQuery()
ctx.editMessageText(
text.hello + ctx.from.id,
Extra
.markup(Markup.inlineKeyboard([
[Markup.urlButton('📨 ሰው ለመጋበዝ', 't.me/share/url?url=' + urlencode(text.invite + ctx.from.id))],
[Markup.callbackButton('💵 ቀሪ ሂሳብ', 'balance'), Markup.callbackButton('📱 ስልክ ቁጥር', 'number')],
]))
.webPreview(false)
)
}, 500)
} else if (err.code === 429) {
return ctx.editMessageText(
'You`ve pressed buttons too often and were blocked by Telegram' +
'Wait some minutes and try again'
)
}
bot.telegram.sendMessage(data.admins[0], '[' + ctx.from.first_name + '](tg://user?id=' + ctx.from.id + ') has got an error.\nError text: ' + err.toString(), {parse_mode: 'markdown'})
} else {
bot.telegram.sendMessage(data.admins[0], 'There`s an error:' + err.toString())
}
}
bot.catch((err) => {
sendError(err)
})
process.on('uncaughtException', (err) => {
sendError(err)
})
const port=4000
Server.listen(port, (err)=>{
if(!err){
console.log("server is running at "+port)
}
})