This repository was archived by the owner on May 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.js
More file actions
520 lines (440 loc) · 12 KB
/
Copy pathindex.js
File metadata and controls
520 lines (440 loc) · 12 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
/**
* Este script é responsável
* pelas funções que
* serão executadas
* no Lite Bot.
*
* Aqui é onde você
* vai definir
* o que o seu bot
* vai fazer.
*
* @author Dev Gui
*/
const path = require("node:path");
const { menu } = require("./utils/menu");
const { ASSETS_DIR, BOT_NUMBER, SPIDER_API_TOKEN } = require("./config");
const { errorLog } = require("./utils/terminal");
const {
attp,
ttp,
gpt4,
playAudio,
playVideo,
} = require("./services/spider-x-api");
const { consultarCep } = require("correios-brasil/dist");
const { image } = require("./services/hercai");
const {
InvalidParameterError,
WarningError,
DangerError,
} = require("./errors");
const {
checkPrefix,
deleteTempFile,
download,
formatCommand,
getBuffer,
getContent,
getJSON,
getProfileImageData,
getRandomName,
getRandomNumber,
isLink,
loadLiteFunctions,
onlyLettersAndNumbers,
onlyNumbers,
removeAccentsAndSpecialCharacters,
splitByCharacters,
toUserJid,
} = require("./utils/functions");
const {
activateAntiLinkGroup,
deactivateAntiLinkGroup,
isActiveAntiLinkGroup,
activateWelcomeGroup,
isActiveGroup,
deactivateWelcomeGroup,
activateGroup,
deactivateGroup,
} = require("./database/db");
async function runLite({ socket, data }) {
const functions = loadLiteFunctions({ socket, data });
if (!functions) {
return;
}
const {
args,
body,
command,
from,
fullArgs,
info,
isImage,
isReply,
isSticker,
isVideo,
lite,
prefix,
replyJid,
userJid,
audioFromURL,
ban,
downloadImage,
downloadSticker,
downloadVideo,
errorReact,
errorReply,
imageFromFile,
imageFromURL,
isAdmin,
isOwner,
react,
recordState,
reply,
sendText,
stickerFromFile,
stickerFromInfo,
stickerFromURL,
successReact,
successReply,
typingState,
videoFromURL,
waitReact,
waitReply,
warningReact,
warningReply,
} = functions;
if (!isActiveGroup(from) && !(await isOwner(userJid))) {
return;
}
if (!checkPrefix(prefix)) {
/**
* ⏩ Um auto responder simples ⏪
*
* Se a mensagem incluir a palavra
* (ignora maiúsculas e minúsculas) use:
* body.toLowerCase().includes("palavra")
*
* Se a mensagem for exatamente igual a
* palavra (ignora maiúsculas e minúsculas) use:
* body.toLowerCase() === "palavra"
*/
if (body.toLowerCase().includes("gado")) {
await reply("Você é o gadão guerreiro!");
return;
}
if (body === "salve") {
await reply("Salve, salve!");
return;
}
// ⬇ Coloque mais respostas do auto-responder abaixo ⬇
// ⬆ Coloque mais respostas do auto-responder acima ⬆
}
/**
* 🚫 Anti-link 🔗
*/
if (
!checkPrefix(prefix) &&
isActiveAntiLinkGroup(from) &&
isLink(body) &&
!(await isAdmin(userJid))
) {
await ban(from, userJid);
await reply("Anti-link ativado! Você foi removido por enviar um link!");
return;
}
/**
* Se não houver um
* prefixo, não faça nada.
*/
if (!checkPrefix(prefix)) {
return;
}
try {
/**
* Aqui você vai definir
* as funções que
* o seu bot vai executar via "cases".
*
* ⚠ ATENÇÃO ⚠: Não traga funções
* ou "cases" de
* outros bots para cá
* sem saber o que está fazendo.
*
* Cada bot tem suas
* particularidades e,
* por isso, é importante
* tomar cuidado.
* Não nos responsabilizamos
* por problemas
* que possam ocorrer ao
* trazer códigos de outros
* bots pra cá,
* na tentativa de adaptação.
*
* Toda ajuda será *COBRADA*
* caso sua intenção
* seja adaptar os códigos
* de outro bot para este.
*
* ✅ CASES ✅
*/
switch (removeAccentsAndSpecialCharacters(command?.toLowerCase())) {
case "antilink":
if (!args.length) {
throw new InvalidParameterError(
"Você precisa digitar 1 ou 0 (ligar ou desligar)!"
);
}
const antiLinkOn = args[0] === "1";
const antiLinkOff = args[0] === "0";
if (!antiLinkOn && !antiLinkOff) {
throw new InvalidParameterError(
"Você precisa digitar 1 ou 0 (ligar ou desligar)!"
);
}
if (antiLinkOn) {
activateAntiLinkGroup(from);
} else {
deactivateAntiLinkGroup(from);
}
await successReact();
const antiLinkContext = antiLinkOn ? "ativado" : "desativado";
await reply(`Recurso de anti-link ${antiLinkContext} com sucesso!`);
break;
case "attp":
if (!args.length) {
throw new InvalidParameterError(
"Você precisa informar o texto que deseja transformar em figurinha."
);
}
await waitReact();
const attpUrl = await attp(fullArgs.trim());
await successReact();
await stickerFromURL(attpUrl);
break;
case "ban":
case "banir":
case "kick":
if (!(await isAdmin(userJid))) {
throw new DangerError(
"Você não tem permissão para executar este comando!"
);
}
if (!args.length && !isReply) {
throw new InvalidParameterError(
"Você precisa mencionar ou marcar um membro!"
);
}
const memberToRemoveJid = isReply ? replyJid : toUserJid(args[0]);
const memberToRemoveNumber = onlyNumbers(memberToRemoveJid);
if (
memberToRemoveNumber.length < 7 ||
memberToRemoveNumber.length > 15
) {
throw new InvalidParameterError("Número inválido!");
}
if (memberToRemoveJid === userJid) {
throw new DangerError("Você não pode remover você mesmo!");
}
const botJid = toUserJid(BOT_NUMBER);
if (memberToRemoveJid === botJid) {
throw new DangerError("Você não pode me remover!");
}
await ban(from, memberToRemoveJid);
await successReact();
await reply("Membro removido com sucesso!");
break;
case "cep":
const cep = args[0];
if (!cep || ![8, 9].includes(cep.length)) {
throw new InvalidParameterError(
"Você precisa enviar um CEP no formato 00000-000 ou 00000000!"
);
}
const data = await consultarCep(cep);
if (!data.cep) {
await warningReply("CEP não encontrado!");
return;
}
await successReply(`*Resultado*
*CEP*: ${data.cep}
*Logradouro*: ${data.logradouro}
*Complemento*: ${data.complemento}
*Bairro*: ${data.bairro}
*Localidade*: ${data.localidade}
*UF*: ${data.uf}
*IBGE*: ${data.ibge}`);
break;
case "gpt4":
case "gpt":
case "ia":
case "lite":
const text = args[0];
if (!text) {
throw new InvalidParameterError(
"Você precisa me dizer o que eu devo responder!"
);
}
await waitReact();
const responseText = await gpt4(text);
await successReply(responseText);
break;
case "hidetag":
case "tagall":
case "marcar":
const { participants } = await lite.groupMetadata(from);
const mentions = participants.map(({ id }) => id);
await react("📢");
await sendText(`📢 Marcando todos!\n\n${fullArgs}`, mentions);
break;
case "menu":
await successReact();
await imageFromFile(
path.join(ASSETS_DIR, "images", "menu.png"),
`\n\n${menu()}`
);
break;
case "off":
if (!(await isOwner(userJid))) {
throw new DangerError(
"Você não tem permissão para executar este comando!"
);
}
deactivateGroup(from);
await successReply("Bot desativado no grupo!");
break;
case "image":
if (!fullArgs.length) {
throw new WarningError(
"Por favor, forneça uma descrição para gerar a imagem."
);
}
await waitReact();
const response = await image(fullArgs);
await successReact();
await imageFromURL(response.url);
break;
case "on":
if (!(await isOwner(userJid))) {
throw new DangerError(
"Você não tem permissão para executar este comando!"
);
}
activateGroup(from);
await successReply("Bot ativado no grupo!");
break;
case "ping":
await react("🏓");
await reply("🏓 Pong!");
break;
case "playaudio":
case "playyt":
case "play":
if (!args.length) {
throw new InvalidParameterError(
"Você precisa me dizer o que deseja buscar!"
);
}
await waitReact();
const playAudioData = await playAudio(fullArgs);
if (!playAudioData) {
await errorReply("Nenhum resultado encontrado!");
return;
}
await successReact();
await audioFromURL(playAudioData.url);
break;
case "playvideo":
if (!args.length) {
throw new InvalidParameterError(
"Você precisa me dizer o que deseja buscar!"
);
}
await waitReact();
const playVideoData = await playVideo(args[0]);
if (!playVideoData) {
await errorReply("Nenhum resultado encontrado!");
return;
}
await successReact();
await videoFromURL(playVideoData.url);
break;
case "sticker":
case "f":
case "fig":
case "figu":
case "s":
if (!isImage && !isVideo) {
throw new InvalidParameterError(
"Você precisa marcar uma imagem/gif/vídeo ou responder a uma imagem/gif/vídeo"
);
}
await waitReact();
await stickerFromInfo(info);
break;
case "welcome":
case "bemvindo":
case "boasvinda":
case "boasvindas":
case "boavinda":
case "boavindas":
if (!args.length) {
throw new InvalidParameterError(
"Você precisa digitar 1 ou 0 (ligar ou desligar)!"
);
}
const welcome = args[0] === "1";
const notWelcome = args[0] === "0";
if (!welcome && !notWelcome) {
throw new InvalidParameterError(
"Você precisa digitar 1 ou 0 (ligar ou desligar)!"
);
}
if (welcome) {
activateWelcomeGroup(from);
} else {
deactivateWelcomeGroup(from);
}
await successReact();
const welcomeContext = welcome ? "ativado" : "desativado";
await reply(`Recurso de boas-vindas ${welcomeContext} com sucesso!`);
break;
case "ttp":
if (!args.length) {
throw new InvalidParameterError(
"Você precisa informar o texto que deseja transformar em figurinha."
);
}
await waitReact();
const ttpUrl = await ttp(fullArgs.trim());
await successReact();
await stickerFromURL(ttpUrl);
break;
}
// ❌ Não coloque nada abaixo ❌
} catch (error) {
/**
* ❌ Não coloque nada abaixo ❌
* Este bloco é responsável por tratar
* os erros que ocorrerem durante a execução
* das "cases".
*/
if (error instanceof InvalidParameterError) {
await warningReply(`Parâmetros inválidos! ${error.message}`);
} else if (error instanceof WarningError) {
await warningReply(error.message);
} else if (error instanceof DangerError) {
await errorReply(error.message);
} else {
errorLog(`Erro ao executar comando!\n\nDetalhes: ${error.message}`);
await errorReply(
`Ocorreu um erro ao executar o comando ${command.name}!
📄 *Detalhes*: ${error.message}`
);
}
// ❌ Não coloque nada abaixo ❌
}
}
module.exports = { runLite };