-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathcommands.js
482 lines (408 loc) · 15 KB
/
commands.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
'use strict';
const config = require('./config.json');
const commandHelp = require('./help.js');
const tool = require('./tool.js');
const rp = require('request-promise');
const stripIndent = require('strip-indent');
const os = require('os');
module.exports = {
'ban': ban,
'choose': choose,
'debug': debug,
'prune': prune,
'cles': cles,
'exemple_embed': exemple_embed,
'exemple_perm': exemple_perm,
}
function debug(msg, bot){
let upTime = Math.round(os.uptime());
let upTime1 = Math.round(process.uptime());
console.log('Le Bot a charger le panel [ debug ]');
console.log('--------------------------------------');
let upTimeSeconds2 = upTime1;
let upTimeOutput2 = "";
if (upTime<60) {
upTimeOutput2 = `${upTime1}s`;
} else if (upTime1<3600) {
upTimeOutput2 = `${Math.floor(upTime1/60)}m ${upTime1%60}s`;
} else if (upTime1<86400) {
upTimeOutput2 = `${Math.floor(upTime1/3600)}h ${Math.floor(upTime1%3600/60)}m ${upTime1%3600%60}s`;
} else if (upTime1<604800) {
upTimeOutput2 = `${Math.floor(upTime1/86400)}d ${Math.floor(upTime1%86400/3600)}h ${Math.floor(upTime1%86400%3600/60)}m ${upTime%86400%3600%60}s`;
}
let upTimeSeconds = upTime;
let upTimeOutput = "";
if (upTime<60) {
upTimeOutput = `${upTime}s`;
} else if (upTime<3600) {
upTimeOutput = `${Math.floor(upTime/60)}m ${upTime%60}s`;
} else if (upTime<86400) {
upTimeOutput = `${Math.floor(upTime/3600)}h ${Math.floor(upTime%3600/60)}m ${upTime%3600%60}s`;
} else if (upTime<604800) {
upTimeOutput = `${Math.floor(upTime/86400)}d ${Math.floor(upTime%86400/3600)}h ${Math.floor(upTime%86400%3600/60)}m ${upTime%86400%3600%60}s`;
}
let embed_fields = [{
name: "Info système:",
value: `${process.platform}-${process.arch} with ${process.release.name} version ${process.version.slice(1)}`,
inline: true
},
{
name: "Info sur le processus: PID",
value: `${process.pid}`,
inline: true
},
{
name: "Traitement de la mémoire:",
value: `${Math.ceil(process.memoryUsage().heapTotal / 1000000)} MB`,
inline: true
},
{
name: "Utilisation de la mémoire système RAM:",
value: `${Math.ceil((os.totalmem() - os.freemem()) / 1000000)} of ${Math.ceil(os.totalmem() / 1000000)} MB`,
inline: true
},
{
name: "Démarrer depuis:",
value: `:clock12: ${upTimeOutput}`,
inline: true
},
{
name: "Temps de disponibilité:",
value: `:clock1230: ${upTimeOutput2}`,
inline: true
},{
name: 'Lib',
value: `**Discord.js**`
}
];
msg.channel.send({
embed: {
author: {
name: msg.author.username,
icon_url: msg.author.avatarUrl,
url:'http://google.fr'
},
color: 0x00FF00,
fields: embed_fields
}
});
}
function help(msg) {
let args = msg.content.split(/\s+/).slice(1);
let helpStr;
if (args.length == 1) {
if (args[0].charAt(0) == config.prefix)
args[0] = args[0].slice(1);
helpStr = commandHelp[args[0]];
}
if (helpStr)
msg.channel.send(helpStr, {
'code': 'css'
});
else
msg.channel.send(stripIndent(
`
Deploiement du [ panel d'aide ] !!
`
), {
'code': 'css'
});
}
function exemple_embed(msg) {
let args = msg.content.split(/\s+/).slice(1);
let helpStr;
if (args.length == 1) {
if (args[0].charAt(0) == config.prefix)
args[0] = args[0].slice(1);
helpStr = commandHelp[args[0]];
}
if (helpStr)
msg.channel.send(helpStr, {
'code': 'js'
});
else
msg.channel.send(stripIndent(
`
const embed = new Discord.RichEmbed()
.setColor(0x00AE86)
/*
* Vous pouvez également utiliser "# 00AE86", [0, 174, 134] ou un nombre entier.
*/
.setTitle("Ceci est votre titre, il peut contenir 256 caractères")
.addField("Texte de titre en gras","Texte de sous-titre")
.setAuthor("Author Name", "https://le lien de votre image.png")
.setDescription("Ceci est le corps principal du texte, il peut contenir 2048 caractères.")
.setFooter("Ceci est le texte du pied de page, il peut contenir 2048 caractères", "http://votre image.png")
.setImage("http://votre image.png")
.setThumbnail("http://votre image.png")
.setTimestamp()
.setURL("https://discord.js.org/#/docs/main/indev/class/RichEmbed")
/*
* Les champs en ligne peuvent ne pas s'afficher en ligne si la vignette et / ou l'image sont trop grandes.
*/
.addField("Inline Field", "Ils peuvent aussi être en ligne.", true)
.addBlankField(true)
message.channel.send({embed});
`
), {
'code': 'js'
});
}
function cles(msg) {
let args = msg.content.split(/\s+/).slice(1);
let helpStr;
if (args.length == 1) {
if (args[0].charAt(0) == config.prefix)
args[0] = args[0].slice(1);
helpStr = commandHelp[args[0]];
}
if (helpStr)
msg.channel.send(helpStr, {
'code': 'css'
});
else
msg.channel.send(stripIndent(
`
[Aide Mots-cles]
#_Les_mots_cles
Comment vas-tu nanozik ? #_Le_Bot_vous_repondra
Comment vas-tu ? #_Le_Bot_vous_repondra
Bonjour a tous #_Le_Bot_vous_repondra
Yo les thug !! #_Le_Bot_vous_repondra
Je t'emmerde #_Le_Bot_vous_repondra
OKLM #_Le_Bot_vous_repondra
TKT #_Le_Bot_vous_repondra
Bjr #_Le_Bot_vous_repondra
Yo #_Le_Bot_vous_repondra
A+ #_Le_Bot_vous_repondra
Tg #_Le_Bot_vous_repondra
Boot #_Le_Bot_vous_donneras_le_lien_du_site
Dstat #_Le_Bot_vous_donne_un_Dstat_de_NanoCorp
Booter #_Le_Bot_vous_donneras_le_lien_du_site
Nanocorp #_Le_Bot_vous_donneras_le_lien_du_site
Nanobot #_Le_Bot_vous_envoi_une_invitation
`
), {
'code': 'css'
});
console.log('Le Bot a charger le panel de mots-clés');
console.log("--------------------------------------");
}
function vide(msg) {
let args = msg.content.split(/\s+/).slice(1);
let helpStr;
if (args.length == 1) {
if (args[0].charAt(0) == config.prefix)
args[0] = args[0].slice(1);
helpStr = commandHelp[args[0]];
}
if (helpStr)
msg.channel.send(helpStr, {
'css': 'css'
});
else
msg.channel.send(stripIndent(
`
{VIDE}
`
), {
'css': 'css'
});
console.log('Le Bot a charger le panel de mots-clés');
console.log("--------------------------------------");
}
function exemple_perm(msg) {
let args = msg.content.split(/\s+/).slice(1);
let helpStr;
if (args.length == 1) {
if (args[0].charAt(0) == config.prefix)
args[0] = args[0].slice(1);
helpStr = commandHelp[args[0]];
}
if (helpStr)
msg.channel.send(helpStr, {
'code': 'css'
});
else
msg.channel.send(stripIndent(
`
[ Liste des permissions ]:
General: {
CREATE_INSTANT_INVITE
KICK_MEMBERS
BAN_MEMBERS
ADMINISTRATOR
MANAGE_CHANNELS
MANAGE_GUILD
CHANGE_NICKNAME
MANAGE_NICKNAMES
MANAGE_ROLES
MANAGE_WEBHOOKS
MANAGE_EMOJIS
}
Text: {
READ_MESSAGES
SEND_MESSAGES
SEND_TTS_MESSAGES
MANAGE_MESSAGES
EMBED_LINKS
ATTACH_FILES
READ_MESSAGE_HISTORY
MENTION_EVERYONE
EXTERNAL_EMOTES
ADD_REACTIONS
}
Voice: {
CONNECT
SPEAK
MUTE_MEMBERS
DEAFEN_MEMBERS
MOVE_MEMBERS
USE_VAD
}
`
), {
'code': 'css'
});
console.log('Le Bot a charger le panel de mots-clés');
console.log("--------------------------------------");
}
function ban(msg) {
if (!msg.member.hasPermission('BAN_MEMBERS')) {
return msg.channel.send(`Vous n'avez pas la permissions de ban !`);
}
let memberToBan = msg.mentions.members.first();
if (memberToBan && memberToBan.bannable && (msg.member.highestRole.calculatedPosition >
memberToBan.highestRole.calculatedPosition || msg.guild.ownerID == msg.author.id)) {
// options a definir !ban @player --reason la raison --days le nombre de jours par default 0
let reason = tool.parseOptionArg('reson', msg.content);
let days = parseInt(tool.parseOptionArg('jours', msg.content));
let banOptions = {
days: days ? days : 0,
reason: reason ? reason : 'none'
};
memberToBan.ban(banOptions);
}
console.log('Le Bot a charger le panel de [ bannissement ]');
console.log("--------------------------------------");
}
function choose(msg){
let args = msg.content.split('|'); //!choose ce qie ke veux | le
args[0] = args[0].slice(8);
let choices = args.filter(arg => {
return arg.trim() != '';
});
if(choices.length >= 1){
msg.channel.send(choices[tool.randint(choices.length)]);
}
else{
msg.channel.send(`Merci de mettre plusieurs choix`)
}
}
function prune(msg){
if (!msg.member.hasPermissions('MANAGE_MESSAGES'))
return msg.channel.send('Vous n\'avez pas la permissions de supprimer les messages ');
let args = msg.content.split(/\s+/);
let amount;
if(args.length > 1){
amount = parseInt(args[1]);
}else {
msg.content = '!aide supr';
return help(msg);
}
if(amount < 1 || amount > 500)
return msg.channel.send(`Donner moi un montant de message a supprimer entre 1 et 500`);
let options = tool.parseOptions(msg.content);
let botOption = options.long.includes('bots');
let userOption = options.long.includes('user');
let filterOption = options.long.includes('filter');
let silentOption = options.short.includes('s') || options.long.includes('silent');
let pinOption = options.short.includes('p') || options.long.includes('pinned');
let name;
let nickname;
let stringToFilter;
if (amount) {
try {
if (userOption) {
name = tool.parseOptionArg('user', msg.content);// !prune 10 --user
if (!name)
throw 'args';
}
if (filterOption) {
stringToFilter = tool.parseOptionArg('filter', msg.content);
if (!stringToFilter)
throw 'args';
}
processAmount(amount, 0);
} catch (err) {
if (err.message == 'err')
msg.channel.send(`Desoler, je ne peut pas supprimer vos message. `);
else //err.message == 'args'
msg.channel.send(`Syntax invalide. Faite ${tool.wrap('!aide supr')}.`)
}
}
function processAmount(amount, prunedAmount) {
let fetchAmount;
if (amount > 100)
fetchAmount = 100;
else if (amount > 1)
fetchAmount = amount;
else
fetchAmount = 2;
msg.channel.fetchMessages({
limit: fetchAmount,
before: msg.id
}).then(msgs => {
if (amount == 1)
msgs.delete(msgs.lastKey());
amount -= 100;
if (options.long.length > 0 || options.short.length > 0) {
msgs = msgs.filter(msg => {
if (msg.member.nickname) {
nickname = msg.member.nickname.toLowerCase();
}
let botPass = botOption ? msg.author.bot : true;
let userPass = userOption ? msg.author.username.toLowerCase() ==
name || nickname == name : true;
let filterPass = filterOption ? msg.content.toLowerCase()
.indexOf(stringToFilter) >= 0 : true;
let pinnedPass = pinOption ? !msg.pinned : true;
return botPass && userPass && filterPass &&
pinnedPass;
});
}
if (msgs.size >= 2) {
msg.channel.bulkDelete(msgs, true).then(deleted => {
nextCall(deleted.size);
}).catch(() => {
//all messages that were to be bulk deleted are older than 2 weeks
nextCall(0);
});
} else if (msgs.size == 1) {
msgs.first().delete().then(deleted => {
nextCall(1);
});
} else {
nextCall(0);
}
}).catch(err => {
throw 'err';
});
function nextCall(deletedSize) {
prunedAmount += deletedSize;
if (amount > 0) {
setTimeout(() => {
processAmount(amount, prunedAmount);
}, 1000);
} else {
if (silentOption) {
msg.delete();
} else {
msg.channel.send(` ${tool.wrap(prunedAmount)} messages supprimer.`);
}
}
}
}
console.log('Le Bot a [ Supprimer des messages ]');
console.log("--------------------------------------");
}