-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathmain.js
More file actions
832 lines (774 loc) · 25.6 KB
/
main.js
File metadata and controls
832 lines (774 loc) · 25.6 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
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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
process.env['NODE_TLS_REJECT_UNAUTHORIZED'] = '1'
import './config.js'
import './plugins/_content.js'
import { createRequire } from 'module'
import path, {join} from 'path'
import { fileURLToPath, pathToFileURL } from 'url'
import { platform } from 'process'
import * as ws from 'ws'
import fs, {
watchFile,
unwatchFile,
writeFileSync,
readdirSync,
statSync,
unlinkSync,
existsSync,
readFileSync,
copyFileSync,
watch,
rmSync,
mkdirSync,
rename
} from 'fs'
import * as fsPromises from 'fs/promises'
import { readdir, stat, unlink } from 'fs/promises'
import yargs from 'yargs'
import { spawn } from 'child_process'
import lodash from 'lodash'
import chalk from 'chalk'
import syntaxerror from 'syntax-error'
import { format } from 'util'
import pino from 'pino'
import Pino from 'pino'
import { Boom } from '@hapi/boom'
import os from 'os'
import { makeWASocket, protoType, serialize } from './lib/simple.js'
import { JSONFile, Low } from 'lowdb'
import PQueue from 'p-queue'
import Datastore from '@seald-io/nedb'
import store from './lib/store.js'
import readline from 'readline'
import NodeCache from 'node-cache'
import { gataJadiBot } from './plugins/jadibot-serbot.js'
import pkg from 'google-libphonenumber'
const {PhoneNumberUtil} = pkg
const phoneUtil = PhoneNumberUtil.getInstance()
const {
makeInMemoryStore,
DisconnectReason,
useMultiFileAuthState,
MessageRetryMap,
fetchLatestBaileysVersion,
makeCacheableSignalKeyStore,
jidNormalizedUser
} = await import('@whiskeysockets/baileys')
const {CONNECTING} = ws
const {chain} = lodash
const PORT = process.env.PORT || process.env.SERVER_PORT || 3000
async function flushLogs() {
await Promise.resolve()
await new Promise((r) => setTimeout(r, 0))
}
async function logCritical(msg) {
process.stdout.write(String(msg) + '\n')
await flushLogs()
}
async function logInfo(msg) {
console.log(msg)
await flushLogs()
}
async function logWarn(msg) {
console.warn(msg)
await flushLogs()
}
async function logError(msg) {
console.error(msg)
await flushLogs()
}
if (typeof global.atob !== 'function') {
global.atob = (b64) => Buffer.from(b64, 'base64').toString('binary')
}
protoType()
serialize()
global.__filename = function filename(pathURL = import.meta.url, rmPrefix = platform !== 'win32') {
return rmPrefix ? (/file:\/\/\//.test(pathURL) ? fileURLToPath(pathURL) : pathURL) : pathToFileURL(pathURL).toString()
}
global.__dirname = function dirname(pathURL) {
return path.dirname(global.__filename(pathURL, true))
}
global.__require = function require(dir = import.meta.url) {
return createRequire(dir)
}
global.timestamp = {start: new Date()}
const __dirname = global.__dirname(import.meta.url)
global.opts = new Object(yargs(process.argv.slice(2)).exitProcess(false).parse())
const dbPath = path.join(__dirname, 'database')
if (!fs.existsSync(dbPath)) fs.mkdirSync(dbPath)
const collections = {
users: new Datastore({
filename: path.join(dbPath, 'users.db'),
autoload: true
}),
chats: new Datastore({
filename: path.join(dbPath, 'chats.db'),
autoload: true
}),
settings: new Datastore({
filename: path.join(dbPath, 'settings.db'),
autoload: true
}),
msgs: new Datastore({
filename: path.join(dbPath, 'msgs.db'),
autoload: true
}),
sticker: new Datastore({
filename: path.join(dbPath, 'sticker.db'),
autoload: true
}),
stats: new Datastore({
filename: path.join(dbPath, 'stats.db'),
autoload: true
})
}
Object.values(collections).forEach((db) => {
db.setAutocompactionInterval(300000)
})
global.db = {
data: {
users: {},
chats: {},
settings: {},
msgs: {},
sticker: {},
stats: {}
}
}
function sanitizeId(id) {
return id.replace(/\./g, '_')
}
function unsanitizeId(id) {
return id.replace(/_/g, '.')
}
function sanitizeObject(obj) {
const sanitized = {}
for (const [key, value] of Object.entries(obj)) {
const sanitizedKey = key.replace(/\./g, '_')
sanitized[sanitizedKey] = typeof value === 'object' && value !== null ? sanitizeObject(value) : value
}
return sanitized
}
function unsanitizeObject(obj) {
const unsanitized = {}
for (const [key, value] of Object.entries(obj)) {
const unsanitizedKey = key.replace(/_/g, '.')
unsanitized[unsanitizedKey] = typeof value === 'object' && value !== null ? unsanitizeObject(value) : value
}
return unsanitized
}
global.db.readData = async function (category, id) {
const memKey = id
const diskKey = sanitizeId(id)
if (!global.db.data[category][memKey]) {
const data = await new Promise((resolve, reject) => {
collections[category].findOne({ _id: diskKey }, (err, doc) => {
if (err) return reject(err)
resolve(doc ? unsanitizeObject(doc.data) : {})
})
})
global.db.data[category][memKey] = data
}
return global.db.data[category][memKey]
}
global.db.writeData = async function (category, id, data) {
const memKey = id
const diskKey = sanitizeId(id)
global.db.data[category][memKey] = {
...global.db.data[category][memKey],
...data // en memoria sin sanitizar
}
await new Promise((resolve, reject) => {
collections[category].update(
{ _id: diskKey },
{ $set: { data: sanitizeObject(global.db.data[category][memKey]) } },
{ upsert: true },
(err) => (err ? reject(err) : resolve())
)
})
}
global.db.loadDatabase = async function () {
const loadPromises = Object.keys(collections).map(async (category) => {
const docs = await new Promise((resolve, reject) => {
collections[category].find({}, (err, docs) => {
if (err) return reject(err)
resolve(docs)
})
})
const seenIds = new Set()
for (const doc of docs) {
const originalId = unsanitizeId(doc._id)
if (seenIds.has(originalId)) {
await new Promise((resolve, reject) => {
collections[category].remove({_id: doc._id}, {}, (err) => {
if (err) return reject(err)
resolve()
})
})
} else {
seenIds.add(originalId)
if (category === 'users' && (originalId.includes('@newsletter') || originalId.includes('lid'))) continue
if (category === 'chats' && originalId.includes('@newsletter')) continue
global.db.data[category][originalId] = unsanitizeObject(doc.data)
}
}
})
await Promise.all(loadPromises)
}
global.db.save = async function () {
const savePromises = []
for (const category of Object.keys(global.db.data)) {
for (const [id, data] of Object.entries(global.db.data[category])) {
if (Object.keys(data).length > 0) {
if (category === 'users' && (id.includes('@newsletter') || id.includes('lid'))) continue
if (category === 'chats' && id.includes('@newsletter')) continue
savePromises.push(
new Promise((resolve, reject) => {
collections[category].update({_id: sanitizeId(id)}, {$set: {data: sanitizeObject(data)}}, {upsert: true}, (err) => {
if (err) return reject(err)
resolve()
})
})
)
}
}
}
await Promise.all(savePromises)
}
global.db
.loadDatabase()
.then(() => {
console.log('Base de datos lista')
})
.catch((err) => {
console.error('Error cargando base de datos:', err)
})
async function gracefulShutdown() {
await global.db.save()
console.log('Guardando base de datos antes de cerrar...')
process.exit(0)
}
process.on('SIGINT', gracefulShutdown)
process.on('SIGTERM', gracefulShutdown)
global.creds = 'creds.json'
global.authFile = 'GataBotSession'
global.authFileJB = 'GataJadiBot'
global.rutaBot = join(__dirname, global.authFile)
global.rutaJadiBot = join(__dirname, global.authFileJB)
const respaldoDir = join(__dirname, 'BackupSession')
const credsFile = join(global.rutaBot, global.creds)
const backupFile = join(respaldoDir, global.creds)
if (!fs.existsSync(global.rutaJadiBot)) fs.mkdirSync(global.rutaJadiBot)
if (!fs.existsSync(respaldoDir)) fs.mkdirSync(respaldoDir)
const {state, saveState, saveCreds} = await useMultiFileAuthState(global.authFile)
const msgRetryCounterMap = new Map()
const msgRetryCounterCache = new NodeCache({stdTTL: 0, checkperiod: 0})
const userDevicesCache = new NodeCache({stdTTL: 0, checkperiod: 0})
const {version} = await fetchLatestBaileysVersion()
let phoneNumber = global.botNumberCode
const methodCodeQR = process.argv.includes('qr')
const methodCode = !!phoneNumber || process.argv.includes('code')
const MethodMobile = process.argv.includes('mobile')
let rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
terminal: true
})
const question = (texto) => {
rl.clearLine(rl.input, 0)
return new Promise((resolver) => {
rl.question(texto, (respuesta) => {
rl.clearLine(rl.input, 0)
resolver(respuesta.trim())
})
})
}
let opcion
if (methodCodeQR) opcion = '1'
if (!methodCodeQR && !methodCode && !fs.existsSync(`./${global.authFile}/creds.json`)) {
do {
let lineM = '⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ ⋯ 》'
opcion = await question(
`╭${lineM} \n┊ ${chalk.blueBright('╭┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅')}\n┊ ${chalk.blueBright('┊')} ${chalk.blue.bgBlue.bold.cyan(mid.methodCode1)}\n┊ ${chalk.blueBright('╰┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅')} \n┊ ${chalk.blueBright('╭┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅')} \n┊ ${chalk.blueBright('┊')} ${chalk.green.bgMagenta.bold.yellow(mid.methodCode2)}\n┊ ${chalk.blueBright('┊')} ${chalk.bold.redBright(`⇢ ${mid.methodCode3} 1:`)} ${chalk.greenBright(mid.methodCode4)}\n┊ ${chalk.blueBright('┊')} ${chalk.bold.redBright(`⇢ ${mid.methodCode3} 2:`)} ${chalk.greenBright(mid.methodCode5)}\n┊ ${chalk.blueBright('╰┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅')}\n┊ ${chalk.blueBright('╭┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅')} \n┊ ${chalk.blueBright('┊')} ${chalk.italic.magenta(mid.methodCode6)}\n┊ ${chalk.blueBright('┊')} ${chalk.italic.magenta(mid.methodCode7)}\n┊ ${chalk.blueBright('╰┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅')} \n┊ ${chalk.blueBright('╭┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅')} \n┊ ${chalk.blueBright('┊')} ${chalk.red.bgRed.bold.green(mid.methodCode8)}\n┊ ${chalk.blueBright('┊')} ${chalk.italic.cyan(mid.methodCode9)}\n┊ ${chalk.blueBright('┊')} ${chalk.italic.cyan(mid.methodCode10)}\n┊ ${chalk.blueBright('┊')} ${chalk.bold.yellow(`npm run qr ${chalk.italic.magenta(`(${mid.methodCode12})`)}`)}\n┊ ${chalk.blueBright('┊')} ${chalk.bold.yellow(`npm run code ${chalk.italic.magenta(`(${mid.methodCode13})`)}`)}\n┊ ${chalk.blueBright('┊')} ${chalk.bold.yellow(`npm start ${chalk.italic.magenta(`(${mid.methodCode14})`)}`)}\n┊ ${chalk.blueBright('╰┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅')} \n╰${lineM}\n${chalk.bold.magentaBright('---> ')}`
)
if (!/^[1-2]$/.test(opcion)) console.log(chalk.bold.redBright(mid.methodCode11(chalk)))
} while ((opcion !== '1' && opcion !== '2') || fs.existsSync(`./${global.authFile}/creds.json`))
}
const filterStrings = [
'Q2xvc2luZyBzdGFsZSBvcGVu', // "Closing stable open"
'Q2xvc2luZyBvcGVuIHNlc3Npb24=', // "Closing open session"
'RmFpbGVkIHRvIGRlY3J5cHQ=', // "Failed to decrypt"
'U2Vzc2lvbiBlcnJvcg==', // "Session error"
'RXJyb3I6IEJhZCBNQUM=', // "Error: Bad MAC"
'RGVjcnlwdGVkIG1lc3NhZ2U=' // "Decrypted message"
]
function redefineConsoleMethod(methodName, filterStrings) {
const originalConsoleMethod = console[methodName]
console[methodName] = function () {
const message = arguments[0]
if (typeof message === 'string' && filterStrings.some((filterString) => message.includes(atob(filterString)))) {
return
}
return originalConsoleMethod.apply(console, arguments)
}
}
;['log', 'warn', 'error'].forEach((methodName) => redefineConsoleMethod(methodName, filterStrings))
const connectionOptions = {
logger: pino({level: 'silent'}),
printQRInTerminal: opcion == '1' ? true : methodCodeQR ? true : false,
mobile: MethodMobile,
browser: opcion == '1' ? ['GataBot-MD', 'Edge', '20.0.04'] : methodCodeQR ? ['GataBot-MD', 'Edge', '20.0.04'] : ['Ubuntu', 'Chrome', '20.0.04'],
auth: {
creds: state.creds,
keys: makeCacheableSignalKeyStore(state.keys, Pino({level: 'fatal'}).child({level: 'fatal'}))
},
markOnlineOnConnect: false,
generateHighQualityLinkPreview: true,
syncFullHistory: false,
getMessage: async (key) => {
try {
let jid = jidNormalizedUser(key.remoteJid)
let msg = await store.loadMessage(jid, key.id)
return msg?.message || ''
} catch (error) {
return ''
}
},
msgRetryCounterCache: msgRetryCounterCache || new Map(),
userDevicesCache: userDevicesCache || new Map(),
defaultQueryTimeoutMs: undefined,
cachedGroupMetadata: (jid) => global.conn?.chats?.[jid] ?? {},
version: [2, 3000, 1033959288],
keepAliveIntervalMs: 55000,
maxIdleTimeMs: 60000
}
global.conn = makeWASocket(connectionOptions)
if (!fs.existsSync(`./${global.authFile}/creds.json`)) {
if (opcion === '2' || methodCode) {
opcion = '2'
if (!conn.authState.creds.registered) {
let addNumber
if (!!phoneNumber) {
addNumber = phoneNumber.replace(/[^0-9]/g, '')
} else {
do {
phoneNumber = await question(chalk.bgBlack(chalk.bold.greenBright(mid.phNumber2(chalk))))
phoneNumber = phoneNumber.replace(/\D/g, '')
if (!phoneNumber.startsWith('+')) phoneNumber = `+${phoneNumber}`
} while (!(await isValidPhoneNumber(phoneNumber)))
rl.close()
addNumber = phoneNumber.replace(/\D/g, '')
setTimeout(async () => {
let codeBot = await conn.requestPairingCode(addNumber)
codeBot = codeBot?.match(/.{1,4}/g)?.join('-') || codeBot
console.log(chalk.bold.white(chalk.bgMagenta(mid.pairingCode)), chalk.bold.white(chalk.white(codeBot)))
}, 2000)
}
}
}
}
conn.isInit = false
conn.well = false
if (!opts['test']) {
if (global.db)
setInterval(async () => {
if (global.db.data) await global.db.save()
if (opts['autocleartmp'] && (global.support || {}).find) {
}
}, 30 * 1000)
}
if (opts['server']) (await import('./server.js')).default(global.conn, PORT)
const backupCreds = async () => {
if (!fs.existsSync(credsFile)) {
console.log(await tr('[⚠] No se encontró el archivo creds.json para respaldar.'))
return
}
const timestamp = new Date().toISOString().replace(/[:.]/g, '-')
const newBackup = join(respaldoDir, `creds-${timestamp}.json`)
fs.copyFileSync(credsFile, newBackup)
console.log(`[✅] Respaldo creado: ${newBackup}`)
const backups = fs
.readdirSync(respaldoDir)
.filter((file) => file.startsWith('creds-') && file.endsWith('.json'))
.sort((a, b) => fs.statSync(join(respaldoDir, a)).mtimeMs - fs.statSync(join(respaldoDir, b)).mtimeMs)
while (backups.length > 3) {
const oldest = backups.shift()
fs.unlinkSync(join(respaldoDir, oldest))
console.log(`[🗑️] Respaldo antiguo eliminado: ${oldest}`)
}
}
const restoreCreds = async () => {
const backups = fs
.readdirSync(respaldoDir)
.filter((file) => file.startsWith('creds-') && file.endsWith('.json'))
.sort((a, b) => fs.statSync(join(respaldoDir, b)).mtimeMs - fs.statSync(join(respaldoDir, a)).mtimeMs)
if (backups.length === 0) {
console.log('[⚠] No hay respaldos disponibles para restaurar.')
return
}
const latestBackup = join(respaldoDir, backups[0])
fs.copyFileSync(latestBackup, credsFile)
console.log(`[✅] Restaurado desde respaldo: ${backups[0]}`)
}
setInterval(
async () => {
await backupCreds()
console.log('[♻️] Respaldo periódico realizado.')
},
5 * 60 * 1000
)
let printingNoConn = false
async function connectionUpdate(update) {
const {connection, lastDisconnect, isNewLogin, qr} = update
global.stopped = connection
if (isNewLogin) conn.isInit = true
if (connection === 'close' && !existsSync(`./${global.authFile}/creds.json`)) {
if (!printingNoConn) {
printingNoConn = true
await logCritical(chalk.bold.redBright('⚠️ SIN CONEXIÓN, BORRE LA CARPETA GataBotSession Y ESCANEA EL CÓDIGO QR ⚠️'))
setTimeout(() => {
printingNoConn = false
}, 1500)
}
}
const code = lastDisconnect?.error?.output?.statusCode || lastDisconnect?.error?.output?.payload?.statusCode
if (code && code !== DisconnectReason.loggedOut && conn?.ws.socket == null) {
await global.reloadHandler(true).catch(console.error)
global.timestamp.connect = new Date()
}
if (global.db.data == null) loadDatabase()
if ((qr != 0 && qr != undefined) || methodCodeQR) {
if (opcion == '1' || methodCodeQR) console.log(chalk.bold.yellow(mid.mCodigoQR))
}
if (connection == 'open') {
console.log(chalk.bold.greenBright(mid.mConexion))
await joinChannels(conn)
}
let reason = new Boom(lastDisconnect?.error)?.output?.statusCode
if (connection === 'close') {
if (reason === DisconnectReason.badSession) {
console.log(chalk.bold.cyanBright(lenguajeGB['smsConexionOFF']()))
} else if (reason === DisconnectReason.connectionClosed) {
console.log(chalk.bold.magentaBright(lenguajeGB['smsConexioncerrar']()))
await restoreCreds()
await global.reloadHandler(true).catch(console.error)
} else if (reason === DisconnectReason.connectionLost) {
console.log(chalk.bold.blueBright(lenguajeGB['smsConexionperdida']()))
await restoreCreds()
await global.reloadHandler(true).catch(console.error)
} else if (reason === DisconnectReason.connectionReplaced) {
console.log(chalk.bold.yellowBright(lenguajeGB['smsConexionreem']()))
} else if (reason === DisconnectReason.loggedOut) {
console.log(chalk.bold.redBright(lenguajeGB['smsConexionOFF']()))
await global.reloadHandler(true).catch(console.error)
} else if (reason === DisconnectReason.restartRequired) {
console.log(chalk.bold.cyanBright(lenguajeGB['smsConexionreinicio']()))
await global.reloadHandler(true).catch(console.error)
} else if (reason === DisconnectReason.timedOut) {
console.log(chalk.bold.yellowBright(lenguajeGB['smsConexiontiem']()))
await global.reloadHandler(true).catch(console.error)
} else {
console.log(chalk.bold.redBright(lenguajeGB['smsConexiondescon'](reason, connection)))
}
}
}
process.on('uncaughtException', console.error)
let isInit = true
let handler = await import('./handler.js')
const safeOff = (ev, fn) => {
if (fn && typeof fn === 'function') conn.ev.off(ev, fn)
}
const safeOn = (ev, fn) => {
if (fn && typeof fn === 'function') conn.ev.on(ev, fn)
}
global.reloadHandler = async function (restatConn) {
try {
const Handler = await import(`./handler.js?update=${Date.now()}`).catch(console.error)
if (Handler && Object.keys(Handler).length) handler = Handler
} catch (e) {
console.error(e)
}
if (restatConn) {
const oldChats = global.conn.chats
try {
global.conn.ws.close()
} catch {}
conn.ev.removeAllListeners?.()
global.conn = makeWASocket(connectionOptions, {chats: oldChats})
isInit = true
}
if (!isInit) {
safeOff('messages.upsert', conn.handler)
safeOff('group-participants.update', conn.participantsUpdate)
safeOff('groups.update', conn.groupsUpdate)
safeOff('message.delete', conn.onDelete)
safeOff('call', conn.onCall)
safeOff('connection.update', conn.connectionUpdate)
safeOff('creds.update', conn.credsUpdate)
}
conn.welcome = lenguajeGB['smsWelcome']()
conn.bye = lenguajeGB['smsBye']()
conn.spromote = lenguajeGB['smsSpromote']()
conn.sdemote = lenguajeGB['smsSdemote']()
conn.sDesc = lenguajeGB['smsSdesc']()
conn.sSubject = lenguajeGB['smsSsubject']()
conn.sIcon = lenguajeGB['smsSicon']()
conn.sRevoke = lenguajeGB['smsSrevoke']()
conn.handler = handler.handler.bind(global.conn)
conn.participantsUpdate = handler.participantsUpdate.bind(global.conn)
conn.groupsUpdate = handler.groupsUpdate.bind(global.conn)
conn.onDelete = handler.deleteUpdate.bind(global.conn)
conn.onCall = handler.callUpdate.bind(global.conn)
conn.connectionUpdate = connectionUpdate.bind(global.conn)
conn.credsUpdate = saveCreds.bind(global.conn, true)
safeOn('messages.upsert', conn.handler)
safeOn('group-participants.update', conn.participantsUpdate)
safeOn('groups.update', conn.groupsUpdate)
safeOn('message.delete', conn.onDelete)
safeOn('call', conn.onCall)
safeOn('connection.update', conn.connectionUpdate)
safeOn('creds.update', conn.credsUpdate)
isInit = false
return true
}
if (global.gataJadibts) {
const readRutaJadiBot = fs.readdirSync(global.rutaJadiBot)
if (readRutaJadiBot.length > 0) {
const creds = 'creds.json'
for (const gjbts of readRutaJadiBot) {
const botPath = path.join(global.rutaJadiBot, gjbts)
if (fs.lstatSync(botPath).isDirectory()) {
const readBotPath = fs.readdirSync(botPath)
if (readBotPath.includes(creds)) {
gataJadiBot({
pathGataJadiBot: botPath,
m: null,
conn,
args: '',
usedPrefix: '/',
command: 'serbot'
})
}
}
}
}
}
const pluginFolder = global.__dirname(join(__dirname, './plugins/index'))
const pluginFilter = (filename) => /\.js$/.test(filename)
global.plugins = {}
async function filesInit() {
for (const filename of readdirSync(pluginFolder).filter(pluginFilter)) {
try {
const file = global.__filename(join(pluginFolder, filename))
const module = await import(file)
global.plugins[filename] = module.default || module
} catch (e) {
conn.logger.error(e)
delete global.plugins[filename]
}
}
}
filesInit()
.then((_) => Object.keys(global.plugins))
.catch(console.error)
global.reload = async (_ev, filename) => {
if (pluginFilter(filename)) {
const dir = global.__filename(join(pluginFolder, filename), true)
if (filename in global.plugins) {
if (existsSync(dir)) conn.logger.info(` SE ACTULIZADO - '${filename}' CON ÉXITO`)
else {
conn.logger.warn(`SE ELIMINO UN ARCHIVO : '${filename}'`)
return delete global.plugins[filename]
}
} else conn.logger.info(`SE DETECTO UN NUEVO PLUGINS : '${filename}'`)
const err = syntaxerror(readFileSync(dir), filename, {
sourceType: 'module',
allowAwaitOutsideFunction: true
})
if (err) conn.logger.error(`SE DETECTO UN ERROR DE SINTAXIS | SYNTAX ERROR WHILE LOADING '${filename}'\n${format(err)}`)
else {
try {
const module = await import(`${global.__filename(dir)}?update=${Date.now()}`)
global.plugins[filename] = module.default || module
} catch (e) {
conn.logger.error(`HAY UN ERROR REQUIERE EL PLUGINS '${filename}\n${format(e)}'`)
} finally {
global.plugins = Object.fromEntries(Object.entries(global.plugins).sort(([a], [b]) => a.localeCompare(b)))
}
}
}
}
Object.freeze(global.reload)
watch(pluginFolder, global.reload)
await global.reloadHandler()
async function _quickTest() {
const procs = [
spawn('ffmpeg'),
spawn('ffprobe'),
spawn('ffmpeg', ['-hide_banner', '-loglevel', 'error', '-filter_complex', 'color', '-frames:v', '1', '-f', 'webp', '-']),
spawn('convert'),
spawn('magick'),
spawn('gm'),
spawn('find', ['--version'])
]
const test = await Promise.all(
procs.map((p) =>
Promise.race([
new Promise((resolve) => {
p.on('close', (code) => {
resolve(code !== 127)
})
}),
new Promise((resolve) => {
p.on('error', () => {
resolve(false)
})
})
])
)
)
const [ffmpeg, ffprobe, ffmpegWebp, convert, magick, gm, find] = test
const s = (global.support = {
ffmpeg,
ffprobe,
ffmpegWebp,
convert,
magick,
gm,
find
})
Object.freeze(global.support)
}
function clearTmp() {
const tmpDir = join(__dirname, 'tmp')
if (!existsSync(tmpDir)) return
const filenames = readdirSync(tmpDir)
filenames.forEach((file) => {
const filePath = join(tmpDir, file)
try {
unlinkSync(filePath)
} catch {}
})
}
async function purgeSession() {
const sessionDir = './GataBotSession'
try {
if (!existsSync(sessionDir)) return
const files = await readdir(sessionDir)
const preKeys = files.filter((file) => file.startsWith('pre-key-'))
const now = Date.now()
const oneHourAgo = now - 24 * 60 * 60 * 1000
for (const file of preKeys) {
const filePath = join(sessionDir, file)
const fileStats = await stat(filePath)
if (fileStats.mtimeMs < oneHourAgo) {
try {
await unlink(filePath)
console.log(chalk.green(`[🗑️] Pre-key antigua eliminada: ${file}`))
} catch {}
} else {
console.log(chalk.yellow(`[ℹ️] Manteniendo pre-key activa: ${file}`))
}
}
console.log(chalk.cyanBright(`[🔵] Sesiones no esenciales eliminadas de ${global.authFile}`))
} catch {}
}
async function purgeSessionSB() {
const jadibtsDir = './GataJadiBot/'
try {
if (!existsSync(jadibtsDir)) return
const directories = await readdir(jadibtsDir)
let SBprekey = []
const now = Date.now()
const oneDayAgo = now - 24 * 60 * 60 * 1000
for (const dir of directories) {
const dirPath = join(jadibtsDir, dir)
const statsDir = await stat(dirPath)
if (statsDir.isDirectory()) {
const files = await readdir(dirPath)
const preKeys = files.filter((file) => file.startsWith('pre-key-') && file !== 'creds.json')
SBprekey = [...SBprekey, ...preKeys]
for (const file of preKeys) {
const filePath = join(dirPath, file)
const fileStats = await stat(filePath)
if (fileStats.mtimeMs < oneDayAgo) {
try {
await unlink(filePath)
console.log(chalk.bold.green(`${lenguajeGB.smspurgeOldFiles1()} ${file} ${lenguajeGB.smspurgeOldFiles2()}`))
} catch {}
}
}
}
}
if (SBprekey.length === 0) console.log(chalk.bold.green(lenguajeGB.smspurgeSessionSB1()))
else console.log(chalk.cyanBright(`[🔵] Pre-keys antiguas eliminadas de sub-bots: ${SBprekey.length}`))
} catch (err) {
console.log(chalk.bold.red(lenguajeGB.smspurgeSessionSB3() + err))
}
}
async function purgeOldFiles() {
const directories = ['./GataBotSession/', './GataJadiBot/']
for (const dir of directories) {
try {
if (!fs.existsSync(dir)) {
console.log(chalk.yellow(`[⚠] Carpeta no existe: ${dir}`))
continue
}
const files = await fsPromises.readdir(dir)
for (const file of files) {
if (file !== 'creds.json') {
const filePath = join(dir, file)
try {
await fsPromises.unlink(filePath)
} catch {}
}
}
} catch {}
}
}
setInterval(
async () => {
if (global.stopped === 'close' || !conn || !conn.user) return
await clearTmp()
console.log(chalk.bold.cyanBright(lenguajeGB.smsClearTmp()))
},
1000 * 60 * 3
)
setInterval(
async () => {
if (global.stopped === 'close' || !conn || !conn.user) return
await purgeSessionSB()
await purgeSession()
console.log(chalk.bold.cyanBright(lenguajeGB.smspurgeSession()))
//await purgeOldFiles()
//console.log(chalk.bold.cyanBright(lenguajeGB.smspurgeOldFiles()))
},
1000 * 60 * 10
)
_quickTest()
.then(() => conn.logger.info(chalk.bold(lenguajeGB['smsCargando']().trim())))
.catch(console.error)
let file = fileURLToPath(import.meta.url)
watchFile(file, () => {
unwatchFile(file)
console.log(chalk.bold.greenBright(lenguajeGB['smsMainBot']().trim()))
import(`${file}?update=${Date.now()}`)
})
async function isValidPhoneNumber(number) {
try {
number = number.replace(/\s+/g, '')
if (number.startsWith('+521')) {
number = number.replace('+521', '+52')
} else if (number.startsWith('+52') && number[4] === '1') {
number = number.replace('+52 1', '+52')
}
const parsedNumber = phoneUtil.parseAndKeepRawInput(number)
return phoneUtil.isValidNumber(parsedNumber)
} catch (error) {
return false
}
}
async function joinChannels(conn) {
for (const channelId of Object.values(global.ch)) {
await conn.newsletterFollow(channelId).catch(() => {})
}
}