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
|
import type { ConfigChannelKey } from '#config';
import type { CodeBlockLang, CustomInspectOptions } from '#lib';
import type { GlobalCache, SharedCache } from '#lib/common/BotCache.js';
import type { CommandMessage } from '#lib/extensions/discord-akairo/BotCommand.js';
import type { SlashMessage } from '#lib/extensions/discord-akairo/SlashMessage.js';
import { Global, Shared } from '#lib/models/index.js';
import assert from 'assert/strict';
import {
cleanCodeBlockContent,
DMChannel,
escapeCodeBlock,
GuildMember,
Message,
PartialDMChannel,
Routes,
TextBasedChannel,
ThreadMember,
User,
type APIMessage,
type Client,
type Snowflake,
type UserResolvable
} from 'discord.js';
import _ from 'lodash';
import { emojis, Pronoun, PronounCode, pronounMapping, regex } from './Constants.js';
import { generateErrorEmbed } from './ErrorHandler.js';
import { addOrRemoveFromArray, formatError, inspect } from './Utils.js';
/**
* Utilities that require access to the client.
*/
export class BotClientUtils {
/**
* 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'
];
public constructor(private readonly client: 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) => this.client.users.fetch(id)));
}
/**
* 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<HasteResults> {
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.substring(0, 400_000);
isSubstr = true;
}
for (const url of this.#hasteURLs) {
try {
const res = (await (await fetch(`${url}/documents`, { method: 'POST', body: content })).json()) as HastebinRes;
return { url: `${url}/${res.key}`, error: isSubstr ? 'substr' : undefined };
} catch {
void this.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 this.client.users.fetch(text as Snowflake);
} catch {}
}
const mentionReg = /<@!?(?<id>\d{17,19})>/;
const mentionMatch = text.match(mentionReg);
if (mentionMatch) {
try {
return await this.client.users.fetch(mentionMatch.groups!.id as Snowflake);
} catch {}
}
const user = this.client.users.cache.find((u) => u.username === text);
if (user) return user;
return null;
}
/**
* 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
* @param code The content of the code block.
* @param length The maximum length of the code block.
* @param language The language of the code.
* @param substr Whether or not to substring the code if it is too long.
* @returns The generated code block
*/
public async codeblock(code: string, length: number, language: CodeBlockLang | '' = '', substr = false): Promise<string> {
let hasteOut = '';
code = escapeCodeBlock(code);
const prefix = `\`\`\`${language}\n`;
const suffix = '\n```';
if (code.length + (prefix + suffix).length >= length) {
const haste_ = await this.haste(code, substr);
hasteOut = `Too large to display. ${
haste_.url
? `Hastebin: ${haste_.url}${language ? `.${language}` : ''}${haste_.error ? ` - ${haste_.error}` : ''}`
: `${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 this.client.console.warn(`codeblockError`, `Required Length: ${length}. Actual Length: ${code3.length}`, true);
void this.client.console.warn(`codeblockError`, code3, true);
throw new Error('code too long');
}
return code3;
}
/**
* Maps the key of a credential with a readable version when redacting.
* @param key The key of the credential.
* @returns The readable version of the key or the original key if there isn't a mapping.
*/
#mapCredential(key: string): string {
return (
{
token: 'Main Token',
devToken: 'Dev Token',
betaToken: 'Beta Token',
hypixelApiKey: 'Hypixel Api Key',
wolframAlphaAppId: 'Wolfram|Alpha App ID',
dbPassword: 'Database Password'
}[key] ?? key
);
}
/**
* Redacts credentials from a string.
* @param text The text to redact credentials from.
* @returns The redacted text.
*/
public redact(text: string) {
for (const credentialName in { ...this.client.config.credentials, dbPassword: this.client.config.db.password }) {
const credential = { ...this.client.config.credentials, dbPassword: this.client.config.db.password }[
credentialName as keyof typeof this.client.config.credentials
];
if (credential === null || credential === '') continue;
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).
* @param input The object to be inspect, redacted, and put into a codeblock.
* @param language The language to make the codeblock.
* @param inspectOptions The options for {@link CustomClientUtil.inspect}.
* @param length The maximum length that the codeblock can be.
* @returns The generated codeblock.
*/
public async inspectCleanRedactCodeblock(
input: any,
language?: CodeBlockLang | '',
inspectOptions?: CustomInspectOptions,
length = 1024
) {
input = inspect(input, inspectOptions ?? undefined);
if (inspectOptions) inspectOptions.inspectStrings = undefined;
input = cleanCodeBlockContent(input);
input = this.redact(input);
return this.codeblock(input, length, language, true);
}
/**
* Takes an any value, inspects it, redacts credentials, and uploads it to haste.
* @param input The object to be inspect, redacted, and upload.
* @param inspectOptions The options for {@link BotClientUtils.inspect}.
* @returns The {@link HasteResults}.
*/
public async inspectCleanRedactHaste(input: any, inspectOptions?: CustomInspectOptions): Promise<HasteResults> {
input = inspect(input, inspectOptions ?? undefined);
input = this.redact(input);
return this.haste(input, true);
}
/**
* Takes an any value, inspects it and redacts credentials.
* @param input The object to be inspect and redacted.
* @param inspectOptions The options for {@link BotClientUtils.inspect}.
* @returns The redacted and inspected object.
*/
public inspectAndRedact(input: any, inspectOptions?: CustomInspectOptions): string {
input = inspect(input, inspectOptions ?? undefined);
return this.redact(input);
}
/**
* Get the global cache.
*/
public getGlobal(): GlobalCache;
/**
* Get a key from the global cache.
* @param key The key to get in the global cache.
*/
public getGlobal<K extends keyof GlobalCache>(key: K): GlobalCache[K];
public getGlobal(key?: keyof GlobalCache) {
return key ? this.client.cache.global[key] : this.client.cache.global;
}
/**
* Get the shared cache.
*/
public getShared(): SharedCache;
/**
* Get a key from the shared cache.
* @param key The key to get in the shared cache.
*/
public getShared<K extends keyof SharedCache>(key: K): SharedCache[K];
public getShared(key?: keyof SharedCache) {
return key ? this.client.cache.shared[key] : this.client.cache.shared;
}
/**
* Add or remove an element from an array stored in the Globals database.
* @param action Either `add` or `remove` an element.
* @param key The key of the element in the global cache to update.
* @param value The value to add/remove from the array.
*/
public async insertOrRemoveFromGlobal<K extends keyof Client['cache']['global']>(
action: 'add' | 'remove',
key: K,
value: Client['cache']['global'][K][0]
): Promise<Global | void> {
const row =
(await Global.findByPk(this.client.config.environment)) ??
(await Global.create({ environment: this.client.config.environment }));
const oldValue: any[] = row[key];
const newValue = addOrRemoveFromArray(action, oldValue, value);
row[key] = newValue;
this.client.cache.global[key] = newValue;
return await row.save().catch((e) => this.handleError('insertOrRemoveFromGlobal', e));
}
/**
* Add or remove an element from an array stored in the Shared database.
* @param action Either `add` or `remove` an element.
* @param key The key of the element in the shared cache to update.
* @param value The value to add/remove from the array.
*/
public async insertOrRemoveFromShared<K extends Exclude<keyof Client['cache']['shared'], 'badWords' | 'autoBanCode'>>(
action: 'add' | 'remove',
key: K,
value: Client['cache']['shared'][K][0]
): Promise<Shared | void> {
const row = (await Shared.findByPk(0)) ?? (await Shared.create());
const oldValue: any[] = row[key];
const newValue = addOrRemoveFromArray(action, oldValue, value);
row[key] = newValue;
this.client.cache.shared[key] = newValue;
return await row.save().catch((e) => this.handleError('insertOrRemoveFromShared', e));
}
/**
* Updates an element in the Globals database.
* @param key The key in the global cache to update.
* @param value The value to set the key to.
*/
public async setGlobal<K extends keyof Client['cache']['global']>(
key: K,
value: Client['cache']['global'][K]
): Promise<Global | void> {
const row =
(await Global.findByPk(this.client.config.environment)) ??
(await Global.create({ environment: this.client.config.environment }));
row[key] = value;
this.client.cache.global[key] = value;
return await row.save().catch((e) => this.handleError('setGlobal', e));
}
/**
* Updates an element in the Shared database.
* @param key The key in the shared cache to update.
* @param value The value to set the key to.
*/
public async setShared<K extends Exclude<keyof Client['cache']['shared'], 'badWords' | 'autoBanCode'>>(
key: K,
value: Client['cache']['shared'][K]
): Promise<Shared | void> {
const row = (await Shared.findByPk(0)) ?? (await Shared.create());
row[key] = value;
this.client.cache.shared[key] = value;
return await row.save().catch((e) => this.handleError('setShared', e));
}
/**
* Send a message in the error logging channel and console for an error.
* @param context
* @param error
*/
public async handleError(context: string, error: Error) {
await this.client.console.error(_.camelCase(context), `An error occurred:\n${formatError(error, false)}`, false);
await this.client.console.channelError({
embeds: await generateErrorEmbed(this.client, { type: 'unhandledRejection', error: error, context })
});
}
/**
* Fetches a user from discord.
* @param user The user to fetch
* @returns Undefined if the user is not found, otherwise the user.
*/
public async resolveNonCachedUser(user: UserResolvable | undefined | null): Promise<User | undefined> {
if (user == null) return undefined;
const resolvedUser =
user instanceof User
? user
: user instanceof GuildMember
? user.user
: user instanceof ThreadMember
? user.user
: user instanceof Message
? user.author
: undefined;
return resolvedUser ?? (await this.client.users.fetch(user as Snowflake).catch(() => undefined));
}
/**
* Get the pronouns of a discord user from pronoundb.org
* @param user The user to retrieve the promises of.
* @returns The human readable pronouns of the user, or undefined if they do not have any.
*/
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 fetch(`https://pronoundb.org/api/v1/lookup?platform=discord&id=${_user.id}`)
.then((p) => (p.ok ? p.json() : undefined))
.catch(() => undefined)) as { pronouns: PronounCode } | undefined;
if (!apiRes) return undefined;
assert(apiRes.pronouns);
return pronounMapping[apiRes.pronouns!]!;
}
/**
* Uploads an image to imgur.
* @param image The image to upload.
* @returns The url of the imgur.
*/
public async uploadImageToImgur(image: string) {
const clientId = this.client.config.credentials.imgurClientId;
const formData = new FormData();
formData.append('type', 'base64');
formData.append('image', image);
const resp = (await fetch('https://api.imgur.com/3/upload', {
method: 'POST',
headers: {
Accept: 'application/json',
Authorization: `Client-ID ${clientId}`
},
body: formData,
redirect: 'follow'
})
.then((p) => (p.ok ? p.json() : null))
.catch(() => null)) as { data: { link: string } } | null;
return resp?.data?.link ?? null;
}
/**
* Gets the prefix based off of the message.
* @param message The message to get the prefix from.
* @returns The prefix.
*/
public prefix(message: CommandMessage | SlashMessage): string {
return message.util.isSlash
? '/'
: this.client.config.isDevelopment
? 'dev '
: message.util.parsed?.prefix ?? this.client.config.prefix;
}
public async resolveMessageLinks(content: string | null): Promise<MessageLinkParts[]> {
const res: MessageLinkParts[] = [];
if (!content) return res;
const regex_ = new RegExp(regex.messageLink);
let match: RegExpExecArray | null;
while (((match = regex_.exec(content)), match !== null)) {
const input = match.input;
if (!match.groups || !input) continue;
if (input.startsWith('<') && input.endsWith('>')) continue;
const { guild_id, channel_id, message_id } = match.groups;
if (!guild_id || !channel_id || !message_id) continue;
res.push({ guild_id, channel_id, message_id });
}
return res;
}
public async resolveMessagesFromLinks(content: string): Promise<APIMessage[]> {
const res: APIMessage[] = [];
const links = await this.resolveMessageLinks(content);
if (!links.length) return [];
for (const { guild_id, channel_id, message_id } of links) {
const guild = this.client.guilds.cache.get(guild_id);
if (!guild) continue;
const channel = guild.channels.cache.get(channel_id);
if (!channel || (!channel.isTextBased() && !channel.isThread())) continue;
const message = (await this.client.rest
.get(Routes.channelMessage(channel_id, message_id))
.catch(() => null)) as APIMessage | null;
if (!message) continue;
res.push(message);
}
return res;
}
/**
* Resolves a channel from the config and ensures it is a non-dm-based-text-channel.
* @param channel The channel to retrieve.
*/
public async getConfigChannel(
channel: ConfigChannelKey
): Promise<Exclude<TextBasedChannel, DMChannel | PartialDMChannel> | null> {
const channels = this.client.config.channels;
if (!(channel in channels))
throw new TypeError(`Invalid channel provided (${channel}), must be one of ${Object.keys(channels).join(' ')}`);
const channelConfig = channels[channel];
const environment = this.client.config.environment;
const channelId = typeof channelConfig === 'string' ? channelConfig : channelConfig[environment];
if (channelId === '') return null;
const res = await this.client.channels.fetch(channelId);
if (!res?.isTextBased() || res.isDMBased()) return null;
return res;
}
}
interface HastebinRes {
key: string;
}
export interface HasteResults {
url?: string;
error?: 'content too long' | 'substr' | 'unable to post';
}
export interface MessageLinkParts {
guild_id: Snowflake;
channel_id: Snowflake;
message_id: Snowflake;
}
|