-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
512 lines (463 loc) · 20.5 KB
/
config.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
507
508
509
510
511
const { Client, Location, List, Buttons, sendMessage, Message, MessageMedia, chat, Chat, PrivateChat, GroupChat, ClientInfo } = require('./index');
const client = new Client({ puppeteer: { headless: true, args: ['--no-sandbox'] }, clientId: 'example' });
const fs = require('fs');
// const exchanges = require('@coinranking/exchanges');
const CoinGecko = require('coingecko-api');
// const { DateTime } = require("luxon");
const os = require('os');
// const urlExist = require('url-exists');
const yaml = require('js-yaml');
const path = require('path');
const Bree = require('bree');
var exec = require('ssh-exec') // este módulo es inseguro
const request = require('native-request');
// const Iconv = require('iconv').Iconv;
const schedule = require('node-schedule');
const Nodebook = require('nodejs-notebook');
const myNotebook = new Nodebook.Nodebook('notebook', 'txt');
const fileGetContents = require('file-get-contents');
const process = require('process');
// You also could connect to an existing instance of a browser
// {
// puppeteer: {
// browserWSEndpoint: `ws://localhost:3000`
// }
// }
client.initialize();
client.on('qr', (qr) => {
// NOTE: This event will not be fired if a session is specified.
console.log('QR RECEIVED', qr);
});
client.on('authenticated', () => {
console.log('AUTHENTICATED');
});
client.on('auth_failure', msg => {
// Fired if session restore was unsuccessfull
console.error('AUTHENTICATION FAILURE', msg);
});
client.on('ready', () => {
// envía un mensaje a un grupo de whatsapp al conectarse avisando que el bot está online
client.sendMessage('[email protected]',"El bot se desconectó pero ya regresó -- *Online*");
console.log('READY');
});
client.on('message', async msg => {
console.log('MESSAGE RECEIVED', msg);
if (msg.body === '!@ayuda') {
client.sendMessage(msg.from, 'El comando correcto es !@yuda');
}
//broadcast comando para enviar un mensaje a todos los grupos en los que está el bot
if (msg.body.startsWith('!broadcast')){
if (!esAdmin.includes(msg.author || msg.from)) return msg.reply("No estás autorizado a usar este comando.");
else {
// Limpiamos el input
var mensaje = msg.body.slice(10);
// Creamos un setTimeout al azar de 1 a 10 segundos
let rand = Math.floor(Math.random() * 10);
let rtoms = rand * 1000;
const user = await msg.getContact();
let por =` comando de *ADMINISTRADOR* *!broadcast* enviado por *${user.pushname}* -- via *${chat.name}* con el mensaje *${mensaje}*`;
// Enviamos un aviso de uso de comando a un grupo de control
client.sendMessage('**********@g.us',por);
let chats = await client.getChats()
chats.forEach(chat => {
if (chat.isGroup) {
setTimeout(function(){
client.sendMessage(chat.id._serialized, "*Broadcast:* " + mensaje);
}, rtoms);
}
});
}
}
// broadcast
// comando para desactivar el modo mantenimiento individualmente en sitios del tipo subdominio.multisitewordpress.com de un wordpress multisite usando seedprod
if (msg.body.startsWith('!@brirland ')) {
var limpio = msg.body.slice(11); // limpio el input para quedarme con el nombre del subdominio
var sitio = limpio+'.multisitewordpress.com'; // uno el input con el dominio para crear la url del subdominio
// función para que sólo el admin pueda ejecutar este comando
if (!["[email protected]"].includes(msg.author || msg.from)) return msg.reply("No estás autorizado a usar este comando.");
else {
// exec ejecuta el comando wp option patch update (objeto de las opciones del subsitio, en este caso seedprod_settiongs) la opción anidada en ese objeto "enable_maintenance_mode" para desactivar el modo mantenimiento en el subsitio
exec(`cd /home/multisitewordpress.com/public_html && wp --url=${limpio} --allow-root option patch update seedprod_settings '{"enable_maintenance_mode":false}' && sudo rm -rf /usr/local/lsws/cachedata/priv`, {
user: 'usuariossh',
host: 'ip',
password: 'contraseña\''
}).pipe(process.stdout)
client.sendMessage(msg.from,'Subsitio '+sitio+' abierto');
}
}
// comando para activar el modo mantenimiento individualmente en sitios del tipo subdominio.multisitewordpress.com de un wordpress multisite usando seedprod
if (msg.body.startsWith('!cerr@rland ')) {
var limpio = msg.body.slice(12); // limpio el input para quedarme con el nombre del subdominio
// var sitio = limpio+'.multisitewordpress.com'; si se quiere unir el input con el dominio para crear la url del subdominio
// función para que sólo el admin pueda ejecutar este comando
if (!["[email protected]"].includes(msg.author || msg.from)) return msg.reply("No estás autorizado a usar este comando.");
else {
// exec ejecuta el comando wp option patch update (objeto de las opciones del subsitio, en este caso seedprod_settiongs) la opción anidada en ese objeto "enable_maintenance_mode" para activar el modo mantenimiento en el subsitio
exec(`cd /home/multisitewordpress.com/public_html && wp --url=${limpio} --allow-root option patch update seedprod_settings '{"enable_maintenance_mode":true}' && sudo rm -rf /usr/local/lsws/cachedata/priv`, {
user: 'usuariossh',
host: 'ip',
password: 'contraseña\''
}).pipe(process.stdout)
client.sendMessage(msg.from,'Subsitio '+sitio+' cerrado');
}
}
// fin comandos para abrir y cerrar landings individualmente
// Comando para cambiar el texto de una página en un sitio wordpress, página utilizada en este caso como mensaje del modo mantenimiento del plugin seedprod.
if (msg.body.startsWith('!mens@jeoff ')) {
var mensajeoff = msg.body.slice(12);
// exec ejecuta el comando para actualizar el html de la página usando wp post update (ID de la página) insertando el contenido html minificado con --post-content=
exec(`cd /home/multisitewordpress.com/public_html && wp --allow-root post update 701 --post_content='{<link rel="icon" href="logo.png" sizes="192x192"/><link rel="apple-touch-icon" href="cropped-fav-180x180.png"/><meta name="msapplication-TileImage" content="cropped-fav-270x270.png"/><style>html{height:100%;}body{margin:0;}.bg{animation:slide 3s ease-in-out infinite alternate; background-image: linear-gradient(-60deg, #ffff 50%, #ffdc00 50%); bottom:0; left:-50%; opacity:.5; position:fixed; right:-50%; top:0; z-index:-1;}.bg2{animation-direction:alternate-reverse; animation-duration:4s;}.bg3{animation-duration:5s;}.content{background-color:rgba(255,255,255,.8); border-radius:.25em; box-shadow:0 0 .25em rgba(0,0,0,.25); box-sizing:border-box; left:50%; padding:10vmin; position:fixed; text-align:center; top:40%; transform:translate(-50%, -50%);}h1{font-family:monospace;}@keyframes slide{0%{transform:translateX(-25%);}100%{transform:translateX(25%);}}</style> </head> <body><div class="bg"></div><div class="bg bg2"></div><div class="bg bg3"></div><div class="content"> <div style="text-align: center;"><img width="100%" alt="logo" src="https://multisitewordpress.com/wp-content/uploads/2021/06/logo.png"/></div><div style="text-align: center;"><b><span style="font-family: Kozuka Mincho Pr6N;font-size: 1rem;">${mensajeoff}.<p>Gracias por su comprensión.</p></span></b></div><div style="text-align: center;"><br></div></div></body>}' && sudo rm -rf /usr/local/lsws/cachedata/priv`, {
user: 'usuariossh',
host: 'ip del servidor',
password: 'mipassword\''
}).pipe(process.stdout)
const user = await msg.getContact();
let chat = await msg.getChat();
let por =` comando de *ADMINISTRADOR* *!mens@jeoff* enviado por *${user.pushname}* -- via *${chat.name}* para cambiar el mensaje del modo mantenimiento a *${limpio}*`;
client.sendMessage('[email protected]',por);
client.sendMessage(msg.from,'Mensaje de mantenimiento cambiado a '+mensajeoff+' para el modo global de mantenimiento en multisitiowordpress.com');
}
}
// fin comando !mens@jeoff
// ayuda para los comandos de administradores
if (msg.body === '!@yuda'){
// función para que sólo el admin pueda ejecutar este comando
if (!["nú[email protected]"].includes(msg.author || msg.from)) return msg.reply("No estás autorizado a usar este comando.");
else {
const user = await msg.getContact();
msg.reply(`Hola @${user.pushname} estos son los comandos para admins:
*- descripción de un comando
`);
}
}
// ayuda para comandos públicos
if (msg.body === '!ayuda') {
// le responde a quien ejecuta el comando
const user = await msg.getContact();
msg.reply(`Hola @${user.pushname} estos son los comandos de ayuda que tiene el bot Nombredelbot:
*- !ayuda muestra esta ayuda
*- !otro comando
*`);
}
// comando para mostrar el valor en dólares de criptomonedas usando la api de coingecko
if (msg.body === '!cripto') {
const CoinGeckoClient = new CoinGecko();
//podemos elegir que monedas mostrar y en que exchange buscar los valores //https://www.coingecko.com/es/intercambios
let data = await CoinGeckoClient.exchanges.fetchTickers('bitfinex', {
coin_ids: ['bitcoin', 'ethereum', 'cardano', 'solana',]
});
var _coinList = {};
var _datacc = data.data.tickers.filter(t => t.target == 'USD');
[
'BTC',
'ETH',
'ADA',
'SOL',
// 'DOGE'
].forEach((i) => {
var _temp = _datacc.filter(t => t.base == i);
var _res = _temp.length == 0 ? [] : _temp[0];
_coinList[i] = _res.last;
})
//convierte el objeto en cadena para poder enviarse por sendMessage
var criptos = JSON.stringify(_coinList);
//limpiamos la cadena de carácteres no deseados
var valrep = criptos.replace(/[&\/\\#+()$~"*?<>{}]/g,' ');
//agregamos un breakline luego de cada coma para mostrar mejor la lista
var valrep2 = valrep.replace(/,/g, '\n');
//corregimos un espacio inicial que queda feo
var valrep3 = valrep2.replace(' B','B');
console.log(_coinList);
client.sendMessage(msg.from,valrep3)
}
// comando para mostrar la hora de distintos países
if (msg.body === '!hora') {
// Send a new message as a reply to the current one
var pana = new Date().toLocaleString('es-ES', { timeZone: 'America/Panama' });
var arg = new Date().toLocaleString('es-ES', { timeZone: 'America/Argentina/Buenos_Aires' });
client.sendMessage(msg.from, '*Hora Panamá* = '+pana);
client.sendMessage(msg.from, '*Hora Argentina* = '+arg);
}
if (msg.body === '!ping reply') {
// Send a new message as a reply to the current one
msg.reply('pong');
}
else if (msg.body === '!ke') {
// Manda stiker de JM con cara rara
const media = MessageMedia.fromFilePath('./media/ke.png');
client.sendMessage(msg.from, media, { sendMediaAsSticker: true});
}
// comando para ver notas agregadas a un txt usando el módulo Nodebook
else if (msg.body.startsWith('!notas')){
myNotebook.fileName({ lower: false });
const user = await msg.getContact();
contenido = myNotebook.content();
client.sendMessage(msg.from, contenido);
}
// borrar todas las notas del txt
else if (msg.body.startsWith('!borrarnotas')){
myNotebook.resetFile();
client.sendMessage(msg.from, 'Notas borradas');
}
// agregar una nota al txt de NodeBook
else if (msg.body.startsWith('!anotar ')) {
var a = new Date();
// agrego un timestamp de creación a la nota
var ts = new Date().toLocaleString('es-ES', { timeZone: 'America/Panama' });
// var ts = new Date().toISOString().replace(/T/, ' ').replace(/\..+/, '') ;
const user = await msg.getContact();
// le agrego a la nota el nombre del usuario que la agregó
var por =` por ${user.pushname} -- `;
var limpiar = msg.body.slice(8) ;
var texto = ts + por + limpiar;
var sep = ' --';
// creo la nota y le agrego un salto de línea
myNotebook.addLine(texto+sep+"\r\n");
client.sendMessage(msg.from, 'Nota agregada');
}
// comando para ver una línea específica
else if (msg.body.startsWith('!verlinea ')) {
myNotebook.fileName({ lower: false });
var linea = msg.body.slice(10);
var eleccion = myNotebook.fetchLine(linea);
client.sendMessage(msg.from, eleccion);
}
// comando para borrar una línea específica o nota
else if (msg.body.startsWith('!borrarnota ')) {
myNotebook.fileName({ lower: false });
var bnote = msg.body.slice(12);
var borr = myNotebook.deleteLine(bnote);
client.sendMessage(msg.from, 'Nota borrada');
}
} else if (msg.body.startsWith('!mensajea ')) {
// Direct send a new message to specific id
let number = msg.body.split(' ')[1];
let messageIndex = msg.body.indexOf(number) + number.length;
let message = msg.body.slice(messageIndex, msg.body.length);
number = number.includes('@c.us') ? number : `${number}@c.us`;
let chat = await msg.getChat();
chat.sendSeen();
client.sendMessage(number, message);
msg.reply('mensaje enviado');
} else if (msg.body.startsWith('!grupoasunto ')) {
// Change the group subject
let chat = await msg.getChat();
if (chat.isGroup) {
let newSubject = msg.body.slice(9);
chat.setSubject(newSubject);
} else {
msg.reply('Comando para ser usado en grupos!');
}
} else if (msg.body.startsWith('!echo ')) {
// Replies with the same message
msg.reply(msg.body.slice(6));
} else if (msg.body.startsWith('!grupodesc ')) {
// Change the group description
let chat = await msg.getChat();
if (chat.isGroup) {
let newDescription = msg.body.slice(6);
chat.setDescription(newDescription);
} else {
msg.reply('Comando para ser usado en grupos!');
}
} else if (msg.body === '!salir') {
// Leave the group
let chat = await msg.getChat();
if (chat.isGroup) {
chat.leave();
} else {
msg.reply('Comando para ser usado en grupos!');
}
} else if (msg.body.startsWith('!entrar ')) {
const inviteCode = msg.body.split(' ')[1];
try {
await client.acceptInvite(inviteCode);
msg.reply('Entre al grupo!');
} catch (e) {
msg.reply('El código de invitación parece incorrecto.');
}
} else if (msg.body === '!grupoinfo') {
let chat = await msg.getChat();
if (chat.isGroup) {
msg.reply(`
*Detalles del grupo*
Nombre: ${chat.name}
Descripción: ${chat.description}
Creación: ${chat.createdAt.toString()}
Creado por: ${chat.owner.user}
Participantes: ${chat.participants.length}
`);
} else {
msg.reply('Comando para ser usado en grupos!');
}
} else if (msg.body === '!chats') {
const chats = await client.getChats();
client.sendMessage(msg.from, `El bot tiene ${chats.length} chats abiertos.`);
} else if (msg.body === '!info') {
if (superadmin);
else {
var ut_sec = os.uptime();
var ut_min = ut_sec/60;
var ut_hour = ut_min/60;
ut_sec = Math.floor(ut_sec);
ut_min = Math.floor(ut_min);
ut_hour = Math.floor(ut_hour);
ut_hour = ut_hour%60;
ut_min = ut_min%60;
ut_sec = ut_sec%60;
var bt_sec = process.uptime();
var bt_min = bt_sec/60;
var bt_hour = bt_min/60;
bt_sec = Math.floor(bt_sec);
bt_min = Math.floor(bt_min);
bt_hour = Math.floor(bt_hour);
bt_hour = bt_hour%60;
bt_min = bt_min%60;
bt_sec = bt_sec%60;
let osver = os.release();
let ospla = os.platform();
let ostyp = os.type();
let info = client.info;
client.sendMessage(msg.from, `
*Información del bot*
Usuario: ${info.pushname}
Mi número: ${info.me.user}
Plataforma: ${info.platform}
WhatsApp: ${info.phone.wa_version}
Bot Up: ${bt_hour} hs ${bt_min} ms ${bt_sec} ss
Serv Up: ${ut_hour} hs ${ut_min} ms ${ut_sec} ss
Server: ${osver} ${ostyp}
`);
}
} else if (msg.body === '!mediainfo' && msg.hasMedia) {
const attachmentData = await msg.downloadMedia();
msg.reply(`
*Media info*
MimeType: ${attachmentData.mimetype}
Filename: ${attachmentData.filename}
Data (length): ${attachmentData.data.length}
`);
} else if (msg.body === '!quoteinfo' && msg.hasQuotedMsg) {
const quotedMsg = await msg.getQuotedMessage();
quotedMsg.reply(`
ID: ${quotedMsg.id._serialized}
Tipo: ${quotedMsg.type}
Autor: ${quotedMsg.author || quotedMsg.from}
Hora: ${quotedMsg.timestamp}
Tiene Medios? ${quotedMsg.hasMedia}
`);
} else if (msg.body === '!reenvmedia' && msg.hasQuotedMsg) {
const quotedMsg = await msg.getQuotedMessage();
if (quotedMsg.hasMedia) {
const attachmentData = await quotedMsg.downloadMedia();
client.sendMessage(msg.from, attachmentData, { caption: 'Aquí está la multimedia solicitada.' });
}
}
} else if (msg.location) {
msg.reply(msg.location);
} else if (msg.body.startsWith('!estado ')) {
const newStatus = msg.body.split(' ')[1];
await client.setStatus(newStatus);
msg.reply(`Estado actualizado a *${newStatus}*`);
} else if (msg.body === '!mencion') {
const contact = await msg.getContact();
const chat = await msg.getChat();
chat.sendMessage(`Hola @${contact.number}!`, {
mentions: [contact]
});
} else if (msg.body === '!borrar') {
if (msg.hasQuotedMsg) {
const quotedMsg = await msg.getQuotedMessage();
if (quotedMsg.fromMe) {
quotedMsg.delete(true);
} else {
msg.reply('Sólo puedo borrar mis propios mensajes');
}
}
} else if (msg.body === '!pin') {
const chat = await msg.getChat();
await chat.pin();
} else if (msg.body === '!archivo') {
const chat = await msg.getChat();
await chat.archive();
} else if (msg.body === '!mutear') {
const chat = await msg.getChat();
// mute the chat for 20 seconds
const unmuteDate = new Date();
unmuteDate.setSeconds(unmuteDate.getSeconds() + 20);
await chat.mute(unmuteDate);
} else if (msg.body === '!tipeando') {
const chat = await msg.getChat();
// simulates typing in the chat
chat.sendStateTyping();
} else if (msg.body === '!grabando') {
const chat = await msg.getChat();
// simulates recording audio in the chat
chat.sendStateRecording();
} else if (msg.body === '!limpiarestado') {
const chat = await msg.getChat();
// stops typing or recording in the chat
chat.clearState();
} else if (msg.body === 'jumpto') {
if (msg.hasQuotedMsg) {
const quotedMsg = await msg.getQuotedMessage();
client.interface.openChatWindowAt(quotedMsg.id._serialized);
}
}
});
client.on('message_create', (msg) => {
// Fired on all message creations, including your own
if (msg.fromMe) {
// do stuff here
}
});
client.on('message_revoke_everyone', async (after, before) => {
// Fired whenever a message is deleted by anyone (including you)
console.log(after); // message after it was deleted.
if (before) {
console.log(before); // message before it was deleted.
}
});
client.on('message_revoke_me', async (msg) => {
// Fired whenever a message is only deleted in your own view.
console.log(msg.body); // message before it was deleted.
});
client.on('message_ack', (msg, ack) => {
/*
== ACK VALUES ==
ACK_ERROR: -1
ACK_PENDING: 0
ACK_SERVER: 1
ACK_DEVICE: 2
ACK_READ: 3
ACK_PLAYED: 4
*/
if(ack == 3) {
// The message was read
}
});
client.on('group_join', (notification) => {
// User has joined or been added to the group.
console.log('entra', notification);
notification.reply('Usuario entró.');
});
client.on('group_leave', (notification) => {
// User has left or been kicked from the group.
console.log('sale', notification);
notification.reply('Usuario salió.');
});
client.on('group_update', (notification) => {
// Group picture, subject or description has been updated.
console.log('actualización', notification);
});
client.on('change_battery', (batteryInfo) => {
// Battery percentage for attached device has changed
const { battery, plugged } = batteryInfo;
console.log(`Batería: ${battery}% - Cargando? ${plugged}`);
});
client.on('change_state', state => {
console.log('CAMBIAR ESTADO', state );
});
client.on('disconnected', (reason) => {
console.log('El cliente se desconectó', reason);
});