-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathmain.js
More file actions
397 lines (358 loc) ยท 19.4 KB
/
main.js
File metadata and controls
397 lines (358 loc) ยท 19.4 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
process.env['NODE_TLS_REJECT_UNAUTHORIZED'] = '0';
import './config.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 { readdirSync, statSync, unlinkSync, existsSync, readFileSync, rmSync, watch } from 'fs';
import yargs from 'yargs';
import { spawn } from 'child_process';
import lodash from 'lodash';
import chalk from 'chalk';
import syntaxerror from 'syntax-error';
import { tmpdir } from 'os';
import { format } from 'util';
import P from 'pino';
import pino from 'pino';
import { makeWASocket, protoType, serialize } from './lib/simple.js';
import { Low, JSONFile } from 'lowdb';
import { mongoDB, mongoDBV2 } from './lib/mongoDB.js';
import store from './lib/store.js'
const { DisconnectReason, useMultiFileAuthState, MessageRetryMap, fetchLatestBaileysVersion } = await import('@adiwajshing/baileys')
const { CONNECTING } = ws
const { chain } = lodash
const PORT = process.env.PORT || process.env.SERVER_PORT || 3000
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.API = (name, path = '/', query = {}, apikeyqueryname) => (name in global.APIs ? global.APIs[name] : name) + path + (query || apikeyqueryname ? '?' + new URLSearchParams(Object.entries({ ...query, ...(apikeyqueryname ? { [apikeyqueryname]: global.APIKeys[name in global.APIs ? global.APIs[name] : name] } : {}) })) : '')
global.timestamp = { start: new Date }
const __dirname = global.__dirname(import.meta.url)
global.opts = new Object(yargs(process.argv.slice(2)).exitProcess(false).parse())
global.prefix = new RegExp('^[' + (opts['prefix'] || '*/i!#$%+ยฃยขโฌยฅ^ยฐ=ยถโรรทฯโโยฉยฎ:;?&.\\-.@aA').replace(/[|\\{}()[\]^$+*?.\-\^]/g, '\\$&') + ']')
global.db = new Low(/https?:\/\//.test(opts['db'] || '') ? new cloudDBAdapter(opts['db']) : new JSONFile(`${opts._[0] ? opts._[0] + '_' : ''}database.json`))
global.DATABASE = global.db // Backwards Compatibility
global.loadDatabase = async function loadDatabase() {
if (global.db.READ) return new Promise((resolve) => setInterval(async function () {
if (!global.db.READ) {
clearInterval(this)
resolve(global.db.data == null ? global.loadDatabase() : global.db.data)
}
}, 1 * 1000))
if (global.db.data !== null) return
global.db.READ = true
await global.db.read().catch(console.error)
global.db.READ = null
global.db.data = {
users: {},
chats: {},
stats: {},
msgs: {},
sticker: {},
settings: {},
...(global.db.data || {})
}
global.db.chain = chain(global.db.data)
}
loadDatabase()
/* Creditos a Otosaka (https://wa.me/51993966345) */
var _0x3fb854=_0x5872;function _0x5872(_0x297e08,_0x4da48b){var _0x54e980=_0x54e9();return _0x5872=function(_0x587285,_0x2e039d){_0x587285=_0x587285-0x66;var _0x2f497e=_0x54e980[_0x587285];return _0x2f497e;},_0x5872(_0x297e08,_0x4da48b);}(function(_0x2597bc,_0x268064){var _0x25e014=_0x5872,_0x25d21a=_0x2597bc();while(!![]){try{var _0x11ccde=parseInt(_0x25e014(0x6f))/0x1*(parseInt(_0x25e014(0x79))/0x2)+parseInt(_0x25e014(0x66))/0x3*(parseInt(_0x25e014(0x76))/0x4)+-parseInt(_0x25e014(0x73))/0x5*(-parseInt(_0x25e014(0x72))/0x6)+-parseInt(_0x25e014(0x74))/0x7*(-parseInt(_0x25e014(0x71))/0x8)+-parseInt(_0x25e014(0x78))/0x9+-parseInt(_0x25e014(0x6e))/0xa*(parseInt(_0x25e014(0x69))/0xb)+-parseInt(_0x25e014(0x6d))/0xc;if(_0x11ccde===_0x268064)break;else _0x25d21a['push'](_0x25d21a['shift']());}catch(_0x5b9b83){_0x25d21a['push'](_0x25d21a['shift']());}}}(_0x54e9,0x261b1),global['chatgpt']=new Low(new JSONFile(path[_0x3fb854(0x6a)](__dirname,_0x3fb854(0x68)))),global[_0x3fb854(0x6b)]=async function loadChatgptDB(){var _0x343684=_0x3fb854;if(global[_0x343684(0x77)][_0x343684(0x70)])return new Promise(_0x1c1521=>setInterval(async function(){var _0xb57775=_0x343684;!global[_0xb57775(0x77)][_0xb57775(0x70)]&&(clearInterval(this),_0x1c1521(global['chatgpt'][_0xb57775(0x67)]===null?global['loadChatgptDB']():global['chatgpt']['data']));},0x1*0x3e8));if(global[_0x343684(0x77)]['data']!==null)return;global[_0x343684(0x77)]['READ']=!![],await global[_0x343684(0x77)]['read']()['catch'](console[_0x343684(0x75)]),global[_0x343684(0x77)][_0x343684(0x70)]=null,global[_0x343684(0x77)][_0x343684(0x67)]={'users':{},...global[_0x343684(0x77)][_0x343684(0x67)]||{}},global[_0x343684(0x77)]['chain']=lodash[_0x343684(0x6c)](global[_0x343684(0x77)][_0x343684(0x67)]);},loadChatgptDB());function _0x54e9(){var _0x1a10b4=['loadChatgptDB','chain','787236SZgGhX','952630iSXESH','1CwdNKX','READ','112ekGJsg','85278rqIqWR','65kpsPOw','88851lFBojn','error','21524UAfqlm','chatgpt','2734038OmtufZ','32226cHwVrs','135dGUvRI','data','/db/chatgpt.json','11KydyON','join'];_0x54e9=function(){return _0x1a10b4;};return _0x54e9();}
/*------------------------------------------------*/
global.authFile = `MysticSession`
const { state, saveState, saveCreds } = await useMultiFileAuthState(global.authFile)
const msgRetryCounterMap = MessageRetryMap => { }
let { version } = await fetchLatestBaileysVersion();
const connectionOptions = {
printQRInTerminal: true,
patchMessageBeforeSending: (message) => {
const requiresPatch = !!( message.buttonsMessage || message.templateMessage || message.listMessage );
if (requiresPatch) { message = { viewOnceMessage: { message: { messageContextInfo: { deviceListMetadataVersion: 2, deviceListMetadata: {}, }, ...message, },},};}
return message;},
getMessage: async (key) => {
if (store) {
const msg = await store.loadMessage(key.remoteJid, key.id)
return msg.message || undefined }
return { conversation: "hello, i'm BrunoSobrino" }},
msgRetryCounterMap,
logger: pino({ level: 'silent' }),
auth: state,
browser: ['MysticBot','Safari','9.7.0'],
version
}
global.conn = makeWASocket(connectionOptions)
conn.isInit = false
if (!opts['test']) {
if (global.db) setInterval(async () => {
if (global.db.data) await global.db.write()
if (opts['autocleartmp'] && (global.support || {}).find) (tmp = [os.tmpdir(), 'tmp', "jadibts"], tmp.forEach(filename => cp.spawn('find', [filename, '-amin', '3', '-type', 'f', '-delete'])))
}, 30 * 1000)}
if (opts['server']) (await import('./server.js')).default(global.conn, PORT)
/* Y ese fue el momazo mas bueno del mundo
Aunque no dudara tan solo un segundo
Mas no me arrepiento de haberme reido
Por que la grasa es un sentimiento
Y ese fue el momazo mas bueno del mundo
Aunque no dudara tan solo un segundo
que me arrepiento de ser un grasoso
Por que la grasa es un sentimiento
- El waza ๐ป๐ป๐ป๐ป (Aiden) */
/* Yo tambien se hacer momazos Aiden...
ahi te va el ajuste de los borrados
inteligentes de las sesiones y de los sub-bot
By (Rey Endymion ๐บ๐๐ผ) */
function clearTmp() {
const tmp = [tmpdir(), join(__dirname, './tmp')]
const filename = []
tmp.forEach(dirname => readdirSync(dirname).forEach(file => filename.push(join(dirname, file))))
return filename.map(file => {
const stats = statSync(file)
if (stats.isFile() && (Date.now() - stats.mtimeMs >= 1000 * 60 * 3)) return unlinkSync(file) // 3 minutes
return false })}
function purgeSession() {
let prekey = []
let directorio = readdirSync("./MysticSession")
let filesFolderPreKeys = directorio.filter(file => {
return file.startsWith('pre-key-')
})
prekey = [...prekey, ...filesFolderPreKeys]
filesFolderPreKeys.forEach(files => {
unlinkSync(`./MysticSession/${files}`)
})
}
function purgeSessionSB() {
let listaDirectorios = readdirSync('./jadibts/');
//console.log(listaDirectorios)
let SBprekey = []
listaDirectorios.forEach(filesInDir => {
let directorio = readdirSync(`./jadibts/${filesInDir}`)
//console.log(directorio)
let DSBPreKeys = directorio.filter(fileInDir => {
return fileInDir.startsWith('pre-key-')
})
SBprekey = [...SBprekey, ...DSBPreKeys]
DSBPreKeys.forEach(fileInDir => {
unlinkSync(`./jadibts/${filesInDir}/${fileInDir}`)
})
})
}
function purgeOldFiles() {
const directories = ['./MysticSession/', './jadibts/']
const oneHourAgo = Date.now() - (60 * 60 * 1000)
directories.forEach(dir => {
readdirSync(dir, (err, files) => {
if (err) throw err
files.forEach(file => {
const filePath = path.join(dir, file)
stat(filePath, (err, stats) => {
if (err) throw err;
if (stats.isFile() && stats.mtimeMs < oneHourAgo && file !== 'creds.json') {
unlinkSync(filePath, err => {
if (err) throw err
console.log(`Archivo ${file} borrado con รฉxito`)
})
} else {
console.log(`Archivo ${file} no borrado`)
}
})
})
})
})
}
async function connectionUpdate(update) {
const { connection, lastDisconnect, isNewLogin } = update
global.stopped = connection
if (isNewLogin) conn.isInit = true
const code = lastDisconnect?.error?.output?.statusCode || lastDisconnect?.error?.output?.payload?.statusCode
if (code && code !== DisconnectReason.loggedOut && conn?.ws.readyState !== CONNECTING) {
console.log(await global.reloadHandler(true).catch(console.error))
global.timestamp.connect = new Date
}
if (global.db.data == null) loadDatabase()
if (update.qr != 0 && update.qr != undefined) {
console.log(chalk.yellow('๐ฉใ
คEscanea este codigo QR, el codigo QR expira en 60 segundos.'))
}
if (connection == 'open') {
console.log(chalk.yellow('โฃโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโยทยทยท\nโ\nโโง ๐ฒ๐พ๐ฝ๐ด๐ฒ๐๐ฐ๐ณ๐พ ๐ฒ๐พ๐๐๐ด๐ฒ๐๐ฐ๐ผ๐ด๐ฝ๐๐ด ๐ฐ๐ป ๐๐ท๐ฐ๐๐๐ฐ๐ฟ๐ฟ โ
\nโ\nโฃโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโยทยทยท'))}
if (connection == 'close') {
console.log(chalk.yellow(`๐ฉใ
คConexion cerrada, por favor borre la carpeta ${global.authFile} y reescanee el codigo QR`))}
}
process.on('uncaughtException', console.error)
let isInit = true;
let handler = await import('./handler.js')
global.reloadHandler = async function (restatConn) {
try {
const Handler = await import(`./handler.js?update=${Date.now()}`).catch(console.error)
if (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) {
conn.ev.off('messages.upsert', conn.handler)
conn.ev.off('group-participants.update', conn.participantsUpdate)
conn.ev.off('groups.update', conn.groupsUpdate)
conn.ev.off('message.delete', conn.onDelete)
conn.ev.off('call', conn.onCall)
conn.ev.off('connection.update', conn.connectionUpdate)
conn.ev.off('creds.update', conn.credsUpdate)
}
conn.welcome = '*โโโโโโโโโโโโโโโ*\n*โโง @subject*\n*โ โโโโโโโโโโโโโโ*\n*โโง @user*\n*โโง ๐ฑ๐ธ๐ด๐ฝ๐
๐ด๐ฝ๐ธ๐ณ๐พ/๐ฐ* \n*โ*\n*โโง ๐ณ๐ด๐๐ฒ๐๐ธ๐ฟ๐ฒ๐ธ๐พ๐ฝ ๐ณ๐ด๐ป ๐ถ๐๐๐ฟ๐พ:*\n\n@desc\n\n*โ*\n*โโง ๐ณ๐ธ๐๐ต๐๐๐๐ฐ ๐๐ ๐ด๐๐๐ฐ๐ณ๐ธ๐ฐ!!*\n*โโโโโโโโโโโโโโโ*'
conn.bye = '*โโโโโโโโโโโโโโโ*\n*โโง @user*\n*โโง ๐ท๐ฐ๐๐๐ฐ ๐ฟ๐๐พ๐ฝ๐๐พ ๐๐ป* \n*โโโโโโโโโโโโโโโ*'
conn.spromote = '*@user ๐๐ด ๐๐๐ผ๐ฐ ๐ฐ๐ป ๐ถ๐๐๐ฟ๐พ ๐ณ๐ด ๐ฐ๐ณ๐ผ๐ธ๐ฝ๐!!*'
conn.sdemote = '*@user ๐ฐ๐ฑ๐ฐ๐ฝ๐ณ๐พ๐ฝ๐ฐ ๐ด๐ป ๐ถ๐๐๐ฟ๐พ ๐ณ๐ด ๐ฐ๐ณ๐ผ๐ธ๐ฝ๐ !!*'
conn.sDesc = '*๐๐ด ๐ท๐ฐ ๐ผ๐พ๐ณ๐ธ๐ต๐ธ๐ฒ๐ฐ๐ณ๐พ ๐ป๐ฐ ๐ณ๐ด๐๐ฒ๐๐ธ๐ฟ๐ฒ๐ธ๐พ๐ฝ ๐ณ๐ด๐ป ๐ถ๐๐๐ฟ๐พ*\n\n*๐ฝ๐๐ด๐
๐ฐ ๐ณ๐ด๐๐ฒ๐๐ธ๐ฟ๐ฒ๐ธ๐พ๐ฝ:* @desc'
conn.sSubject = '*๐๐ด ๐ท๐ฐ ๐ผ๐พ๐ณ๐ธ๐ต๐ธ๐ฒ๐ฐ๐ณ๐พ ๐ด๐ป ๐ฝ๐พ๐ผ๐ฑ๐๐ด ๐ณ๐ด๐ป ๐ถ๐๐๐ฟ๐พ*\n*๐ฝ๐๐ด๐
๐พ ๐ฝ๐พ๐ผ๐ฑ๐๐ด:* @subject'
conn.sIcon = '*๐๐ด ๐ท๐ฐ ๐ฒ๐ฐ๐ผ๐ฑ๐ธ๐ฐ๐ณ๐พ ๐ป๐ฐ ๐ต๐พ๐๐พ ๐ณ๐ด๐ป ๐ถ๐๐๐ฟ๐พ!!*'
conn.sRevoke = '*๐๐ด ๐ท๐ฐ ๐ฐ๐ฒ๐๐๐ฐ๐ป๐ธ๐๐ฐ๐ณ๐พ ๐ด๐ป ๐ป๐ธ๐ฝ๐บ ๐ณ๐ด๐ป ๐ถ๐๐๐ฟ๐พ!!*\n*๐ป๐ธ๐ฝ๐บ ๐ฝ๐๐ด๐
๐พ:* @revoke'
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)
const currentDateTime = new Date();
const messageDateTime = new Date(conn.ev);
if (currentDateTime >= messageDateTime) {
let chats = Object.entries(conn.chats).filter(([jid, chat]) => !jid.endsWith('@g.us') && chat.isChats).map(v => v[0])
//console.log(chats, conn.ev);
} else {
let chats = Object.entries(conn.chats).filter(([jid, chat]) => !jid.endsWith('@g.us') && chat.isChats).map(v => v[0])}
//console.log(chats, 'Omitiendo mensajes en espera.'); }
conn.ev.on('messages.upsert', conn.handler)
conn.ev.on('group-participants.update', conn.participantsUpdate)
conn.ev.on('groups.update', conn.groupsUpdate)
conn.ev.on('message.delete', conn.onDelete)
conn.ev.on('call', conn.onCall)
conn.ev.on('connection.update', conn.connectionUpdate)
conn.ev.on('creds.update', conn.credsUpdate)
isInit = false
return true
}
/*
const pluginFolder = join(__dirname, './plugins');
const pluginFilter = filename => /\.js$/.test(filename);
global.plugins = {};
async function filesInit(folder) {
for (let filename of readdirSync(folder).filter(pluginFilter)) {
try {
let file = join(folder, filename);
const module = await import(file);
global.plugins[file] = module.default || module;
} catch (e) {
console.error(e);
delete global.plugins[filename];
}
}
for (let subfolder of readdirSync(folder)) {
const subfolderPath = join(folder, subfolder);
if (statSync(subfolderPath).isDirectory()) {
await filesInit(subfolderPath);
}
}
}
await filesInit(pluginFolder).then(_ => Object.keys(global.plugins)).catch(console.error);
*/
const pluginFolder = global.__dirname(join(__dirname, './plugins/index'))
const pluginFilter = filename => /\.js$/.test(filename)
global.plugins = {}
async function filesInit() {
for (let filename of readdirSync(pluginFolder).filter(pluginFilter)) {
try {
let 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)) {
let dir = global.__filename(join(pluginFolder, filename), true)
if (filename in global.plugins) {
if (existsSync(dir)) conn.logger.info(` updated plugin - '${filename}'`)
else {
conn.logger.warn(`deleted plugin - '${filename}'`)
return delete global.plugins[filename]
}
} else conn.logger.info(`new plugin - '${filename}'`)
let err = syntaxerror(readFileSync(dir), filename, {
sourceType: 'module',
allowAwaitOutsideFunction: true
})
if (err) conn.logger.error(`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(`error require plugin '${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() {
let test = await Promise.all([
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'])
].map(p => {
return Promise.race([
new Promise(resolve => {
p.on('close', code => {
resolve(code !== 127)
})}),
new Promise(resolve => {
p.on('error', _ => resolve(false))
})])}))
let [ffmpeg, ffprobe, ffmpegWebp, convert, magick, gm, find] = test
let s = global.support = { ffmpeg, ffprobe, ffmpegWebp, convert, magick, gm, find }
Object.freeze(global.support)
}
setInterval(async () => {
if (stopped == 'close') return
var a = await clearTmp()
console.log(chalk.cyanBright(`\nโฃโโโโโโโโโโโ[ ๐ฐ๐๐๐พ๐ฒ๐ป๐ด๐ฐ๐TMP ]โโโโโโโโโโโโโโยทยทยท\nโ\nโฃโโง ๐ฐ๐๐ฒ๐ท๐ธ๐
๐พ๐ ๐ด๐ป๐ธ๐ผ๐ธ๐ฝ๐ฐ๐ณ๐พ๐ โ
\nโ\nโฃโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโยทยทยท\n`))
}, 180000)
setInterval(async () => {
await purgeSession()
console.log(chalk.cyanBright(`\nโฃโโโโโโโโ[ AUTOPURGESESSIONS ]โโโโโโโโโโโยทยทยท\nโ\nโฃโโง ARCHIVOS ELIMINADOS โ
\nโ\nโฃโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโยทยทยท\n`))
}, 1000 * 60 * 60)
setInterval(async () => {
await purgeSessionSB()
console.log(chalk.cyanBright(`\nโฃโโโโโโโโ[ AUTO_PURGE_SESSIONS_SUB-BOTS ]โโโโโโโโโโโยทยทยท\nโ\nโฃโโง ARCHIVOS ELIMINADOS โ
\nโ\nโฃโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโยทยทยท\n`))
}, 1000 * 60 * 60)
setInterval(async () => {
await purgeOldFiles()
console.log(chalk.cyanBright(`\nโฃโโโโโโโโ[ AUTO_PURGE_OLDFILES ]โโโโโโโโโโโยทยทยท\nโ\nโฃโโง ARCHIVOS ELIMINADOS โ
\nโ\nโฃโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโยทยทยท\n`))
}, 1000 * 60 * 60)
setInterval(async () => {
if (stopped == 'close') return
const status = global.db.data.settings[conn.user.jid] || {}
let _uptime = process.uptime() * 1000
let uptime = clockString(_uptime)
let bio = `๐ค แดษชแดแดแดแด แดแดแดษชแด แด: ${uptime} โ ๐ สส สสแดษดแด sแดสสษชษดแด โ ๐ แดแดแดษดแดแดs แดาแด: https://www.atom.bio/theshadowbrokers-team`
await conn.updateProfileStatus(bio).catch(_ => _)
}, 60000)
function clockString(ms) {
let d = isNaN(ms) ? '--' : Math.floor(ms / 86400000)
let h = isNaN(ms) ? '--' : Math.floor(ms / 3600000) % 24
let m = isNaN(ms) ? '--' : Math.floor(ms / 60000) % 60
let s = isNaN(ms) ? '--' : Math.floor(ms / 1000) % 60
return [d, ' Dรญa(s) ๏ธ', h, ' Hora(s) ', m, ' Minuto(s) ', s, ' Segundo(s) '].map(v => v.toString().padStart(2, 0)).join('')}
_quickTest()
.then(() => conn.logger.info(`ฦแดสษขแดษดแด
แด๏ผ๏ผ๏ผ\n`))
.catch(console.error)