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
|
/* eslint-disable @typescript-eslint/no-explicit-any */
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
import {
BushCache,
BushClient,
BushConstants,
BushGuildMember,
BushGuildMemberResolvable,
BushGuildResolvable,
BushMessage,
BushSlashMessage,
Global,
Guild,
ModLog,
ModLogType
} from '@lib';
import { exec } from 'child_process';
import { ClientUtil } from 'discord-akairo';
import { APIMessage } from 'discord-api-types';
import {
ButtonInteraction,
ColorResolvable,
CommandInteraction,
Constants,
GuildMember,
Message,
MessageActionRow,
MessageButton,
MessageComponentInteraction,
MessageEditOptions,
MessageEmbed,
MessageOptions,
Snowflake,
TextChannel,
User,
Util
} from 'discord.js';
import got from 'got';
import humanizeDuration from 'humanize-duration';
import moment from 'moment';
import { inspect, InspectOptions, promisify } from 'util';
import { ActivePunishment, ActivePunishmentType } from '../../models/ActivePunishment';
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 bushColors {
default: '#1FD8F1';
error: '#EF4947';
warn: '#FEBA12';
success: '#3BB681';
info: '#3B78FF';
red: '#ff0000';
blue: '#0055ff';
aqua: '#00bbff';
purple: '#8400ff';
blurple: '#5440cd';
pink: '#ff00e6';
green: '#00ff1e';
darkGreen: '#008f11';
gold: '#b59400';
yellow: '#ffff00';
white: '#ffffff';
gray: '#a6a6a6';
lightGray: '#cfcfcf';
darkGray: '#7a7a7a';
black: '#000000';
orange: '#E86100';
}
interface MojangProfile {
username: string;
uuid: string;
}
export class BushClientUtil extends ClientUtil {
/** The client of this ClientUtil */
public declare readonly client: BushClient;
/** The hastebin urls used to post to hastebin, attempts to post in order */
public 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'
];
public paginateEmojis = {
beginning: '853667381335162910',
back: '853667410203770881',
stop: '853667471110570034',
forward: '853667492680564747',
end: '853667514915225640'
};
/** A simple promise exec method */
private 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): Promise<string> {
for (const url of this.hasteURLs) {
try {
const res: hastebinRes = await got.post(`${url}/documents`, { body: content }).json();
return `${url}/${res.key}`;
} catch {
void client.console.error('Haste', `Unable to upload haste to ${url}`);
}
}
return '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 = Math.floor(i / perChunk);
all[ch] = [].concat(all[ch] || [], one);
return all;
}, []);
}
/** Commonly Used Colors */
public colors: bushColors = {
default: '#1FD8F1',
error: '#EF4947',
warn: '#FEBA12',
success: '#3BB681',
info: '#3B78FF',
red: '#ff0000',
blue: '#0055ff',
aqua: '#00bbff',
purple: '#8400ff',
blurple: '#5440cd',
pink: '#ff00e6',
green: '#00ff1e',
darkGreen: '#008f11',
gold: '#b59400',
yellow: '#ffff00',
white: '#ffffff',
gray: '#a6a6a6',
lightGray: '#cfcfcf',
darkGray: '#7a7a7a',
black: '#000000',
orange: '#E86100'
};
/** Commonly Used Emojis */
public emojis = {
success: '<:checkmark:837109864101707807>',
warn: '<:warn:848726900876247050>',
error: '<:error:837123021016924261>',
successFull: '<:checkmark_full:850118767576088646>',
warnFull: '<:warn_full:850118767391539312>',
errorFull: '<:error_full:850118767295201350>',
mad: '<:mad:783046135392239626>',
join: '<:join:850198029809614858>',
leave: '<:leave:850198048205307919>',
loading: '<a:Loading:853419254619963392>'
};
/**
* 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[],
text: string | null = null,
deleteOnExit?: boolean
): 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] = embeds[i].setFooter(`Page ${i + 1}/${embeds.length}`);
});
const style = Constants.MessageButtonStyles.PRIMARY;
let curPage = 0;
if (typeof embeds !== 'object') throw 'embeds must be an object';
const msg: Message = await message.util.reply({
content: text || null,
embeds: [embeds[curPage]],
components: [getPaginationRow()]
});
const filter = (interaction: ButtonInteraction) =>
interaction.customId.startsWith('paginate_') && 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)) {
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 });
const filter = (interaction: ButtonInteraction) => 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?: 'ts' | 'js' | 'sh' | 'json' | ''): Promise<string> {
let hasteOut = '';
const tildes = '```';
language = language ?? '';
const formattingLength = 2 * tildes.length + language?.length ?? 0 + 2 * '\n'.length;
if (code.length + formattingLength >= length) hasteOut = 'Too large to display. Hastebin: ' + (await this.haste(code));
const code2 = hasteOut ? code.substring(0, length - (hasteOut.length + '\n'.length + formattingLength)) : code;
return tildes + language + '\n' + code2 + '\n' + tildes + (hasteOut.length ? '\n' + hasteOut : '');
}
private mapCredential(old: string) {
const mapping = {
['token']: 'Main Token',
['devToken']: 'Dev Token',
['betaToken']: 'Beta Token',
['hypixelApiKey']: 'Hypixel Api Key'
};
return mapping[old] || old;
}
/**
* Redacts credentials from a string
*/
public redact(text: string) {
for (const credentialName in client.config.credentials) {
const credential = client.config.credentials[credentialName];
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;
}
public async inspectCleanRedactCodeblock(input: any, language: 'ts' | 'js', inspectOptions?: InspectOptions) {
input = typeof input !== 'string' && inspectOptions !== undefined ? inspect(input, inspectOptions) : input;
input = Util.cleanCodeBlockContent(input);
input = this.redact(input);
return client.util.codeblock(input, 1024, language);
}
public async slashRespond(
interaction: CommandInteraction,
responseOptions: BushSlashSendMessageType | BushSlashEditMessageType
): Promise<Message | APIMessage> {
let newResponseOptions: BushSlashSendMessageType | BushSlashEditMessageType = {};
if (typeof responseOptions === 'string') {
newResponseOptions.content = responseOptions;
} else {
newResponseOptions = responseOptions;
}
if (interaction.replied || interaction.deferred) {
//@ts-expect-error: stop being dumb
delete newResponseOptions.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 the channel configs as a TextChannel */
public async getConfigChannel(channel: 'log' | 'error' | 'dm'): Promise<TextChannel> {
return (await client.channels.fetch(client.config.channels[channel])) as TextChannel;
}
/**
* Takes an array and combines the elements using the supplied conjunction.
*
* @param {string[]} array The array to combine.
* @param {string} conjunction The conjunction to use.
* @param {string} 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 {
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);
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) => client.logger.error('insertOrRemoveFromGlobal', e?.stack || e));
}
public addOrRemoveFromArray(action: 'add' | 'remove', array: any[], value: any): any[] {
let newValue: any[];
if (!array) return null;
if (action === 'add') {
if (!array.includes(action)) array.push(value);
newValue = array;
} else {
newValue = Array.from(array).filter((ae) => ae !== value);
}
return newValue;
}
/**
* Surrounds a string to the begging an end of each element in an array.
*
* @param {string[]} array The array you want to surround.
* @param {string} surroundChar1 The character placed in the beginning of the element (or end if surroundChar2 isn't supplied).
* @param {string} [surroundChar2=surroundChar1] The character placed in the end of the element.
* @returns {string[]}
*/
public surroundArray(array: string[], surroundChar1: string, surroundChar2?: string): string[] {
const newArray = [];
array.forEach((a) => {
newArray.push(`${surroundChar1}${a}${surroundChar2 || surroundChar1}`);
});
return newArray;
}
public parseDuration(content: string, remove = true): { duration: number; contentWithoutTime: string } {
if (!content) return { duration: 0, contentWithoutTime: null };
let duration = 0;
// 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] || 0);
duration += value * BushConstants.TimeUnits[unit].value;
if (remove) contentWithoutTime = contentWithoutTime.replace(regex, '');
}
// remove the space added earlier
if (contentWithoutTime.startsWith(' ')) contentWithoutTime.replace(' ', '');
return { duration, contentWithoutTime };
}
/**
* Checks if a moderator can perform a moderation action on another user.
* @param moderator - The person trying to perform the action.
* @param victim - The person getting punished.
* @param type - The type of punishment - used to format the response.
* @param checkModerator - Whether or not to check if the victim is a moderator.
*/
public moderationPermissionCheck(
moderator: BushGuildMember,
victim: BushGuildMember,
type: 'mute' | 'unmute' | 'warn' | 'kick' | 'ban' | 'unban' | 'add a punishment role to' | 'remove a punishment role from',
checkModerator = true,
force = false
): true | string {
if (force) return true;
// If the victim is not in the guild anymore it will be undefined
if (!victim.guild && ['ban', 'unban'].includes(type)) return true;
if (moderator.guild.id !== victim.guild.id) {
throw 'moderator and victim not in same guild';
}
const isOwner = moderator.guild.ownerId === moderator.id;
if (moderator.id === victim.id) {
return `${util.emojis.error} You cannot ${type} yourself.`;
}
if (moderator.roles.highest.position <= victim.roles.highest.position && !isOwner) {
return `${util.emojis.error} You cannot ${type} **${victim.user.tag}** because they have higher or equal role hierarchy as you do.`;
}
if (victim.roles.highest.position >= victim.guild.me.roles.highest.position) {
return `${util.emojis.error} You cannot ${type} **${victim.user.tag}** because they have higher or equal role hierarchy as I do.`;
}
if (checkModerator && victim.permissions.has('MANAGE_MESSAGES')) {
return `${util.emojis.error} You cannot ${type} **${victim.user.tag}** because they are a moderator.`;
}
return true;
}
public async createModLogEntry(
options: {
type: ModLogType;
user: BushGuildMemberResolvable;
moderator: BushGuildMemberResolvable;
reason: string;
duration?: number;
guild: BushGuildResolvable;
},
getCaseNumber = false
): Promise<{ log: ModLog; caseNum: number }> {
const user = client.users.resolveId(options.user);
const moderator = client.users.resolveId(options.moderator);
const guild = client.guilds.resolveId(options.guild);
const duration = options.duration || null;
// If guild does not exist create it so the modlog can reference a guild.
await Guild.findOrCreate({
where: {
id: guild
},
defaults: {
id: guild
}
});
const modLogEntry = ModLog.build({
type: options.type,
user,
moderator,
reason: options.reason,
duration: duration,
guild
});
const saveResult: ModLog = await modLogEntry.save().catch((e) => {
void client.console.error('createModLogEntry', e?.stack || e);
return null;
});
if (!getCaseNumber) return { log: saveResult, caseNum: null };
const caseNum = (await ModLog.findAll({ where: { type: options.type, user: user, guild: guild } }))?.length;
return { log: saveResult, caseNum };
}
public async createPunishmentEntry(options: {
type: 'mute' | 'ban' | 'role' | 'block';
user: BushGuildMemberResolvable;
duration: number;
guild: BushGuildResolvable;
modlog: string;
extraInfo?: Snowflake;
}): Promise<ActivePunishment> {
const expires = options.duration ? new Date(new Date().getTime() + options.duration) : null;
const user = client.users.resolveId(options.user);
const guild = client.guilds.resolveId(options.guild);
const type = this.findTypeEnum(options.type);
const entry = options.extraInfo
? ActivePunishment.build({ user, type, guild, expires, modlog: options.modlog, extraInfo: options.extraInfo })
: ActivePunishment.build({ user, type, guild, expires, modlog: options.modlog });
return await entry.save().catch((e) => {
void client.console.error('createPunishmentEntry', e?.stack || e);
return null;
});
}
public async removePunishmentEntry(options: {
type: 'mute' | 'ban' | 'role' | 'block';
user: BushGuildMemberResolvable;
guild: BushGuildResolvable;
}): Promise<boolean> {
const user = client.users.resolveId(options.user);
const guild = client.guilds.resolveId(options.guild);
const type = this.findTypeEnum(options.type);
let success = true;
const entries = await ActivePunishment.findAll({
// finding all cases of a certain type incase there were duplicates or something
where: { user, guild, type }
}).catch((e) => {
void client.console.error('removePunishmentEntry', e?.stack || e);
success = false;
});
if (entries) {
entries.forEach(async (entry) => {
await entry.destroy().catch((e) => {
void client.console.error('removePunishmentEntry', e?.stack || e);
});
success = false;
});
}
return success;
}
private findTypeEnum(type: 'mute' | 'ban' | 'role' | 'block') {
const typeMap = {
['mute']: ActivePunishmentType.MUTE,
['ban']: ActivePunishmentType.BAN,
['role']: ActivePunishmentType.ROLE,
['block']: ActivePunishmentType.BLOCK
};
return typeMap[type];
}
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 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 'invalid player';
}
if (raw.statusCode == 200 && profile && profile.uuid) {
return profile.uuid.replace(/-/g, '');
} else {
throw `Could not fetch the uuid for ${player}.`;
}
} catch (e) {
throw '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);
}
}
|