-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy-commands.js
870 lines (869 loc) · 24.6 KB
/
deploy-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
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
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
const { REST, Routes } = require('discord.js');
const { clientId, token, guildId } = require('./config.json');
const fs = require('node:fs');
const path = require('node:path');
//
const commands = [
{
"name": "actions",
"description": "Perform moderation actions on users",
"dm_permission": "false",
options: [
{
"name": "target",
"description": "User to moderate",
"type": 6,
"required": "true"
},
{
"name": "reason",
"description": "Reason of the moderation",
"type": 3,
"max_length": 200,
"required": "false"
}
]
},
{
"name": "announce",
"description": "Send an Announcement through the bot",
"dm_permission": "false",
options: [
{
"name": "channel",
"description": "Announcement Channel",
"type": 7,
"required": "false"
},
{
"name": "mention",
"description": "Role/Member to mention",
"type": 9,
"required": "false"
},
]
},
{
"name": "avatar",
"description": "Get the avatar of a selected user, or your own avatar",
"dm_permission": "true",
"integration_types": [0, 1],
"contexts": [0, 1, 2],
options : [
{
"name": "user",
"description": "the user's avatar to show",
"type": 6,
"required": "false"
}
]
},
{
"name": "ban",
"description": "Ban a Member",
"dm_permission": "false",
options: [
{
"name": "target",
"description": "Member to Ban",
"type": 6,
"required": "true"
},
{
"name": "reason",
"description": "Ban Reason",
"type": 3,
"max_length": 200,
"required": "false"
}
]
},
{
"name": "channel",
"description": "Get information about a channel",
"dm_permission": "false",
options: [
{
"name": "channel",
"description": "The channel to get information about",
"type": 7,
"required": "true"
}
]
},
{
"name": "deafen",
"description": "Deafen a Member",
"dm_permission": "false",
options: [
{
"name": "target",
"description": "Member to deafen",
"type": 6,
"required": "true"
},
{
"name": "reason",
"description": "Deafen reason",
"type": 3,
"max_length": 200,
"required": "false"
}
]
},
{
"name": "disconnect",
"description": "Disconnect a Member from a Voice Channel",
"dm_permission": "false",
options: [
{
"name": "target",
"description": "Member to disconnect",
"type": 6,
"required": "true"
},
{
"name": "reason",
"description": "Disconnect reason",
"type": 3,
"max_length": 200,
"required": "false"
}
]
},
{
"name": "embed",
"description": "Create an embed with text and settings decided by you",
"dm_permission": "false",
options: [
{
"name": "color",
"description": "Select the embed color",
"type": 3,
"required": "false",
choices: [
{
"name": "Pink",
"type": 3,
"value": "pink"
},
{
"name": "Red",
"type": 3,
"value": "red"
},
{
"name": "Orange",
"type": 3,
"value": "orange"
},
{
"name": "Yellow",
"type": 3,
"value": "yellow"
},
{
"name": "Green",
"type": 3,
"value": "green"
},
{
"name": "Blue",
"type": 3,
"value": "blue"
},
{
"name": "Purple",
"type": 3,
"value": "purple"
},
{
"name": "White",
"type": 3,
"value": "white"
},
{
"name": "Black",
"type": 3,
"value": "black"
}
]
},
{
"name": "footericon",
"description": "Should we add your avatar as footericon?",
"type": 5,
"required": "false"
},
{
"name": "image",
"description": "Upload an image for the embed",
"type": 11,
"required": "false"
}
]
},
{
"name": "faq",
"description": "USF Bot Frequently Asked Questions",
"dm_permission": "true",
"integration_types": [0, 1],
"contexts": [0, 1, 2]
},
{
"name": "help",
"description": "Get commands and info about the bot",
"dm_permission": "true",
"integration_types": [0, 1],
"contexts": [0, 1, 2]
},
{
"name": "highlow",
"description": "Play a game of highlow",
"dm_permission": "false",
"integration_types": [0, 1],
"contexts": [0, 1, 2],
},
{
"name": "info",
"description": "Get informations about the bot",
"dm_permission": "true",
"integration_types": [0, 1],
"contexts": [0, 1, 2]
},
{
"name": "invite",
"description": "Invite the Bot to your servers!",
"dm_permission": "true",
"integration_types": [0, 1],
"contexts": [0, 1, 2]
},
{
"name": "kick",
"description": "Select and kick a member from the server",
"dm_permission": "false",
options: [
{
"name": "target",
"description": "The member to kick",
"type": 6,
"required": "true"
},
{
"name": "reason",
"description": "Kick reason",
"type": 3,
"max_length": 200,
"required": "false"
}
]
},
{
"name": "lock",
"description": "Lock a channel and post an embed with the reason",
"dm_permission": "false",
options: [
{
"name": "channel",
"description": "Channel to lock",
"type": 7,
"required": "false"
},
{
"name": "reason",
"description": "Reason of the lock",
"type": 3,
"max_length": 200,
"required": "false"
}
]
},
{
"name": "mcstatus",
"description": "Get the status of a Java, Bedrock or Education Edition Minecraft Server",
"dm_permission": "false",
options: [
{
"name": "address",
"description": "IP address of the Minecraft server (without port)",
"type": 3,
"required": "true"
}
]
},
{
"name": "meme",
"description": "Generate a random meme",
"dm_permission": "false"
},
{
"name": "modnick",
"description": "Moderate an user nickname",
"dm_permission": "false",
options: [
{
"name": "user",
"description": "User to moderate the nickname of",
"type": 6,
"required": "true"
},
{
"name": "reason",
"description": "Moderation Reason",
"type": 3,
"max_length": 200,
"required": "false"
},
{
"name": "notify",
"description": "Should the bot notify the user via this chat?",
"type": 5,
"required": "false"
}
]
},
{
"name": "move",
"description": "Move a Member to another Voice Channel",
"dm_permission": "false",
options: [
{
"name": "target",
"description": "Member to move",
"type": 6,
"required": "true"
},
{
"name": "channel",
"description": "Channel where to move the Member",
"type": 7,
"required": "true"
},
{
"name": "reason",
"description": "Move reason",
"type": 3,
"max_length": 200,
"required": "false"
}
]
},
{
"name": "ping",
"description": "Return the ping of the bot",
"dm_permission": "true",
"integration_types": [0, 1],
"contexts": [0, 1, 2]
},
{
"name": "poll",
"description": "Create a poll in the server, max 10 options",
"dm_permission": "false",
options: [
{
"name": "message",
"description": "Poll Message",
"type": 3,
"required": "true"
},
{
"name": "option1",
"description": "Option 1",
"type": 3,
"required": "true"
},
{
"name": "option2",
"description": "Option 2",
"type": 3,
"required": "true"
},
{
"name": "option3",
"description": "Option 3",
"type": 3,
"required": "false"
},
{
"name": "option4",
"description": "Option 4",
"type": 3,
"required": "false"
},
{
"name": "option5",
"description": "Option 5",
"type": 3,
"required": "false"
},
{
"name": "option6",
"description": "Option 6",
"type": 3,
"required": "false"
},
{
"name": "option7",
"description": "Option 7",
"type": 3,
"required": "false"
},
{
"name": "option8",
"description": "Option 8",
"type": 3,
"required": "false"
},
{
"name": "option9",
"description": "Option 9",
"type": 3,
"required": "false"
},
{
"name": "option10",
"description": "Option 10",
"type": 3,
"required": "false"
}
]
},
{
"name": "prune",
"description": "Prune messages in a channel, up to 200",
"dm_permission": "false",
options: [
{
"name": "amount",
"description": "Amount of messages to prune",
"type": 4,
"required": "true"
}
]
},
{
"name": "report",
"description": "Report an user or something wrong with the bot",
"dm_permission": "true",
"integration_types": [0, 1],
"contexts": [0, 1, 2],
options: [
{
"name": "type",
"description": "What are you reporting? choose an option",
"type": 3,
"required": "true",
choices: [
{
"name": "Discord User",
"type": 3,
"value": "user"
},
{
"name": "Bot Issue/Bug",
"type": 3,
"value": "bot"
}
]
},
{
"name": "description",
"description": "Informations about your report",
"type": 3,
"required": "true"
},
{
"name": "proof",
"description": "Proof about your report",
"type": 11,
"required": "false"
}
]
},
{
"name": "role",
"description": "Get Role Informations",
"dm_permission": "false",
options: [
{
"name": "target",
"description": "Target Role to check",
"type": 8,
"required": "true"
}
]
},
{
"name": "rps",
"description": "Play Rock Paper Scissors with the bot",
"dm_permission": "false",
"integration_types": [0, 1],
"contexts": [0, 1, 2]
},
{
"name": "say",
"description": "Say something in chat through the bot",
"dm_permission": "false",
"integration_types": [0, 1],
"contexts": [0, 1, 2]
},
{
"name": "search",
"description": "Generate Search Links",
"dm_permission": "true",
"integration_types": [0, 1],
"contexts": [0, 1, 2],
options: [
{
"name": "text",
"description": "Search that for you",
"type": 3,
"max_length": 100,
"required": "true"
}
]
},
{
"name": "server",
"description": "Display info about this server",
"dm_permission": "false"
},
{
"name": "setnick",
"description": "Set the nickname of an user",
"dm_permission": "false",
options: [
{
"name": "target",
"description": "User to change the name of",
"type": 6,
"required": "true"
},
{
"name": "new-nickname",
"description": "The nickname to set to the user",
"type": 3,
"required": "true"
},
{
"name": "reason",
"description": "Moderation Reason",
"type": 3,
"max_length": 200,
"required": "false"
},
{
"name": "notify",
"description": "Should the bot notify the user via this chat?",
"type": 5,
"required": "false"
}
]
},
{
"name": "suggestion",
"description": "Suggest Commands or Functions for the Bot",
"dm_permission": "true",
"integration_types": [0, 1],
"contexts": [0, 1, 2],
options: [
{
"name": "type",
"description": "Suggestion Type",
"type": 3,
"required": "true",
choices: [
{
"name": "Add Command",
"type": 3,
"value": "addCmd"
},
{
"name": "Update Command",
"type": 3,
"value": "updateCmd"
},
{
"name": "Add Function",
"type": 3,
"value": "addFunc"
},
{
"name": "Update Function",
"type": 3,
"value": "updateFunc"
}
]
},
{
"name": "description",
"description": "Describe in detail what you want to add/change",
"type": 3,
"required": "true"
}
]
},
{
"name": "timeout",
"description": "Timeout a guild member",
"dm_permission": "false",
options: [
{
"name": "target",
"description": "Member to timeout",
"type": 6,
"required": "true"
},
{
"name": "duration",
"description": "Duration of the timeout",
"type": 3,
"required": "true"
},
{
"name": "reason",
"description": "Reason of the timeout",
"type": 3,
"max_length": 200,
"required": "false"
}
]
},
{
"name": "timestamp",
"description": "Generate your timestamp",
"dm_permission": "true",
"integration_types": [0, 1],
"contexts": [0, 1, 2],
options : [
{
"name": "type",
"description": "Type of the timestamp",
"type": 3,
"required": "true",
choices : [
{"name": 'Short Time', "type": 3, "value": '1'},
{"name": 'Long Time', "type": 3, "value": '2'},
{"name": 'Short Date', "type": 3, "value": '3'},
{"name": 'Long Date', "type": 3, "value": '4'},
{"name": 'Long Date with Short Time', "type": 3, value: '5'},
{"name": 'Long Date with day of the week and short time', "type": 3, "value": '6'},
{"name": 'Relative', "type": 3, "value": '7'}
]
},
{
"name": "year",
"description": "Year of the timestamp",
"type": 4,
"required": "true"
},
{
"name": "month",
"description": "Month of the timestamp",
"type": 4,
"required": "true"
},
{
"name": "day",
"description": "Day of the timestamp",
"type": 4,
"required": "true"
},
{
"name": "hour",
"description": "Hour of the timestamp",
"type": 4,
"required": "false"
},
{
"name": "minute",
"description": "Minute of the timestamp",
"type": 4,
"required": "false"
},
]
},
{
"name": "unban",
"description": "Unban an user from the server",
"dm_permission": "false",
options: [
{
"name": "target",
"description": "Target user of the moderation",
"type": 6,
"required": "true"
},
{
"name": "reason",
"description": "Reason of the moderation",
"type": 3,
"max_length": 200,
"required": "false"
}
]
},
{
"name": "undeafen",
"description": "Undeafen a Member",
"dm_permission": "false",
options: [
{
"name": "target",
"description": "Member to undeafen",
"type": 6,
"required": "true"
},
{
"name": "reason",
"description": "Undeafen reason",
"type": 3,
"max_length": 200,
"required": "false"
}
]
},
{
"name": "unlock",
"description": "Unlock a channel and post an embed with the reason",
"dm_permission": "false",
options: [
{
"name": "channel",
"description": "Channel to unlock",
"type": 7,
"required": "false"
},
{
"name": "reason",
"description": "Reason of the unlock",
"type": 3,
"max_length": 200,
"required": "false"
}
]
},
{
"name": "unmute",
"description": "Unmute a Member",
"dm_permission": "false",
options: [
{
"name": "target",
"description": "Member to unmute",
"type": 6,
"required": "true"
},
{
"name": "reason",
"description": "Unmute reason",
"type": 3,
"max_length": 200,
"required": "false"
}
]
},
{
"name": "user",
"description": "Get informations about an user",
"dm_permission": "true",
"integration_types": [0, 1],
"contexts": [0, 1, 2],
options: [
{
"name": "target",
"description": "User you want to view",
"type": 6,
"required": "false"
}
]
},
{
"name": "vmute",
"description": "Voice Mute a Member",
"dm_permission": "false",
options: [
{
"name": "target",
"description": "Member to voice mute",
"type": 6,
"required": "true"
},
{
"name": "reason",
"description": "voice mute reason",
"type": 3,
"max_length": 200,
"required": "false"
}
]
},
{
"name": "vunmute",
"description": "Voice Unmute a Member",
"dm_permission": "false",
options: [
{
"name": "target",
"description": "Member to voice unmute",
"type": 6,
"required": "true"
},
{
"name": "reason",
"description": "voice unmute reason",
"type": 3,
"max_length": 200,
"required": "false"
}
]
}
];
console.log(commands);
const usfcmds = [
{
"name": "leave",
"description": "Leaves a Guild",
"dm_permission": "false",
options: [
{
"name": "guildid",
"description": "ID of the Guild",
"type": 3,
"required": "true"
}
]
}
];
const commandsPath = path.join(__dirname, 'src');
const commandFiles = fs.readdirSync(commandsPath).filter(file => file.endsWith('.js'));
//
for (const file of commandFiles) {
const command = require(`./src/commands/${file}`);
commands.push(command.data.toJSON());
}
const rest = new REST({ version: '10' }).setToken(token);
(async () => {
try {
console.log(`Started refreshing ${commands.length} application (/) commands.`);
const data = await rest.put(
Routes.applicationCommands(clientId),
{ body: commands },
);
console.log(`Successfully reloaded ${data.length} application (/) commands.`);
} catch (error) {
console.error(error);
}
})();
(async () => {
try {
console.log(`Started refreshing ${usfcmds.length} guild application (/) commands.`);
const data2 = await rest.put(
Routes.applicationGuildCommands(clientId, guildId),
{ body: usfcmds },
);
console.log(`Successfully reloaded ${data2.length} guild application (/) commands.`);
} catch (error) {
console.error(error);
}
})();