-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
262 lines (249 loc) · 10.8 KB
/
main.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
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
require('./config.js')
let { WAConnection: _WAConnection } = require('@adiwajshing/baileys')
let { generate } = require('qrcode-terminal')
let syntaxerror = require('syntax-error')
let simple = require('./lib/simple')
// let logs = require('./lib/logs')
let { promisify } = require('util')
let yargs = require('yargs/yargs')
let Readline = require('readline')
let cp = require('child_process')
let path = require('path')
let fs = require('fs')
let rl = Readline.createInterface(process.stdin, process.stdout)
let WAConnection = simple.WAConnection(_WAConnection)
//global.owner = Object.keys(global.Owner)
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
}
// global.LOGGER = logs()
const PORT = process.env.PORT || 3000
global.opts = new Object(yargs(process.argv.slice(2)).exitProcess(false).parse())
global.prefix = new RegExp('^[' + (opts['prefix'] || 'xzXZ/i!#$%+£¢€¥^°=¶∆×÷π√✓©®:;?&.\\-HhhHBb.*aA').replace(/[|\\{}()[\]^$+*?.\-\^]/g, '\\$&') + ']')
global.DATABASE = new (require('./lib/database'))(`${opts._[0] ? opts._[0] + '_' : ''}database.json`, null, 2)
if (!global.DATABASE.data.users) global.DATABASE.data = {
users: {},
chats: {},
stats: {},
msgs: {},
sticker: {},
}
if (!global.DATABASE.data.chats) global.DATABASE.data.chats = {}
if (!global.DATABASE.data.stats) global.DATABASE.data.stats = {}
if (!global.DATABASE.data.msgs) global.DATABASE.data.msgs = {}
if (!global.DATABASE.data.sticker) global.DATABASE.data.sticker = {}
global.conn = new WAConnection()
conn.browserDescription = ['La Chica - Bot', 'Firefox', '3.0']
let authFile = `${opts._[0] || 'session'}.data.json`
if (fs.existsSync(authFile)) conn.loadAuthInfo(authFile)
if (opts['trace']) conn.logger.level = 'trace'
if (opts['debug']) conn.logger.level = 'debug'
if (opts['big-qr'] || opts['server']) conn.on('qr', qr => generate(qr, { small: false }))
let lastJSON = JSON.stringify(global.DATABASE.data)
if (!opts['test']) setInterval(() => {
conn.logger.info('Guardando database...')
if (JSON.stringify(global.DATABASE.data) == lastJSON) conn.logger.info('Database actualizada!!')
else {
global.DATABASE.save()
conn.logger.info('Database guardada!!')
lastJSON = JSON.stringify(global.DATABASE.data)
}
}, 1800 * 1000) // Autoguardado realizandose cada 30 minutos
if (opts['server']) require('./server')(global.conn, PORT)
conn.version = [2, 2143, 3]
conn.connectOptions.maxQueryResponseTime = 60_000
if (opts['test']) {
conn.user = {
jid: '[email protected]',
name: 'test',
phone: {}
}
conn.prepareMessageMedia = (buffer, mediaType, options = {}) => {
return {
[mediaType]: {
url: '',
mediaKey: '',
mimetype: options.mimetype || '',
fileEncSha256: '',
fileSha256: '',
fileLength: buffer.length,
seconds: options.duration,
fileName: options.filename || 'file',
gifPlayback: options.mimetype == 'image/gif' || undefined,
caption: options.caption,
ptt: options.ptt
}
}
}
conn.sendMessage = async (chatId, content, type, opts = {}) => {
let message = await conn.prepareMessageContent(content, type, opts)
let waMessage = await conn.prepareMessageFromContent(chatId, message, opts)
if (type == 'conversation') waMessage.key.id = require('crypto').randomBytes(16).toString('hex').toUpperCase()
conn.emit('chat-update', {
jid: conn.user.jid,
hasNewMessage: true,
count: 1,
messages: {
all() {
return [waMessage]
}
}
})
}
rl.on('line', line => conn.sendMessage('[email protected]', line.trim(), 'conversation'))
} else {
rl.on('line', line => {
global.DATABASE.save()
process.send(line.trim())
})
conn.connect().then(() => {
fs.writeFileSync(authFile, JSON.stringify(conn.base64EncodedAuthInfo(), null, '\t'))
global.timestamp.connect = new Date
})
}
process.on('uncaughtException', console.error)
// let strQuot = /(["'])(?:(?=(\\?))\2.)*?\1/
let isInit = true
global.reloadHandler = function () {
let handler = require('./handler')
if (!isInit) {
conn.off('chat-update', conn.handler)
conn.off('message-delete', conn.onDelete)
conn.off('group-participants-update', conn.onParticipantsUpdate)
conn.off('CB:action,,call', conn.onCall)
}
conn.welcome = '█▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃█\n┃╔─━━━━━━░ *🐲WELCOME🐲* ░━━━━━━─╗\n┃━━━━━━━━━━━━\n┃ *_✨ @user bienvenid@ a_* \n┃ *_@subject ✨_*\n┃\n┃=> *_En este grupo podrás_*\n┃ *_encontrar:_*\n┠⊷ *_Servidores VPS 💉 _*\n┠⊷ *_Amistades 🫂* \n┠⊷ *Enemig@s 🥵* :\n┠⊷ *Un Bot Sexy*\n┃\n┃=> *_Puedes solicitar mi lista de_*\n┃ *_comandos con:_*\n┠⊷ *#menu*\n┃\n┃=> *_Aquí tienes la descripción_* \n┃ *_del grupo, léela!!_*\n┃\n\n@desc\n\n┃ \n┃ *_🐍 Disfruta de tu_* \n┃ *_estadía en el grupo de la Chica Bot Calabera🐍_* \n┃\n┗━━━━━━━━━━━'
conn.bye = '┏━━━━━━━━━━━━\n┃──〘 *ADIOS* 〙───\n┃━━━━━━━━━━━━\n┃ *_☠ Se fue @user_* \n┃ *_Le tiene miedo a la Calabera, Que dios lo bendiga️_* \n┃ *_ Y se vuelva gay 😇_*\n┗━━━━━━━━━━'
conn.spromote = '*@user 🐍 AHORA FORMAS PARTE DE LOS ADMINISTRADORES DEL GRUPO🐍*'
conn.sdemote = '*@user BIENVENIDO🐲 AHORA FORMAS PARTE DE LOS INTEGRANTES DEL GRUPO CALABERA*'
//CODIGO AGREGADO, SI NO FUNIONA QUITAR ESTE CODIGO
conn.sDesc = '*𝚂𝙴 𝙷𝙰 𝙼𝙾𝙳𝙸𝙵𝙸𝙲𝙰𝙳𝙾 𝙻𝙰 𝙳𝙴𝚂𝙲𝚁𝙸𝙿𝙲𝙸𝙾𝙽 𝙳𝙴𝙻 𝙶𝚁𝚄𝙿𝙾*\n\n*𝙽𝚄𝙴𝚅𝙰 𝙳𝙴𝚂𝙲𝚁𝙸𝙿𝙲𝙸𝙾𝙽:* @desc'
conn.sSubject = '*𝚂𝙴 𝙷𝙰 𝙼𝙾𝙳𝙸𝙵𝙸𝙲𝙰𝙳𝙾 𝙴𝙻 𝙽𝙾𝙼𝙱𝚁𝙴 𝙳𝙴𝙻 𝙶𝚁𝚄𝙿𝙾*\n*𝙽𝚄𝙴𝚅𝙾 𝙽𝙾𝙼𝙱𝚁𝙴:* @subject'
conn.sIcon = '*𝚂𝙴 𝙷𝙰 𝙲𝙰𝙼𝙱𝙸𝙰𝙳𝙾 𝙻𝙰 𝙵𝙾𝚃𝙾 𝙳𝙴𝙻 𝙶𝚁𝚄𝙿𝙾!!*'
conn.sRevoke = '*𝚂𝙴 𝙷𝙰 𝙰𝙲𝚃𝚄𝙰𝙻𝙸𝚉𝙰𝙳𝙾 𝙴𝙻 𝙻𝙸𝙽𝙺 𝙳𝙴𝙻 𝙶𝚁𝚄𝙿𝙾!!*\n*𝙻𝙸𝙽𝙺 𝙽𝚄𝙴𝚅𝙾:* @revoke'
conn.handler = handler.handler
conn.onDelete = handler.delete
conn.onParticipantsUpdate = handler.participantsUpdate
conn.onCall = handler.onCall
conn.on('chat-update', conn.handler)
conn.on('message-delete', conn.onDelete)
conn.on('group-participants-update', conn.onParticipantsUpdate)
conn.on('CB:action,,call', conn.onCall)
if (isInit) {
conn.on('error', conn.logger.error)
conn.on('close', () => {
setTimeout(async () => {
try {
if (conn.state === 'close') {
if (fs.existsSync(authFile)) await conn.loadAuthInfo(authFile)
await conn.connect()
fs.writeFileSync(authFile, JSON.stringify(conn.base64EncodedAuthInfo(), null, '\t'))
global.timestamp.connect = new Date
}
} catch (e) {
conn.logger.error(e)
}
}, 5000)
})
}
isInit = false
return true
}
//COMANDO PARA AUDIO , EN CASO NO FUNCIONES SACAR ESTE CODIGO
//await await await await await await conn.sendFile(m.chat, vn, 'menu_chica.mp3', null, m, true, {
//type: 'audioMessage',
//ptt: true
//})
//SEGUNDO CODIGO DE MUSICA, SACAR EN CASO NO FUNCIONE
//let vn = './media/bienvenido_grupo.mp3'
//await conn.sendFile(m.chat, vn, 'bienvenido_grupo.mp3', null, m, true, {
// type: 'audioMessage',
// ptt: true
//}
// Plugin Loader
let pluginFolder = path.join(__dirname, 'plugins')
let pluginFilter = filename => /\.js$/.test(filename)
global.plugins = {}
for (let filename of fs.readdirSync(pluginFolder).filter(pluginFilter)) {
try {
global.plugins[filename] = require(path.join(pluginFolder, filename))
} catch (e) {
conn.logger.error(e)
delete global.plugins[filename]
}
}
console.log(Object.keys(global.plugins))
global.reload = (_event, filename) => {
if (pluginFilter(filename)) {
let dir = path.join(pluginFolder, filename)
if (dir in require.cache) {
delete require.cache[dir]
if (fs.existsSync(dir)) conn.logger.info(`re - require plugin '${filename}'`)
else {
conn.logger.warn(`deleted plugin '${filename}'`)
return delete global.plugins[filename]
}
} else conn.logger.info(`requiring new plugin '${filename}'`)
let err = syntaxerror(fs.readFileSync(dir), fs.existsSync(dir) ? filename : 'Execution Function')
if (err) conn.logger.error(`syntax error while loading '${filename}'\n${err}`)
else try {
global.plugins[filename] = require(dir)
} catch (e) {
conn.logger.error(e)
} finally {
global.plugins = Object.fromEntries(Object.entries(global.plugins).sort(([a], [b]) => a.localeCompare(b)))
}
}
}
Object.freeze(global.reload)
fs.watch(path.join(__dirname, 'plugins'), global.reload)
global.reloadHandler()
process.on('exit', () => global.DATABASE.save())
// Quick Test
async function _quickTest() {
let test = await Promise.all([
cp.spawn('ffmpeg'),
cp.spawn('ffprobe'),
cp.spawn('ffmpeg', ['-hide_banner', '-loglevel', 'error', '-filter_complex', 'color', '-frames:v', '1', '-f', 'webp', '-']),
cp.spawn('convert'),
cp.spawn('magick'),
cp.spawn('gm'),
].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] = test
console.log(test)
let s = global.support = {
ffmpeg,
ffprobe,
ffmpegWebp,
convert,
magick,
gm
}
require('./lib/sticker').support = s
Object.freeze(global.support)
if (!s.ffmpeg) conn.logger.warn('Please install ffmpeg for sending videos (pkg install ffmpeg)')
if (s.ffmpeg && !s.ffmpegWebp) conn.logger.warn('Stickers may not animated without libwebp on ffmpeg (--enable-ibwebp while compiling ffmpeg)')
if (!s.convert && !s.magick && !s.gm) conn.logger.warn('Stickers may not work without imagemagick if libwebp on ffmpeg doesnt isntalled (pkg install imagemagick)')
}
_quickTest()
.then(() => conn.logger.info('Quick Test Done'))
.catch(console.error)
//COMANDO PARA AUDIO DEJARLO EN EL CASO QUE FUNCIONE
//await await await await await await conn.sendFile(m.chat, vn, 'bienvenido_grupo.mp3', null, m, true, {
//type: 'audioMessage',
//ptt: true
//})
//}