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
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
|
import {
BushArgumentType,
BushCache,
BushClient,
BushConstants,
BushMessage,
BushSlashMessage,
BushUser,
Global,
Pronoun,
PronounCode
} from '@lib';
import { exec } from 'child_process';
import {
Argument,
ArgumentTypeCaster,
ClientUtil,
Flag,
ParsedValuePredicate,
TypeResolver,
Util as AkairoUtil
} from 'discord-akairo';
import { APIMessage } from 'discord-api-types';
import {
ColorResolvable,
CommandInteraction,
Constants,
GuildMember,
InteractionReplyOptions,
Message,
MessageActionRow,
MessageButton,
MessageComponentInteraction,
MessageEditOptions,
MessageEmbed,
MessageEmbedOptions,
MessageOptions,
Snowflake,
TextChannel,
ThreadMember,
User,
UserResolvable,
Util as DiscordUtil
} from 'discord.js';
import got from 'got';
import humanizeDuration from 'humanize-duration';
import _ from 'lodash';
import moment from 'moment';
import { inspect, InspectOptions, promisify } from 'util';
import CommandErrorListener from '../../../listeners/commands/commandError';
import { BushNewsChannel } from '../discord.js/BushNewsChannel';
import { BushTextChannel } from '../discord.js/BushTextChannel';
import { BushSlashEditMessageType, BushSlashSendMessageType, BushUserResolvable } from './BushClient';
interface hastebinRes {
key: string;
}
export interface uuidRes {
uuid: string;
username: string;
username_history?: { username: string }[] | null;
textures: {
custom: boolean;
slim: boolean;
skin: {
url: string;
data: string;
};
raw: {
value: string;
signature: string;
};
};
created_at: string;
}
interface MojangProfile {
username: string;
uuid: string;
}
// #region codeblock type
export type CodeBlockLang =
| '1c'
| 'abnf'
| 'accesslog'
| 'actionscript'
| 'ada'
| 'arduino'
| 'ino'
| 'armasm'
| 'arm'
| 'avrasm'
| 'actionscript'
| 'as'
| 'angelscript'
| 'asc'
| 'apache'
| 'apacheconf'
| 'applescript'
| 'osascript'
| 'arcade'
| 'asciidoc'
| 'adoc'
| 'aspectj'
| 'autohotkey'
| 'autoit'
| 'awk'
| 'mawk'
| 'nawk'
| 'gawk'
| 'bash'
| 'sh'
| 'zsh'
| 'basic'
| 'bnf'
| 'brainfuck'
| 'bf'
| 'csharp'
| 'cs'
| 'c'
| 'h'
| 'cpp'
| 'hpp'
| 'cc'
| 'hh'
| 'c++'
| 'h++'
| 'cxx'
| 'hxx'
| 'cal'
| 'cos'
| 'cls'
| 'cmake'
| 'cmake.in'
| 'coq'
| 'csp'
| 'css'
| 'capnproto'
| 'capnp'
| 'clojure'
| 'clj'
| 'coffeescript'
| 'coffee'
| 'cson'
| 'iced'
| 'crmsh'
| 'crm'
| 'pcmk'
| 'crystal'
| 'cr'
| 'd'
| 'dns'
| 'zone'
| 'bind'
| 'dos'
| 'bat'
| 'cmd'
| 'dart'
| 'dpr'
| 'dfm'
| 'pas'
| 'pascal'
| 'diff'
| 'patch'
| 'django'
| 'jinja'
| 'dockerfile'
| 'docker'
| 'dsconfig'
| 'dts'
| 'dust'
| 'dst'
| 'ebnf'
| 'elixir'
| 'elm'
| 'erlang'
| 'erl'
| 'excel'
| 'xls'
| 'xlsx'
| 'fsharp'
| 'fs'
| 'fix'
| 'fortran'
| 'f90'
| 'f95'
| 'gcode'
| 'nc'
| 'gams'
| 'gms'
| 'gauss'
| 'gss'
| 'gherkin'
| 'go'
| 'golang'
| 'golo'
| 'gololang'
| 'gradle'
| 'groovy'
| 'xml'
| 'html'
| 'xhtml'
| 'rss'
| 'atom'
| 'xjb'
| 'xsd'
| 'xsl'
| 'plist'
| 'svg'
| 'http'
| 'https'
| 'haml'
| 'handlebars'
| 'hbs'
| 'html.hbs'
| 'html.handlebars'
| 'haskell'
| 'hs'
| 'haxe'
| 'hx'
| 'hlsl'
| 'hy'
| 'hylang'
| 'ini'
| 'toml'
| 'inform7'
| 'i7'
| 'irpf90'
| 'json'
| 'java'
| 'jsp'
| 'javascript'
| 'js'
| 'jsx'
| 'julia'
| 'julia-repl'
| 'kotlin'
| 'kt'
| 'tex'
| 'leaf'
| 'lasso'
| 'ls'
| 'lassoscript'
| 'less'
| 'ldif'
| 'lisp'
| 'livecodeserver'
| 'livescript'
| 'ls'
| 'lua'
| 'makefile'
| 'mk'
| 'mak'
| 'make'
| 'markdown'
| 'md'
| 'mkdown'
| 'mkd'
| 'mathematica'
| 'mma'
| 'wl'
| 'matlab'
| 'maxima'
| 'mel'
| 'mercury'
| 'mizar'
| 'mojolicious'
| 'monkey'
| 'moonscript'
| 'moon'
| 'n1ql'
| 'nsis'
| 'nginx'
| 'nginxconf'
| 'nim'
| 'nimrod'
| 'nix'
| 'ocaml'
| 'ml'
| 'objectivec'
| 'mm'
| 'objc'
| 'obj-c'
| 'obj-c++'
| 'objective-c++'
| 'glsl'
| 'openscad'
| 'scad'
| 'ruleslanguage'
| 'oxygene'
| 'pf'
| 'pf.conf'
| 'php'
| 'parser3'
| 'perl'
| 'pl'
| 'pm'
| 'plaintext'
| 'txt'
| 'text'
| 'pony'
| 'pgsql'
| 'postgres'
| 'postgresql'
| 'powershell'
| 'ps'
| 'ps1'
| 'processing'
| 'prolog'
| 'properties'
| 'protobuf'
| 'puppet'
| 'pp'
| 'python'
| 'py'
| 'gyp'
| 'profile'
| 'python-repl'
| 'pycon'
| 'k'
| 'kdb'
| 'qml'
| 'r'
| 'reasonml'
| 're'
| 'rib'
| 'rsl'
| 'graph'
| 'instances'
| 'ruby'
| 'rb'
| 'gemspec'
| 'podspec'
| 'thor'
| 'irb'
| 'rust'
| 'rs'
| 'sas'
| 'scss'
| 'sql'
| 'p21'
| 'step'
| 'stp'
| 'scala'
| 'scheme'
| 'scilab'
| 'sci'
| 'shell'
| 'console'
| 'smali'
| 'smalltalk'
| 'st'
| 'sml'
| 'ml'
| 'stan'
| 'stanfuncs'
| 'stata'
| 'stylus'
| 'styl'
| 'subunit'
| 'swift'
| 'tcl'
| 'tk'
| 'tap'
| 'thrift'
| 'tp'
| 'twig'
| 'craftcms'
| 'typescript'
| 'ts'
| 'vbnet'
| 'vb'
| 'vbscript'
| 'vbs'
| 'vhdl'
| 'vala'
| 'verilog'
| 'v'
| 'vim'
| 'axapta'
| 'x++'
| 'x86asm'
| 'xl'
| 'tao'
| 'xquery'
| 'xpath'
| 'xq'
| 'yml'
| 'yaml'
| 'zephir'
| 'zep';
//#endregion
/**
* {@link https://nodejs.org/api/util.html#util_util_inspect_object_options}
*/
export interface BushInspectOptions extends InspectOptions {
/**
* If `true`, object's non-enumerable symbols and properties are included in the
* formatted result. [`WeakMap`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap) and [`WeakSet`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet) entries are also included as well as
* user defined prototype properties (excluding method properties).
*
* **Default**: `false`.
*/
showHidden?: boolean | undefined;
/**
* Specifies the number of times to recurse while formatting `object`. This is useful
* for inspecting large objects. To recurse up to the maximum call stack size pass
* `Infinity` or `null`.
*
* **Default**: `2`.
*/
depth?: number | null | undefined;
/**
* If `true`, the output is styled with ANSI color codes. Colors are customizable. See [Customizing util.inspect colors](https://nodejs.org/api/util.html#util_customizing_util_inspect_colors).
*
* **Default**: `false`.
*/
colors?: boolean | undefined;
/**
* If `false`, `[util.inspect.custom](depth, opts)` functions are not invoked.
*
* **Default**: `true`.
*/
customInspect?: boolean | undefined;
/**
* If `true`, `Proxy` inspection includes the [`target` and `handler`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy#Terminology) objects.
*
* **Default**: `false`.
*/
showProxy?: boolean | undefined;
/**
* Specifies the maximum number of `Array`, [`TypedArray`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray), [`WeakMap`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap) and
* [`WeakSet`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet) elements to include when formatting. Set to `null` or `Infinity` to
* show all elements. Set to `0` or negative to show no elements.
*
* **Default**: `100`.
*/
maxArrayLength?: number | null | undefined;
/**
* Specifies the maximum number of characters to include when formatting. Set to
* `null` or `Infinity` to show all elements. Set to `0` or negative to show no
* characters.
*
* **Default**: `10000`.
*/
maxStringLength?: number | null | undefined;
/**
* The length at which input values are split across multiple lines. Set to
* `Infinity` to format the input as a single line (in combination with compact set
* to `true` or any number >= `1`).
*
* **Default**: `80`.
*/
breakLength?: number | undefined;
/**
* Setting this to `false` causes each object key to be displayed on a new line. It
* will break on new lines in text that is longer than `breakLength`. If set to a
* number, the most `n` inner elements are united on a single line as long as all
* properties fit into `breakLength`. Short array elements are also grouped together.
*
* **Default**: `3`
*/
compact?: boolean | number | undefined;
/**
* If set to `true` or a function, all properties of an object, and `Set` and `Map`
* entries are sorted in the resulting string. If set to `true` the [default sort](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort) is used.
* If set to a function, it is used as a [compare function](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#parameters).
*
* **Default**: `false`.
*/
sorted?: boolean | ((a: string, b: string) => number) | undefined;
/**
* If set to `true`, getters are inspected. If set to `'get'`, only getters without a
* corresponding setter are inspected. If set to `'set'`, only getters with a
* corresponding setter are inspected. This might cause side effects depending on
* the getter function.
*
* **Default**: `false`.
*/
getters?: 'get' | 'set' | boolean | undefined;
}
export class BushClientUtil extends ClientUtil {
/**
* The client.
*/
public declare readonly client: BushClient;
/**
* The hastebin urls used to post to hastebin, attempts to post in order
*/
#hasteURLs: string[] = [
'https://hst.sh',
// 'https://hasteb.in',
'https://hastebin.com',
'https://mystb.in',
'https://haste.clicksminuteper.net',
'https://paste.pythondiscord.com',
'https://haste.unbelievaboat.com'
// 'https://haste.tyman.tech'
];
/**
* Emojis used for {@link BushClientUtil.buttonPaginate}
*/
#paginateEmojis = {
beginning: '853667381335162910',
back: '853667410203770881',
stop: '853667471110570034',
forward: '853667492680564747',
end: '853667514915225640'
};
/**
* A simple promise exec method
*/
#exec = promisify(exec);
/**
* Creates this client util
* @param client The client to initialize with
*/
public constructor(client: BushClient) {
super(client);
}
/**
* Maps an array of user ids to user objects.
* @param ids The list of IDs to map
* @returns The list of users mapped
*/
public async mapIDs(ids: Snowflake[]): Promise<User[]> {
return await Promise.all(ids.map((id) => client.users.fetch(id)));
}
/**
* Capitalizes the first letter of the given text
* @param text The text to capitalize
* @returns The capitalized text
*/
public capitalize(text: string): string {
return text.charAt(0).toUpperCase() + text.slice(1);
}
/**
* Runs a shell command and gives the output
* @param command The shell command to run
* @returns The stdout and stderr of the shell command
*/
public async shell(command: string): Promise<{
stdout: string;
stderr: string;
}> {
return await this.#exec(command);
}
/**
* Posts text to hastebin
* @param content The text to post
* @returns The url of the posted text
*/
public async haste(
content: string,
substr = false
): Promise<{ url?: string; error?: 'content too long' | 'substr' | 'unable to post' }> {
let isSubstr = false;
if (content.length > 400_000 && !substr) {
void this.handleError('haste', new Error(`content over 400,000 characters (${content.length.toLocaleString()})`));
return { error: 'content too long' };
} else if (content.length > 400_000) {
content = content.substr(0, 400_000);
isSubstr = true;
}
for (const url of this.#hasteURLs) {
try {
const res: hastebinRes = await got.post(`${url}/documents`, { body: content }).json();
return { url: `${url}/${res.key}`, error: isSubstr ? 'substr' : undefined };
} catch {
void client.console.error('haste', `Unable to upload haste to ${url}`);
}
}
return { error: 'unable to post' };
}
/**
* Resolves a user-provided string into a user object, if possible
* @param text The text to try and resolve
* @returns The user resolved or null
*/
public async resolveUserAsync(text: string): Promise<User | null> {
const idReg = /\d{17,19}/;
const idMatch = text.match(idReg);
if (idMatch) {
try {
return await client.users.fetch(text as Snowflake);
} catch {
// pass
}
}
const mentionReg = /<@!?(?<id>\d{17,19})>/;
const mentionMatch = text.match(mentionReg);
if (mentionMatch) {
try {
return await client.users.fetch(mentionMatch.groups!.id as Snowflake);
} catch {
// pass
}
}
const user = client.users.cache.find((u) => u.username === text);
if (user) return user;
return null;
}
/**
* Appends the correct ordinal to the given number
* @param n The number to append an ordinal to
* @returns The number with the ordinal
*/
public ordinal(n: number): string {
const s = ['th', 'st', 'nd', 'rd'],
v = n % 100;
return n + (s[(v - 20) % 10] || s[v] || s[0]);
}
/**
* Chunks an array to the specified size
* @param arr The array to chunk
* @param perChunk The amount of items per chunk
* @returns The chunked array
*/
public chunk<T>(arr: T[], perChunk: number): T[][] {
return arr.reduce((all, one, i) => {
const ch: number = Math.floor(i / perChunk);
(all as any[])[ch] = [].concat(all[ch] || [], one as any);
return all;
}, []);
}
/**
* Commonly Used Colors
*/
get colors() {
return client.consts.colors;
}
/**
* Commonly Used Emojis
*/
get emojis() {
return client.consts.emojis;
}
/**
* A simple utility to create and embed with the needed style for the bot
*/
public createEmbed(color?: ColorResolvable, author?: User | GuildMember): MessageEmbed {
if (author instanceof GuildMember) {
author = author.user; // Convert to User if GuildMember
}
let embed = new MessageEmbed().setTimestamp();
if (author)
embed = embed.setAuthor(
author.username,
author.displayAvatarURL({ dynamic: true }),
`https://discord.com/users/${author.id}`
);
if (color) embed = embed.setColor(color);
return embed;
}
public async mcUUID(username: string): Promise<string> {
const apiRes = (await got.get(`https://api.ashcon.app/mojang/v2/user/${username}`).json()) as uuidRes;
return apiRes.uuid.replace(/-/g, '');
}
/**
* Paginates an array of embeds using buttons.
*/
public async buttonPaginate(
message: BushMessage | BushSlashMessage,
embeds: MessageEmbed[] | MessageEmbedOptions[],
text: string | null = null,
deleteOnExit?: boolean,
startOn?: number
): Promise<void> {
const paginateEmojis = this.#paginateEmojis;
if (deleteOnExit === undefined) deleteOnExit = true;
if (embeds.length === 1) {
return this.sendWithDeleteButton(message, { embeds: embeds });
}
embeds.forEach((_e, i) => {
embeds[i] instanceof MessageEmbed
? (embeds[i] as MessageEmbed).setFooter(`Page ${(i + 1).toLocaleString()}/${embeds.length.toLocaleString()}`)
: ((embeds[i] as MessageEmbedOptions).footer = {
text: `Page ${(i + 1).toLocaleString()}/${embeds.length.toLocaleString()}`
});
});
const style = Constants.MessageButtonStyles.PRIMARY;
let curPage = startOn ? startOn - 1 : 0;
if (typeof embeds !== 'object') throw new Error('embeds must be an object');
const msg = (await message.util.reply({
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
content: text || null,
embeds: [embeds[curPage]],
components: [getPaginationRow()]
})) as Message;
const filter = (interaction: MessageComponentInteraction) =>
interaction.customId.startsWith('paginate_') && interaction.message.id === msg.id;
const collector = msg.createMessageComponentCollector({ filter, time: 300000 });
collector.on('collect', async (interaction: MessageComponentInteraction) => {
if (interaction.user.id === message.author.id || client.config.owners.includes(interaction.user.id)) {
switch (interaction.customId) {
case 'paginate_beginning': {
curPage = 0;
await edit(interaction);
break;
}
case 'paginate_back': {
curPage--;
await edit(interaction);
break;
}
case 'paginate_stop': {
if (deleteOnExit) {
await interaction.deferUpdate().catch(() => undefined);
if (msg.deletable && !msg.deleted) {
await msg.delete();
}
} else {
await interaction
?.update({
content: `${text ? `${text}\n` : ''}Command closed by user.`,
embeds: [],
components: []
})
.catch(() => undefined);
}
return;
}
case 'paginate_next': {
curPage++;
await edit(interaction);
break;
}
case 'paginate_end': {
curPage = embeds.length - 1;
await edit(interaction);
break;
}
}
} else {
return await interaction?.deferUpdate().catch(() => undefined);
}
});
collector.on('end', async () => {
await msg
.edit({
content: text,
embeds: [embeds[curPage]],
components: [getPaginationRow(true)]
})
.catch(() => undefined);
});
async function edit(interaction: MessageComponentInteraction): Promise<void> {
return await interaction
?.update({ content: text, embeds: [embeds[curPage]], components: [getPaginationRow()] })
.catch(() => undefined);
}
function getPaginationRow(disableAll = false): MessageActionRow {
return new MessageActionRow().addComponents(
new MessageButton({
style,
customId: 'paginate_beginning',
emoji: paginateEmojis.beginning,
disabled: disableAll || curPage === 0
}),
new MessageButton({
style,
customId: 'paginate_back',
emoji: paginateEmojis.back,
disabled: disableAll || curPage === 0
}),
new MessageButton({
style,
customId: 'paginate_stop',
emoji: paginateEmojis.stop,
disabled: disableAll
}),
new MessageButton({
style,
customId: 'paginate_next',
emoji: paginateEmojis.forward,
disabled: disableAll || curPage === embeds.length - 1
}),
new MessageButton({
style,
customId: 'paginate_end',
emoji: paginateEmojis.end,
disabled: disableAll || curPage === embeds.length - 1
})
);
}
}
/**
* Sends a message with a button for the user to delete it.
*/
public async sendWithDeleteButton(message: BushMessage | BushSlashMessage, options: MessageOptions): Promise<void> {
const paginateEmojis = this.#paginateEmojis;
updateOptions();
const msg = (await message.util.reply(options as MessageOptions & { split?: false })) as Message;
const filter = (interaction: MessageComponentInteraction) =>
interaction.customId == 'paginate__stop' && interaction.message == msg;
const collector = msg.createMessageComponentCollector({ filter, time: 300000 });
collector.on('collect', async (interaction: MessageComponentInteraction) => {
if (interaction.user.id == message.author.id || client.config.owners.includes(interaction.user.id)) {
await interaction.deferUpdate().catch(() => undefined);
if (msg.deletable && !msg.deleted) {
await msg.delete();
}
return;
} else {
return await interaction?.deferUpdate().catch(() => undefined);
}
});
collector.on('end', async () => {
updateOptions(true, true);
await msg.edit(options as MessageEditOptions).catch(() => undefined);
});
function updateOptions(edit?: boolean, disable?: boolean) {
if (edit == undefined) edit = false;
if (disable == undefined) disable = false;
options.components = [
new MessageActionRow().addComponents(
new MessageButton({
style: Constants.MessageButtonStyles.PRIMARY,
customId: 'paginate__stop',
emoji: paginateEmojis.stop,
disabled: disable
})
)
];
if (edit) {
options.reply = undefined;
}
}
}
/**
* Surrounds text in a code block with the specified language and puts it in a hastebin if its too long.
* * Embed Description Limit = 4096 characters
* * Embed Field Limit = 1024 characters
*/
public async codeblock(code: string, length: number, language?: CodeBlockLang, substr = false): Promise<string> {
let hasteOut = '';
code = util.discord.escapeCodeBlock(code);
const prefix = `\`\`\`${language}\n`;
const suffix = '\n```';
language = language ?? 'txt';
if (code.length + (prefix + suffix).length >= length) {
const haste = await this.haste(code, substr);
hasteOut = `Too large to display. ${
haste.url
? `Hastebin: ${haste.url}${haste.error ? ` - ${haste.error}` : ''}`
: `${this.emojis.error} Hastebin: ${haste.error}`
}`;
}
const FormattedHaste = hasteOut.length ? `\n${hasteOut}` : '';
const shortenedCode = hasteOut ? code.substring(0, length - (prefix + FormattedHaste + suffix).length) : code;
const code3 = code.length ? prefix + shortenedCode + suffix + FormattedHaste : prefix + suffix;
if (code3.length > length) {
void client.console.warn(`codeblockError`, `Required Length: ${length}. Actual Length: ${code3.length}`, true);
void client.console.warn(`codeblockError`, code3, true);
throw new Error('code too long');
}
return code3;
}
public inspect(code: any, options?: BushInspectOptions): string {
const {
showHidden: _showHidden = false,
depth: _depth = 2,
colors: _colors = false,
customInspect: _customInspect = true,
showProxy: _showProxy = false,
maxArrayLength: _maxArrayLength = Infinity,
maxStringLength: _maxStringLength = Infinity,
breakLength: _breakLength = 80,
compact: _compact = 3,
sorted: _sorted = false,
getters: _getters = true
} = options ?? {};
const optionsWithDefaults: BushInspectOptions = {
showHidden: _showHidden,
depth: _depth,
colors: _colors,
customInspect: _customInspect,
showProxy: _showProxy,
maxArrayLength: _maxArrayLength,
maxStringLength: _maxStringLength,
breakLength: _breakLength,
compact: _compact,
sorted: _sorted,
getters: _getters
};
return inspect(code, optionsWithDefaults);
}
#mapCredential(old: string): string {
const mapping = {
token: 'Main Token',
devToken: 'Dev Token',
betaToken: 'Beta Token',
hypixelApiKey: 'Hypixel Api Key',
wolframAlphaAppId: 'Wolfram|Alpha App ID',
dbPassword: 'Database Password'
};
return mapping[old as keyof typeof mapping] || old;
}
/**
* Redacts credentials from a string
*/
public redact(text: string) {
for (const credentialName in { ...client.config.credentials, dbPassword: client.config.db.password }) {
const credential = { ...client.config.credentials, dbPassword: client.config.db.password }[
credentialName as keyof typeof client.config.credentials
];
const replacement = this.#mapCredential(credentialName);
const escapeRegex = /[.*+?^${}()|[\]\\]/g;
text = text.replace(new RegExp(credential.toString().replace(escapeRegex, '\\$&'), 'g'), `[${replacement} Omitted]`);
text = text.replace(
new RegExp([...credential.toString()].reverse().join('').replace(escapeRegex, '\\$&'), 'g'),
`[${replacement} Omitted]`
);
}
return text;
}
/**
* Takes an any value, inspects it, redacts credentials and puts it in a codeblock
* (and uploads to hast if the content is too long)
*/
public async inspectCleanRedactCodeblock(
input: any,
language?: CodeBlockLang,
inspectOptions?: BushInspectOptions,
length = 1024
) {
input = typeof input !== 'string' ? this.inspect(input, inspectOptions ?? undefined) : input;
input = this.discord.cleanCodeBlockContent(input);
input = this.redact(input);
return this.codeblock(input, length, language, true);
}
public async inspectCleanRedactHaste(input: any, inspectOptions?: BushInspectOptions) {
input = typeof input !== 'string' ? this.inspect(input, inspectOptions ?? undefined) : input;
input = this.redact(input);
return this.haste(input, true);
}
public inspectAndRedact(input: any, inspectOptions?: BushInspectOptions) {
input = typeof input !== 'string' ? this.inspect(input, inspectOptions ?? undefined) : input;
return this.redact(input);
}
public async slashRespond(
interaction: CommandInteraction,
responseOptions: BushSlashSendMessageType | BushSlashEditMessageType
): Promise<Message | APIMessage | undefined> {
const newResponseOptions = typeof responseOptions === 'string' ? { content: responseOptions } : responseOptions;
if (interaction.replied || interaction.deferred) {
delete (newResponseOptions as InteractionReplyOptions).ephemeral; // Cannot change a preexisting message to be ephemeral
return (await interaction.editReply(newResponseOptions)) as Message | APIMessage;
} else {
await interaction.reply(newResponseOptions);
return await interaction.fetchReply().catch(() => undefined);
}
}
/**
* Gets a a configured channel as a TextChannel
*/
public async getConfigChannel(channel: keyof typeof client['config']['channels']): Promise<TextChannel> {
return (await client.channels.fetch(client.config.channels[channel])) as unknown as TextChannel;
}
/**
* Takes an array and combines the elements using the supplied conjunction.
* @param array The array to combine.
* @param conjunction The conjunction to use.
* @param ifEmpty What to return if the array is empty.
* @returns The combined elements or `ifEmpty`
*
* @example
* const permissions = oxford(['ADMINISTRATOR', 'SEND_MESSAGES', 'MANAGE_MESSAGES'], 'and', 'none');
* console.log(permissions); // ADMINISTRATOR, SEND_MESSAGES and MANAGE_MESSAGES
*/
public oxford(array: string[], conjunction: string, ifEmpty?: string): string | undefined {
const l = array.length;
if (!l) return ifEmpty;
if (l < 2) return array[0];
if (l < 3) return array.join(` ${conjunction} `);
array = array.slice();
array[l - 1] = `${conjunction} ${array[l - 1]}`;
return array.join(', ');
}
public async insertOrRemoveFromGlobal(
action: 'add' | 'remove',
key: keyof typeof BushCache['global'],
value: any
): Promise<Global | void> {
const row =
(await Global.findByPk(client.config.environment)) ?? (await Global.create({ environment: client.config.environment }));
const oldValue: any[] = row[key];
const newValue = this.addOrRemoveFromArray(action, oldValue, value);
row[key] = newValue;
client.cache.global[key] = newValue;
return await row.save().catch((e) => util.handleError('insertOrRemoveFromGlobal', e));
}
/**
* Add or remove an item from an array. All duplicates will be removed.
*/
public addOrRemoveFromArray<T extends any>(action: 'add' | 'remove', array: T[], value: T): T[] {
const set = new Set(array);
action === 'add' ? set.add(value) : set.delete(value);
return [...set];
}
/**
* Surrounds a string to the begging an end of each element in an array.
* @param array - The array you want to surround.
* @param surroundChar1 - The character placed in the beginning of the element.
* @param surroundChar2 - The character placed in the end of the element. Defaults to `surroundChar1`.
*/
public surroundArray(array: string[], surroundChar1: string, surroundChar2?: string): string[] {
return array.map((a) => `${surroundChar1}${a}${surroundChar2 ?? surroundChar1}`);
}
public parseDuration(content: string, remove = true): { duration: number | null; contentWithoutTime: string | null } {
if (!content) return { duration: 0, contentWithoutTime: null };
// eslint-disable-next-line prefer-const
let duration = null;
// Try to reduce false positives by requiring a space before the duration, this makes sure it still matches if it is
// in the beginning of the argument
let contentWithoutTime = ` ${content}`;
for (const unit in BushConstants.TimeUnits) {
const regex = BushConstants.TimeUnits[unit].match;
const match = regex.exec(contentWithoutTime);
const value = Number(match?.groups?.[unit]);
if (!isNaN(value)) (duration as unknown as number) += value * BushConstants.TimeUnits[unit].value;
if (remove) contentWithoutTime = contentWithoutTime.replace(regex, '');
}
// remove the space added earlier
if (contentWithoutTime.startsWith(' ')) contentWithoutTime.replace(' ', '');
return { duration, contentWithoutTime };
}
public humanizeDuration(duration: number, largest?: number): string {
if (largest) return humanizeDuration(duration, { language: 'en', maxDecimalPoints: 2, largest });
else return humanizeDuration(duration, { language: 'en', maxDecimalPoints: 2 });
}
public timestampDuration(duration: number): string {
return `<t:${Math.round(duration / 1000)}:R>`;
}
/**
* **Styles:**
* - **t**: Short Time
* - **T**: Long Time
* - **d**: Short Date
* - **D**: Long Date
* - **f**: Short Date/Time
* - **F**: Long Date/Time
* - **R**: Relative Time
*/
public timestamp<D extends Date | undefined | null>(
date: D,
style: 't' | 'T' | 'd' | 'D' | 'f' | 'F' | 'R' = 'f'
): D extends Date ? string : undefined {
if (!date) return date as unknown as D extends Date ? string : undefined;
return `<t:${Math.round(date.getTime() / 1000)}:${style}>` as unknown as D extends Date ? string : undefined;
}
public dateDelta(date: Date, largest?: number) {
return this.humanizeDuration(moment(date).diff(moment()), largest ?? 3);
}
public async findUUID(player: string): Promise<string> {
try {
const raw = await got.get(`https://api.ashcon.app/mojang/v2/user/${player}`);
let profile: MojangProfile;
if (raw.statusCode == 200) {
profile = JSON.parse(raw.body);
} else {
throw new Error('invalid player');
}
if (raw.statusCode == 200 && profile && profile.uuid) {
return profile.uuid.replace(/-/g, '');
} else {
throw new Error(`Could not fetch the uuid for ${player}.`);
}
} catch (e) {
throw new Error('An error has occurred.');
}
}
public hexToRgb(hex: string): string {
const arrBuff = new ArrayBuffer(4);
const vw = new DataView(arrBuff);
vw.setUint32(0, parseInt(hex, 16), false);
const arrByte = new Uint8Array(arrBuff);
return `${arrByte[1]}, ${arrByte[2]}, ${arrByte[3]}`;
}
/* eslint-disable @typescript-eslint/no-unused-vars */
public async lockdownChannel(options: { channel: BushTextChannel | BushNewsChannel; moderator: BushUserResolvable }) {}
/* eslint-enable @typescript-eslint/no-unused-vars */
public capitalizeFirstLetter(string: string): string {
return string.charAt(0)?.toUpperCase() + string.slice(1);
}
/**
* Wait an amount in seconds.
*/
public async sleep(s: number): Promise<unknown> {
return new Promise((resolve) => setTimeout(resolve, s * 1000));
}
public async handleError(context: string, error: Error) {
await client.console.error(_.camelCase(context), `An error occurred:\n${error?.stack ?? (error as any)}`, false);
await client.console.channelError({
embeds: [await CommandErrorListener.generateErrorEmbed({ type: 'unhandledRejection', error: error, context })]
});
}
public async resolveNonCachedUser(user: UserResolvable | undefined | null): Promise<BushUser | undefined> {
if (!user) return undefined;
const id =
user instanceof User || user instanceof GuildMember || user instanceof ThreadMember
? user.id
: user instanceof Message
? user.author.id
: typeof user === 'string'
? user
: undefined;
if (!id) return undefined;
else return await client.users.fetch(id).catch(() => undefined);
}
public async getPronounsOf(user: User | Snowflake): Promise<Pronoun | undefined> {
const _user = await this.resolveNonCachedUser(user);
if (!_user) throw new Error(`Cannot find user ${user}`);
const apiRes = (await got
.get(`https://pronoundb.org/api/v1/lookup?platform=discord&id=${_user.id}`)
.json()
.catch(() => undefined)) as { pronouns: PronounCode } | undefined;
if (!apiRes) return undefined;
if (!apiRes.pronouns) throw new Error('apiRes.pronouns is undefined');
return client.constants.pronounMapping[apiRes.pronouns];
}
// modified from https://stackoverflow.com/questions/31054910/get-functions-methods-of-a-class
// answer by Bruno Grieder
public getMethods(_obj: any): string {
let props: string[] = [];
let obj: any = new Object(_obj);
do {
const l = Object.getOwnPropertyNames(obj)
.concat(Object.getOwnPropertySymbols(obj).map((s) => s.toString()))
.sort()
.filter(
(p, i, arr) =>
typeof Object.getOwnPropertyDescriptor(obj, p)?.['get'] !== 'function' && // ignore getters
typeof Object.getOwnPropertyDescriptor(obj, p)?.['set'] !== 'function' && // ignore setters
typeof obj[p] === 'function' && //only the methods
p !== 'constructor' && //not the constructor
(i == 0 || p !== arr[i - 1]) && //not overriding in this prototype
props.indexOf(p) === -1 //not overridden in a child
);
const reg = /\(([\s\S]*?)\)/;
props = props.concat(
l.map(
(p) =>
`${obj[p] && obj[p][Symbol.toStringTag] === 'AsyncFunction' ? 'async ' : ''}function ${p}(${
reg.exec(obj[p].toString())?.[1]
? reg
.exec(obj[p].toString())?.[1]
.split(', ')
.map((arg) => arg.split('=')[0].trim())
.join(', ')
: ''
});`
)
);
} while (
(obj = Object.getPrototypeOf(obj)) && //walk-up the prototype chain
Object.getPrototypeOf(obj) //not the the Object prototype methods (hasOwnProperty, etc...)
);
return props.join('\n');
}
/**
* Removes all characters in a string that are either control characters or change the direction of text etc.
*/
public sanitizeWtlAndControl(str: string) {
// eslint-disable-next-line no-control-regex
return str.replace(/[\u0000-\u001F\u007F-\u009F\u200B]/g, '');
}
get arg() {
return class Arg {
/**
* Casts a phrase to this argument's type.
* @param type - The type to cast to.
* @param resolver - The type resolver.
* @param message - Message that called the command.
* @param phrase - Phrase to process.
*/
public static cast(type: BushArgumentType, resolver: TypeResolver, message: Message, phrase: string): Promise<any> {
return Argument.cast(type, resolver, message, phrase);
}
/**
* Creates a type that is the left-to-right composition of the given types.
* If any of the types fails, the entire composition fails.
* @param types - Types to use.
*/
public static compose(...types: BushArgumentType[]): ArgumentTypeCaster {
return Argument.compose(...types);
}
/**
* Creates a type that is the left-to-right composition of the given types.
* If any of the types fails, the composition still continues with the failure passed on.
* @param types - Types to use.
*/
public static composeWithFailure(...types: BushArgumentType[]): ArgumentTypeCaster {
return Argument.composeWithFailure(...types);
}
/**
* Checks if something is null, undefined, or a fail flag.
* @param value - Value to check.
*/
public static isFailure(value: any): value is null | undefined | (Flag & { value: any }) {
return Argument.isFailure(value);
}
/**
* Creates a type from multiple types (product type).
* Only inputs where each type resolves with a non-void value are valid.
* @param types - Types to use.
*/
public static product(...types: BushArgumentType[]): ArgumentTypeCaster {
return Argument.product(...types);
}
/**
* Creates a type where the parsed value must be within a range.
* @param type - The type to use.
* @param min - Minimum value.
* @param max - Maximum value.
* @param inclusive - Whether or not to be inclusive on the upper bound.
*/
public static range(type: BushArgumentType, min: number, max: number, inclusive?: boolean): ArgumentTypeCaster {
return Argument.range(type, min, max, inclusive);
}
/**
* Creates a type that parses as normal but also tags it with some data.
* Result is in an object `{ tag, value }` and wrapped in `Flag.fail` when failed.
* @param type - The type to use.
* @param tag - Tag to add. Defaults to the `type` argument, so useful if it is a string.
*/
public static tagged(type: BushArgumentType, tag?: any): ArgumentTypeCaster {
return Argument.tagged(type, tag);
}
/**
* Creates a type from multiple types (union type).
* The first type that resolves to a non-void value is used.
* Each type will also be tagged using `tagged` with themselves.
* @param types - Types to use.
*/
public static taggedUnion(...types: BushArgumentType[]): ArgumentTypeCaster {
return Argument.taggedUnion(...types);
}
/**
* Creates a type that parses as normal but also tags it with some data and carries the original input.
* Result is in an object `{ tag, input, value }` and wrapped in `Flag.fail` when failed.
* @param type - The type to use.
* @param tag - Tag to add. Defaults to the `type` argument, so useful if it is a string.
*/
public static taggedWithInput(type: BushArgumentType, tag?: any): ArgumentTypeCaster {
return Argument.taggedWithInput(type, tag);
}
/**
* Creates a type from multiple types (union type).
* The first type that resolves to a non-void value is used.
* @param types - Types to use.
*/
public static union(...types: BushArgumentType[]): ArgumentTypeCaster {
return Argument.union(...types);
}
/**
* Creates a type with extra validation.
* If the predicate is not true, the value is considered invalid.
* @param type - The type to use.
* @param predicate - The predicate function.
*/
public static validate(type: BushArgumentType, predicate: ParsedValuePredicate): ArgumentTypeCaster {
return Argument.validate(type, predicate);
}
/**
* Creates a type that parses as normal but also carries the original input.
* Result is in an object `{ input, value }` and wrapped in `Flag.fail` when failed.
* @param type - The type to use.
*/
public static withInput(type: BushArgumentType): ArgumentTypeCaster {
return Argument.withInput(type);
}
};
}
/**
* Discord.js's Util class
*/
get discord() {
return DiscordUtil;
}
/**
* discord-akairo's Util class
*/
get akairo() {
return AkairoUtil;
}
}
|