-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcallbackFunctions
238 lines (211 loc) · 8.59 KB
/
callbackFunctions
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
const { getRandomInt, getRandomIntRange, userIsAdmin, getGroup, getTimeStamp } = require('./libs');
const { sendSticker } = require('./sticker');
const gis = require('g-i-s');
const { MessageMedia } = require('whatsapp-web.js');
const banMember = (msg, bot) => {
var hasMentions = msg.getMentions();
if (!msg.hasQuotedMsg && !hasMentions){
return msg.reply('Para banir, você deve mencionar um usuário ou mencionar a mensagem do usuário que deseja banir.');
}
getGroup(msg).then((group) => {
if (!group){
return msg.reply('Você precisa estar em um grupo para isso');
}
userIsAdmin(group, msg.author).then((isAdmin) => {
if (!isAdmin) {
return msg.reply('Você não é Admin.');
}
userIsAdmin(group, bot.info.wid._serialized).then((botIsAdmin) => {
if (!botIsAdmin){
return msg.reply('O Bot não é Admin.');
}
sendSticker(msg, './img/delete this5.webp', bot).then(() => {
if (msg.hasQuotedMsg){
msg.getQuotedMessage().then((quotedMsg) => {
if (quotedMsg && quotedMsg.author === '5521994963423@c.us') {
console.log('mencionou a msg do bot');
msg.reply('*JAMAIS TENTE ISSO!*');
group.removeParticipants([msg.author]);
return;
}
let usersToBan = [quotedMsg.author];
return group.removeParticipants(usersToBan);
})
}
if (hasMentions){
msg.getMentions().then((mentionedUsers) => {
for (var i = 0; i < mentionedUsers.length; i++){
if (mentionedUsers[i].id._serialized === '5521994963423@c.us') {
console.log('mencionou o bot');
msg.reply('*JAMAIS TENTE ISSO*');
group.removeParticipants([msg.author]);
return;
}
}
let usersToBan = [];
mentionedUsers.forEach((element) => {
usersToBan.push(element.id._serialized);
})
return group.removeParticipants(usersToBan);
})
}
})
})
})
})
}
const promoteMember = (msg, bot) => {
var hasMentions = msg.getMentions();
if (!msg.hasQuotedMsg && !hasMentions){
return msg.reply('Para promover alguém para Admin você deve mencionar um usuário ou responder a mensagem do usuário a ser promovido.');
}
getGroup(msg).then((group) => {
if (!group){
return msg.reply('Você precisa estar em um grupo para isso.');
}
userIsAdmin(group, msg.author).then((isAdmin) => {
if (!isAdmin) {
return msg.reply('Você não é Admin.');
}
userIsAdmin(group, bot.info.wid._serialized).then((botIsAdmin) => {
if (!botIsAdmin){
return msg.reply('O Bot não é Admin.');
}
if (msg.hasQuotedMsg){
msg.getQuotedMessage().then((quotedMsg) => {
let usersToUp = [quotedMsg.author];
group.promoteParticipants(usersToUp);
})
}
if (hasMentions){
msg.getMentions().then((mentionedUsers) => {
var usersToUp = [];
mentionedUsers.forEach((element) => {
usersToUp.push(element.id._serialized);
})
group.promoteParticipants(usersToUp);
})
}
})
})
})
}
const demoteMember = (msg, bot) => {
var hasMentions = msg.getMentions();
if (!hasMentions && !msg.hasQuotedMsg){
return msg.reply('Para rebaixar alguém você deve mencionar um usuário ou responder a mensagem do usuário a ser rebaixado.');
}
getGroup(msg).then((group) => {
if (!group){
return msg.reply('Você precisa estar em um grupo para isso.');
}
userIsAdmin(group, msg.author).then((isAdmin) => {
if (!isAdmin){
return msg.reply('Você não é Admin.');
}
userIsAdmin(group, bot.info.wid._serialized).then((botIsAdmin) => {
if (!botIsAdmin){
return msg.reply('O Bot não é Admin.');
}
if (msg.hasQuotedMsg){
msg.getQuotedMessage().then((quotedMsg) => {
let usersToDown = [quotedMsg.author];
group.demoteParticipants(usersToDown);
})
}
else {
msg.getMentions().then((mentionedUsers) => {
var usersToDown = [];
mentionedUsers.forEach((element) => {
usersToDown.push(element.id._serialized);
})
group.demoteParticipants(usersToDown);
})
}
})
})
})
}
const forwardingScore = (msg) => {
msg.getQuotedMessage().then((quotedMsg) => {
if (!quotedMsg) return msg.reply('Você precisa mencionar uma mensagem.');
var score = quotedMsg.forwardingScore;
if (score === 1){
msg.reply('Essa mensagem foi encaminhada ' + score + ' vez.', undefined);
}
else if (score === 0){
msg.reply('Essa mensagem nunca foi encaminhada', undefined);
}
else {
msg.reply('Essa mensagem foi encaminhada ' + score + ' vezes.', undefined);
}
})
}
const imgSearch = async (msg, bot) => {
var keyWord = msg.body.slice(5);
if (keyWord.length <= 0) {
msg.reply('Você deve usar !img [palavra chave]');
return;
}
try {
const processImageData = async (error, results) => {
if (error) {
msg.reply('Ocorreu um erro. Tente novamente.');
console.log('[Google Image Search] ' + error);
}
else {
var images = []
for (let i = 0; i <= 7; i++) {
images.push(results[i]);
}
var foundImage = images[getRandomInt(7)];
if (foundImage){
try {
foundImage = await MessageMedia.fromUrl(foundImage.url, {
unsafeMime:false
});
msg.reply(foundImage);
} catch (err) {
msg.reply('Ocorreu um erro. Tente novamente.');
console.log('[Google Image Search] ' + err);
}
}
}
}
gis(keyWord, processImageData);
} catch (error) {
let timeStamp = getTimeStamp();
msg.reply('Ocorreu um erro. Tente novamente.');
console.log('\n\n[' + timeStamp + '][Google Image Search] ' + error + '\n\n');
}
}
const update = async (msg) => {
const { exec } = require("child_process");
if(!userIsAdmin(await msg.getChat(), msg.authorId)) return;
exec("git pull", (err) => {
if(err) console.warn(err);
})
}
// -- Ainda em teste
const roletaRussa = async (msg, bot) => {
// iniciar o jogo
bot.sendMessage(msg.from, 'A ROLETA RUSSA COMEÇOU \nEnvie !atirar para testar sua sorte.');
bot.on('message', async message => {
if (message === '!roleta') {
bot.sendMessage(message.from, 'A ROLETA RUSSA ACABOU');
return;
}
else if (message === '!atirar') {
if (getRandomInt(5) === 1) {
// group.removeParticipants(message.author);
bot.sendMessage(message.from, 'Alguma mensagem dizendo que vc morreu + um gif'); //encerrar o jogo aqui
return;
}
else {
message.reply('A arma falhou!');
}
}
});
}
// --
module.exports = { demoteMember, promoteMember, banMember, imgSearch, forwardingScore, update };