forked from mhmmdrizki13/mrizkibot-starting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
handler.js
506 lines (489 loc) · 19.7 KB
/
handler.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
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
let util = require('util')
let fetch = require('node-fetch')
let simple = require('./lib/simple')
const uploadImage = require('./lib/uploadImage')
const knights = require('knights-canvas')
let { MessageType } = require('@adiwajshing/baileys')
const isNumber = x => typeof x === 'number' && !isNaN(x)
const delay = ms => isNumber(ms) && new Promise(resolve => setTimeout(resolve, ms))
module.exports = {
async handler(chatUpdate) {
// console.log(chatUpdate)
if (!chatUpdate.hasNewMessage) return
if (!chatUpdate.messages && !chatUpdate.count) return
let m = chatUpdate.messages.all()[0]
try {
simple.smsg(this, m)
switch (m.mtype) {
case MessageType.image:
case MessageType.video:
case MessageType.audio:
if (!m.key.fromMe) await delay(1000)
if (!m.msg.url) await this.updateMediaMessage(m)
break
}
m.exp = 0
m.limit = false
try {
let user = global.db.data.users[m.sender]
if (typeof user !== 'object') global.db.data.users[m.sender] = {}
if (user) {
if (!isNumber(user.exp)) user.exp = 0
if (!isNumber(user.limit)) user.limit = 10
if (!isNumber(user.lastclaim)) user.lastclaim = 0
if (!('registered' in user)) user.registered = false
if (!user.registered) {
if (!('name' in user)) user.name = this.getName(m.sender)
if (!isNumber(user.age)) user.age = -1
if (!isNumber(user.regTime)) user.regTime = -1
}
if (!isNumber(user.afk)) user.afk = -1
if (!('afkReason' in user)) user.afkReason = ''
if (!('banned' in user)) user.banned = false
if (!isNumber(user.level)) user.level = 0
if (!isNumber(user.call)) user.call = 0
if (!user.role) user.role = 'Bronze'
if (!('autolevelup' in user)) user.autolevelup = false
if (!isNumber(user.pc)) user.pc = 0
if (!isNumber(user.warning)) user.warning = 0
} else global.db.data.users[m.sender] = {
exp: 0,
limit: 10,
lastclaim: 0,
registered: false,
name: this.getName(m.sender),
age: -1,
regTime: -1,
afk: -1,
afkReason: '',
banned: false,
level: 0,
call: 0,
role: 'Bronze',
autolevelup: false,
pc: 0,
warning: 0,
}
let chat = global.db.data.chats[m.chat]
if (typeof chat !== 'object') global.db.data.chats[m.chat] = {}
if (chat) {
if (!('isBanned' in chat)) chat.isBanned = false
if (!('welcome' in chat)) chat.welcome = false
if (!('detect' in chat)) chat.detect = false
if (!('sWelcome' in chat)) chat.sWelcome = ''
if (!('sBye' in chat)) chat.sBye = ''
if (!('sPromote' in chat)) chat.sPromote = ''
if (!('sDemote' in chat)) chat.sDemote = ''
if (!('descUpdate' in chat)) chat.descUpdate = true
if (!('stiker' in chat)) chat.stiker = false
if (!('delete' in chat)) chat.delete = true
if (!('antiLink' in chat)) chat.antiLink = false
if (!isNumber(chat.expired)) chat.expired = 0
if (!('antiBadword' in chat)) chat.antiBadword = true
if (!('viewonce' in chat)) chat.viewonce = true
} else global.db.data.chats[m.chat] = {
isBanned: false,
welcome: false,
detect: false,
sWelcome: '',
sBye: '',
sPromote: '',
sDemote: '',
descUpdate: true,
stiker: false,
delete: true,
antiLink: false,
expired: 0,
antiBadword: true,
viewonce: true,
}
let settings = global.db.data.settings[this.user.jid]
if (typeof settings !== 'object') global.db.data.settings[this.user.jid] = {}
if (settings) {
if (!'anon' in settings) settings.anon = true
if (!'anticall' in settings) settings.anticall = true
if (!'antispam' in settings) settings.antispam = true
if (!'antitroli' in settings) settings.antitroli = true
if (!'backup' in settings) settings.backup = false
if (!isNumber(settings.backupDB)) settings.backupDB = 0
if (!'groupOnly' in settings) settings.groupOnly = false
if (!'jadibot' in settings) settings.groupOnly = false
if (!'nsfw' in settings) settings.nsfw = true
if (!isNumber(settings.status)) settings.status = 0
} else global.db.data.settings[this.user.jid] = {
anon: true,
anticall: true,
antispam: true,
antitroli: true,
backup: false,
backupDB: 0,
groupOnly: false,
jadibot: false,
nsfw: true,
status: 0,
}
} catch (e) {
console.error(e)
}
if (opts['nyimak']) return
if (!m.fromMe && opts['self']) return
if (typeof m.text !== 'string') m.text = ''
for (let name in global.plugins) {
let plugin = global.plugins[name]
if (!plugin) continue
if (plugin.disabled) continue
if (!plugin.all) continue
if (typeof plugin.all !== 'function') continue
try {
await plugin.all.call(this, m, chatUpdate)
} catch (e) {
if (typeof e === 'string') continue
console.error(e)
}
}
if (m.isBaileys) return
if (m.chat.endsWith('broadcast')) return // Supaya tidak merespon di status
let blockList = conn.blocklist.map(v => v.replace(/[^0-9]/g, '') + '@s.whatsapp.net').filter(v => v != conn.user.jid)
if (blockList.includes(m.sender)) return // Pengguna yang diblokir tidak bisa menggunakan bot
m.exp += Math.ceil(Math.random() * 10)
let usedPrefix
let _user = global.db.data && global.db.data.users && global.db.data.users[m.sender]
let isROwner = [global.conn.user.jid, ...global.owner].map(v => v.replace(/[^0-9]/g, '') + '@s.whatsapp.net').includes(m.sender)
let isOwner = isROwner || m.fromMe
let isMods = isOwner || global.mods.map(v => v.replace(/[^0-9]/g, '') + '@s.whatsapp.net').includes(m.sender)
let isPrems = isROwner || global.prems.map(v => v.replace(/[^0-9]/g, '') + '@s.whatsapp.net').includes(m.sender)
if (!isPrems && !m.isGroup && global.db.data.settings.groupOnly) return
let groupMetadata = m.isGroup ? this.chats.get(m.chat).metadata || await this.groupMetadata(m.chat) : {} || {}
let participants = m.isGroup ? groupMetadata.participants : [] || []
let user = m.isGroup ? participants.find(u => u.jid == m.sender) : {} // User Data
let bot = m.isGroup ? participants.find(u => u.jid == this.user.jid) : {} // Data Kamu (bot)
let isAdmin = user.isAdmin || user.isSuperAdmin || false // Apakah user admin?
let isBotAdmin = bot.isAdmin || bot.isSuperAdmin || false // Apakah kamu (bot) admin?
let isBlocked = this.blocklist.map(v => v.replace(/[^0-9]/g, '') + '@s.whatsapp.net').filter(v => v != this.user.jid).includes(m.sender) // Apakah user diblokir?
for (let name in global.plugins) {
let plugin = global.plugins[name]
if (!plugin) continue
if (plugin.disabled) continue
if (!opts['restrict']) if (plugin.tags && plugin.tags.includes('admin')) continue
const str2Regex = str => str.replace(/[|\\{}()[\]^$+*?.]/g, '\\$&')
let _prefix = plugin.customPrefix ? plugin.customPrefix : conn.prefix ? conn.prefix : global.prefix
let match = (_prefix instanceof RegExp ? // RegExp Mode?
[[_prefix.exec(m.text), _prefix]] :
Array.isArray(_prefix) ? // Array?
_prefix.map(p => {
let re = p instanceof RegExp ? // RegExp in Array?
p :
new RegExp(str2Regex(p))
return [re.exec(m.text), re]
}) :
typeof _prefix === 'string' ? // String?
[[new RegExp(str2Regex(_prefix)).exec(m.text), new RegExp(str2Regex(_prefix))]] :
[[[], new RegExp]]
).find(p => p[1])
if (typeof plugin.before === 'function') if (await plugin.before.call(this, m, {
match,
conn: this,
participants,
groupMetadata,
user,
bot,
isROwner,
isOwner,
isAdmin,
isBotAdmin,
isPrems,
chatUpdate,
isBlocked,
})) continue
if (typeof plugin !== 'function') continue
if ((usedPrefix = (match[0] || '')[0])) {
let noPrefix = m.text.replace(usedPrefix, '')
let [command, ...args] = noPrefix.trim().split` `.filter(v => v)
args = args || []
let _args = noPrefix.trim().split` `.slice(1)
let text = _args.join` `
command = (command || '').toLowerCase()
let fail = plugin.fail || global.dfail // Ketika gagal
let isAccept = plugin.command instanceof RegExp ? // RegExp Mode?
plugin.command.test(command) :
Array.isArray(plugin.command) ? // Array?
plugin.command.some(cmd => cmd instanceof RegExp ? // RegExp in Array?
cmd.test(command) :
cmd === command
) :
typeof plugin.command === 'string' ? // String?
plugin.command === command :
false
if (!isAccept) continue
m.plugin = name
if (m.chat in global.db.data.chats || m.sender in global.db.data.users) {
let chat = global.db.data.chats[m.chat]
let user = global.db.data.users[m.sender]
if (!['unbanchat.js', 'profile.js'].includes(name) && chat && chat.isBanned && !isPrems) return // Kecuali ini, bisa digunakan
if (!['unbanchat.js', 'profile.js'].includes(name) && user && user.banned) return
}
if (plugin.rowner && plugin.owner && !(isROwner || isOwner)) { // Keduanya Owner
fail('owner', m, this)
continue
}
if (plugin.rowner && !isROwner) { // Owner sebenarnya
fail('rowner', m, this)
continue
}
if (plugin.owner && !isOwner) { // Owner bot
fail('owner', m, this)
continue
}
if (plugin.mods && !isMods) { // Moderator
fail('mods', m, this)
continue
}
if (plugin.premium && !isPrems) { // Premium
fail('premium', m, this)
continue
}
if (plugin.group && !m.isGroup) { // Hanya grup
fail('group', m, this)
continue
} else if (plugin.botAdmin && !isBotAdmin) { // Kamu Admin
fail('botAdmin', m, this)
continue
} else if (plugin.admin && !isAdmin) { // User Admin
fail('admin', m, this)
continue
}
if (plugin.private && m.isGroup) { // Hanya Private Chat
fail('private', m, this)
continue
}
if (plugin.register == true && _user.registered == false) { // Butuh daftar?
fail('unreg', m, this)
continue
}
if (plugin.nsfw && !global.db.data.settings.nsfw) { // Nsfw
fail('nsfw', m, this)
continue
}
m.isCommand = true
let xp = 'exp' in plugin ? parseInt(plugin.exp) : 17 // Pendapatkan XP per Command
if (xp > 200) m.reply('Ngecit -_-') // Hehehe
else m.exp += xp
if (!isPrems && plugin.limit && global.db.data.users[m.sender].limit < plugin.limit * 1) {
this.reply(m.chat, `Limit kamu habis, silahkan beli melalui *${usedPrefix}buy*`, m)
continue // Limit habis
}
if (plugin.level > _user.level) {
this.reply(m.chat, `diperlukan level ${plugin.level} untuk menggunakan perintah ini. Level kamu ${_user.level}`, m)
continue // Jika levelnya belum tercapai
}
let extra = {
match,
usedPrefix,
noPrefix,
_args,
args,
command,
text,
conn: this,
participants,
groupMetadata,
user,
bot,
isROwner,
isOwner,
isAdmin,
isBotAdmin,
isPrems,
chatUpdate,
isBlocked,
}
try {
await plugin.call(this, m, extra)
if (!isPrems) m.limit = m.limit || plugin.limit || false
} catch (e) {
// Terjadi kesalahan
m.error = e
console.error(e)
if (e) {
let text = util.format(e.message ? e.message : e)
for (let key of Object.values(global.APIKeys))
text = text.replace(new RegExp(key, 'g'), 'apikey')
m.reply(text)
}
} finally {
// m.reply(util.format(_user))
if (typeof plugin.after === 'function') {
try {
await plugin.after.call(this, m, extra)
} catch (e) {
console.error(e)
}
}
// if (m.limit) m.reply(+ m.limit + ' Limit terpakai') // Jadikan sebagai komentar jika kamu risih dengan pesan ini
}
break
}
}
} finally {
//console.log(global.db.data.users[m.sender])
let user, stats = global.db.data.stats
if (m) {
if (m.sender && (user = global.db.data.users[m.sender])) {
user.exp += m.exp
user.limit -= m.limit * 1
}
let stat
if (m.plugin) {
let now = + new Date
if (m.plugin in stats) {
stat = stats[m.plugin]
if (!isNumber(stat.total)) stat.total = 1
if (!isNumber(stat.success)) stat.success = m.error != null ? 0 : 1
if (!isNumber(stat.last)) stat.last = now
if (!isNumber(stat.lastSuccess)) stat.lastSuccess = m.error != null ? 0 : now
} else stat = stats[m.plugin] = {
total: 1,
success: m.error != null ? 0 : 1,
last: now,
lastSuccess: m.error != null ? 0 : now
}
stat.total += 1
stat.last = now
if (m.error == null) {
stat.success += 1
stat.lastSuccess = now
}
}
}
try {
require('./lib/print')(m, this)
} catch (e) {
console.log(m, m.quoted, e)
}
if (opts['autoread']) await this.chatRead(m.chat).catch(() => { })
}
},
async participantsUpdate({ jid, participants, action }) {
let chat = global.db.data.chats[jid] || {}
let text = ''
switch (action) {
case 'add':
case 'remove':
if (chat.welcome) {
let groupMetadata = await this.groupMetadata(jid)
for (let user of participants) {
// let pp = './src/avatar_contact.png'
let pp = 'https://i.ibb.co/jr9Nh6Q/Thumb.jpg'
let ppgc = 'https://i.ibb.co/jr9Nh6Q/Thumb.jpg'
try {
pp = await uploadImage(await (await fetch(await this.getProfilePicture(user))).buffer())
ppgc = await uploadImage(await (await fetch(await this.getProfilePicture(jid))).buffer())
} catch (e) {
} finally {
text = (action === 'add' ? (chat.sWelcome || this.welcome || conn.welcome || 'Selamat datang, @user!').replace('@subject', this.getName(jid)).replace('@desc', groupMetadata.desc ? String.fromCharCode(8206).repeat(4001) + groupMetadata.desc : '') :
(chat.sBye || this.bye || conn.bye || 'Sampai jumpa, @user!')).replace(/@user/g, '@' + user.split`@`[0])
let wel = await new knights.Welcome()
.setUsername(this.getName(user))
.setGuildName(this.getName(jid))
.setGuildIcon(ppgc)
.setMemberCount(groupMetadata.participants.length)
.setAvatar(pp)
.setBackground("https://i.ibb.co/KhtRxwZ/dark.png")
.toAttachment()
let lea = await new knights.Goodbye()
.setUsername(this.getName(user))
.setGuildName(this.getName(jid))
.setGuildIcon(ppgc)
.setMemberCount(groupMetadata.participants.length)
.setAvatar(pp)
.setBackground("https://i.ibb.co/KhtRxwZ/dark.png")
.toAttachment()
this.sendFile(jid, action === 'add' ? wel.toBuffer() : lea.toBuffer(), 'pp.jpg', text, null, false, {
contextInfo: {
mentionedJid: [user]
}
})
}
}
}
break
case 'promote':
text = (chat.sPromote || this.spromote || conn.spromote || '@user sekarang Admin')
case 'demote':
if (!text) text = (chat.sDemote || this.sdemote || conn.sdemote || '@user sekarang bukan Admin')
text = text.replace('@user', '@' + participants[0].split`@`[0])
if (chat.detect) this.sendMessage(jid, text, MessageType.extendedText, {
contextInfo: {
mentionedJid: this.parseMention(text)
}
})
break
}
},
async delete(m) {
let chat = global.db.data.chats[m.key.remoteJid]
if (chat.delete) return
await this.sendButton(m.key.remoteJid, `
Terdeteksi @${m.participant.split`@`[0]} telah menghapus pesan
ketik *.on delete* untuk mematikan pesan ini
`.trim(), '', 'Matikan Antidelete', ',on delete', m.message, {
contextInfo: {
mentionedJid: [m.participant]
}
})
this.copyNForward(m.key.remoteJid, m.message).catch(e => console.log(e, m))
},
async onCall(json) {
let { from } = json[2][0][1]
let users = global.db.data.users
let user = users[from] || {}
if (user.whitelist) return
if (!db.data.settings.anticall) return
switch (this.callWhitelistMode) {
case 'mycontact':
if (from in this.contacts && 'short' in this.contacts[from])
return
break
}
user.call += 1
await this.reply(from, `Jika kamu menelepon lebih dari 5, kamu akan diblokir.\n\n${user.call} / 5`, null)
if (user.call == 5) {
await this.blockUser(from, 'add')
user.call = 0
}
},
async GroupUpdate({ jid, desc, descId, descTime, descOwner, announce }) {
if (!db.data.chats[jid].descUpdate) return
if (!desc) return
let caption = `
@${descOwner.split`@`[0]} telah mengubah deskripsi grup.
${desc}
ketik *.off desc* untuk mematikan pesan ini
`.trim()
this.sendButton(jid, caption, '', 'Matikan Deskripsi', ',off desc', { contextInfo: { mentionedJid: this.parseMention(caption) } })
}
}
global.dfail = (type, m, conn) => {
let msg = {
rowner: 'Perintah ini hanya dapat digunakan oleh _*Pemilik Bot*_',
owner: 'Perintah ini hanya dapat digunakan oleh _*Pemilik Bot*_',
mods: 'Perintah ini hanya dapat digunakan oleh _*Moderator*_',
premium: 'Perintah ini hanya untuk pengguna _*Premium*_',
group: 'Perintah ini hanya dapat digunakan di grup',
private: 'Perintah ini hanya dapat digunakan di Chat Pribadi',
admin: 'Perintah ini hanya untuk *Admin* grup',
botAdmin: 'Jadikan bot sebagai *Admin* untuk menggunakan perintah ini',
unreg: 'Silahkan daftar untuk menggunakan fitur ini dengan cara mengetik:\n\n*#daftar nama.umur*\n\nContoh: *#daftar Arif.19*',
nsfw: 'NSFW tidak aktif'
}[type]
if (msg) return m.reply(msg)
}
let fs = require('fs')
let chalk = require('chalk')
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright("Update 'handler.js'"))
delete require.cache[file]
if (global.reloadHandler) console.log(global.reloadHandler())
})