aboutsummaryrefslogtreecommitdiff
path: root/lib/common/Moderation.ts
blob: 7697b2f4500702d75a0b0e23342765a8daad0cc5 (plain)
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
import { baseMuteResponse, permissionsResponse } from '#lib/extensions/discord.js/ExtendedGuildMember.js';
import { ActivePunishment, ActivePunishmentType, Guild as GuildDB, ModLog, type ModLogType } from '#lib/models/index.js';
import { colors, emojis } from '#lib/utils/Constants.js';
import { format, humanizeDuration, ValueOf } from '#lib/utils/Utils.js';
import assert from 'assert/strict';
import {
	ActionRowBuilder,
	ButtonBuilder,
	ButtonStyle,
	Client,
	EmbedBuilder,
	PermissionFlagsBits,
	type Guild,
	type GuildMember,
	type GuildMemberResolvable,
	type GuildResolvable,
	type Snowflake,
	type UserResolvable
} from 'discord.js';

export enum Action {
	Warn,
	Mute,
	Unmute,
	Kick,
	Ban,
	Unban,
	Timeout,
	Untimeout,
	Block,
	Unblock,
	AddPunishRole,
	RemovePunishRole
}

interface ActionInfo {
	/**
	 * The base verb of the action
	 */
	base: string;

	/**
	 * The past tense form of the action
	 */
	past: string;

	/**
	 * Whether or not a user can appeal this action
	 */
	appealable: boolean;

	/**
	 * Whether a moderator can perform this action on themself.
	 */
	selfInflictable: boolean;

	/**
	 * Whether the action requires the target to be in the guild.
	 */
	membershipRequired: boolean;

	/**
	 * Custom appeal title, otherwise {@link ActionInfo.base} is used.
	 */
	appealCustom?: string;
}

export const punishments: Record<Action, ActionInfo> = {
	[Action.Warn]: {
		base: 'warn',
		past: 'warned',
		appealable: false,
		selfInflictable: false,
		membershipRequired: true
	},
	[Action.Mute]: {
		base: 'mute',
		past: 'muted',
		appealable: true,
		selfInflictable: false,
		membershipRequired: true
	},
	[Action.Unmute]: {
		base: 'unmute',
		past: 'unmuted',
		appealable: false,
		selfInflictable: true,
		membershipRequired: true
	},
	[Action.Kick]: {
		base: 'kick',
		past: 'kicked',
		appealable: false,
		selfInflictable: false,
		membershipRequired: true
	},
	[Action.Ban]: {
		base: 'ban',
		past: 'banned',
		appealable: true,
		selfInflictable: false,
		membershipRequired: false
	},
	[Action.Unban]: {
		base: 'unban',
		past: 'unbanned',
		appealable: false,
		selfInflictable: true,
		membershipRequired: false
	},
	[Action.Timeout]: {
		base: 'timeout',
		past: 'timed out',
		appealable: true,
		selfInflictable: false,
		membershipRequired: true
	},
	[Action.Untimeout]: {
		base: 'untimeout',
		past: 'untimed out',
		appealable: false,
		selfInflictable: true,
		membershipRequired: true
	},
	[Action.Block]: {
		base: 'block',
		past: 'blocked',
		appealable: true,
		selfInflictable: false,
		membershipRequired: true
	},
	[Action.Unblock]: {
		base: 'unblock',
		past: 'unblocked',
		appealable: false,
		selfInflictable: true,
		membershipRequired: true
	},
	[Action.AddPunishRole]: {
		base: 'add a punishment role to',
		past: 'added punishment role',
		appealable: true,
		appealCustom: 'Punishment Role',
		selfInflictable: false,
		membershipRequired: true
	},
	[Action.RemovePunishRole]: {
		base: 'remove a punishment role from',
		past: 'removed punishment role',
		appealable: false,
		selfInflictable: true,
		membershipRequired: true
	}
};

interface BaseOptions {
	/**
	 * The client.
	 */
	client: Client;
}

interface BaseCreateModLogEntryOptions extends BaseOptions {
	/**
	 * The type of modlog entry.
	 */
	type: ModLogType;

	/**
	 * The reason for the punishment.
	 */
	reason: string | undefined | null;

	/**
	 * The duration of the punishment.
	 */
	duration?: number;

	/**
	 * Whether the punishment is a pseudo punishment.
	 */
	pseudo?: boolean;

	/**
	 * The evidence for the punishment.
	 */
	evidence?: string;

	/**
	 * Makes the modlog entry hidden.
	 */
	hidden?: boolean;
}

/**
 * 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.
 * @param force Override permissions checks.
 * @returns `true` if the moderator can perform the action otherwise a reason why they can't.
 */
export async function permissionCheck(
	moderator: GuildMember,
	victim: GuildMember,
	type: Action,
	checkModerator = true,
	force = false
): Promise<true | string> {
	if (force) return true;

	const action = punishments[type];

	// If the victim is not in the guild anymore it will be undefined
	if (!victim?.guild && action.membershipRequired) return true;

	assert(moderator.guild.id === victim.guild.id, 'moderator and victim should be from the same guild');

	const isOwner = moderator.guild.ownerId === moderator.id;

	const selfInflicted = moderator.id === victim.id;

	if (selfInflicted && !action.selfInflictable) {
		return `${emojis.error} You cannot ${action.base} yourself.`;
	}
	if (
		moderator.roles.highest.position <= victim.roles.highest.position &&
		!isOwner &&
		!(action.selfInflictable && selfInflicted)
	) {
		return `${emojis.error} You cannot ${action.base} ${format.input(
			victim.user.tag
		)} because they have higher or equal role hierarchy as you do.`;
	}
	if (
		victim.roles.highest.position >= victim.guild.members.me!.roles.highest.position &&
		!(action.selfInflictable && selfInflicted)
	) {
		return `${emojis.error} You cannot ${action.base} ${format.input(
			victim.user.tag
		)} because they have higher or equal role hierarchy as I do.`;
	}
	if (
		checkModerator &&
		victim.permissions.has(PermissionFlagsBits.ManageMessages) &&
		!(action.selfInflictable && selfInflicted)
	) {
		if (await moderator.guild.hasFeature('modsCanPunishMods')) {
			return true;
		} else {
			return `${emojis.error} You cannot ${action.base} ${format.input(victim.user.tag)} because they are a moderator.`;
		}
	}
	return true;
}

/**
 * Performs permission checks that are required in order to (un)mute a member.
 * @param guild The guild to check the mute permissions in.
 * @returns A {@link MuteResponse} or true if nothing failed.
 */
export async function checkMutePermissions(
	guild: Guild
): Promise<ValueOf<typeof baseMuteResponse> | ValueOf<typeof permissionsResponse> | true> {
	if (!guild.members.me!.permissions.has('ManageRoles')) {
		return permissionsResponse.MISSING_PERMISSIONS;
	}

	const muteRoleID = await guild.getSetting('muteRole');
	if (!muteRoleID) return baseMuteResponse.NO_MUTE_ROLE;

	const muteRole = guild.roles.cache.get(muteRoleID);
	if (!muteRole) return baseMuteResponse.MUTE_ROLE_INVALID;

	if (muteRole.position >= guild.members.me!.roles.highest.position || muteRole.managed) {
		return baseMuteResponse.MUTE_ROLE_NOT_MANAGEABLE;
	}

	return true;
}

/**
 * Options for creating a modlog entry.
 */
export interface CreateModLogEntryOptions extends BaseCreateModLogEntryOptions {
	/**
	 * The client.
	 */
	client: Client;

	/**
	 * The user that a modlog entry is created for.
	 */
	user: GuildMemberResolvable;

	/**
	 * The moderator that created the modlog entry.
	 */
	moderator: GuildMemberResolvable;

	/**
	 * The guild that the punishment is created for.
	 */
	guild: GuildResolvable;
}

/**
 * Creates a modlog entry for a punishment.
 * @param options Options for creating a modlog entry.
 * @param getCaseNumber Whether or not to get the case number of the entry.
 * @returns An object with the modlog and the case number.
 */
export async function createModLogEntry(
	options: CreateModLogEntryOptions,
	getCaseNumber = false
): Promise<{ log: ModLog | null; caseNum: number | null }> {
	const user = (await options.client.utils.resolveNonCachedUser(options.user))!.id;
	const moderator = (await options.client.utils.resolveNonCachedUser(options.moderator))!.id;
	const guild = options.client.guilds.resolveId(options.guild)!;

	return createModLogEntrySimple(
		{
			...options,
			user: user,
			moderator: moderator,
			guild: guild
		},
		getCaseNumber
	);
}

/**
 * Simple options for creating a modlog entry.
 */
export interface SimpleCreateModLogEntryOptions extends BaseCreateModLogEntryOptions {
	/**
	 * The user that a modlog entry is created for.
	 */
	user: Snowflake;

	/**
	 * The moderator that created the modlog entry.
	 */
	moderator: Snowflake;

	/**
	 * The guild that the punishment is created for.
	 */
	guild: Snowflake;
}

/**
 * Creates a modlog entry with already resolved ids.
 * @param options Options for creating a modlog entry.
 * @param getCaseNumber Whether or not to get the case number of the entry.
 * @returns An object with the modlog and the case number.
 */
export async function createModLogEntrySimple(
	options: SimpleCreateModLogEntryOptions,
	getCaseNumber = false
): Promise<{ log: ModLog | null; caseNum: number | null }> {
	// If guild does not exist create it so the modlog can reference a guild.
	await GuildDB.findOrCreate({
		where: { id: options.guild },
		defaults: { id: options.guild }
	});

	const modLogEntry = ModLog.build({
		type: options.type,
		user: options.user,
		moderator: options.moderator,
		reason: options.reason,
		duration: options.duration ? options.duration : undefined,
		guild: options.guild,
		pseudo: options.pseudo ?? false,
		evidence: options.evidence,
		hidden: options.hidden ?? false
	});

	const saveResult: ModLog | null = await modLogEntry.save().catch(async (e) => {
		await options.client.utils.handleError('createModLogEntry', e);
		return null;
	});

	if (!getCaseNumber) return { log: saveResult, caseNum: null };

	const caseNum = (
		await ModLog.findAll({ where: { type: options.type, user: options.user, guild: options.guild, hidden: false } })
	)?.length;
	return { log: saveResult, caseNum };
}

/**
 * Options for creating a punishment entry.
 */
export interface CreatePunishmentEntryOptions extends BaseOptions {
	/**
	 * The type of punishment.
	 */
	type: 'mute' | 'ban' | 'role' | 'block';

	/**
	 * The user that the punishment is created for.
	 */
	user: GuildMemberResolvable;

	/**
	 * The length of time the punishment lasts for.
	 */
	duration: number | undefined;

	/**
	 * The guild that the punishment is created for.
	 */
	guild: GuildResolvable;

	/**
	 * The id of the modlog that is linked to the punishment entry.
	 */
	modlog: string;

	/**
	 * Extra information for the punishment. The role for role punishments and the channel for blocks.
	 */
	extraInfo?: Snowflake;
}

/**
 * Creates a punishment entry.
 * @param options Options for creating the punishment entry.
 * @returns The database entry, or null if no entry is created.
 */
export async function createPunishmentEntry(options: CreatePunishmentEntryOptions): Promise<ActivePunishment | null> {
	const expires = options.duration ? new Date(+new Date() + options.duration ?? 0) : undefined;
	const user = (await options.client.utils.resolveNonCachedUser(options.user))!.id;
	const guild = options.client.guilds.resolveId(options.guild)!;
	const type = findTypeEnum(options.type)!;

	const entry = ActivePunishment.build(
		options.extraInfo
			? { user, type, guild, expires, modlog: options.modlog, extraInfo: options.extraInfo }
			: { user, type, guild, expires, modlog: options.modlog }
	);

	return await entry.save().catch(async (e) => {
		await options.client.utils.handleError('createPunishmentEntry', e);
		return null;
	});
}

/**
 * Options for removing a punishment entry.
 */
export interface RemovePunishmentEntryOptions extends BaseOptions {
	/**
	 * The type of punishment.
	 */
	type: 'mute' | 'ban' | 'role' | 'block';

	/**
	 * The user that the punishment is destroyed for.
	 */
	user: GuildMemberResolvable;

	/**
	 * The guild that the punishment was in.
	 */
	guild: GuildResolvable;

	/**
	 * Extra information for the punishment. The role for role punishments and the channel for blocks.
	 */
	extraInfo?: Snowflake;
}

/**
 * Destroys a punishment entry.
 * @param options Options for destroying the punishment entry.
 * @returns Whether or not the entry was destroyed.
 */
export async function removePunishmentEntry(options: RemovePunishmentEntryOptions): Promise<boolean> {
	const user = await options.client.utils.resolveNonCachedUser(options.user);
	const guild = options.client.guilds.resolveId(options.guild);
	const type = findTypeEnum(options.type);

	if (!user || !guild) return false;

	let success = true;

	const entries = await ActivePunishment.findAll({
		// finding all cases of a certain type incase there were duplicates or something
		where: options.extraInfo
			? { user: user.id, guild: guild, type, extraInfo: options.extraInfo }
			: { user: user.id, guild: guild, type }
	}).catch(async (e) => {
		await options.client.utils.handleError('removePunishmentEntry', e);
		success = false;
	});

	if (entries) {
		const promises = entries.map(async (entry) =>
			entry.destroy().catch(async (e) => {
				await options.client.utils.handleError('removePunishmentEntry', e);
				success = false;
			})
		);

		await Promise.all(promises);
	}
	return success;
}

/**
 * Returns the punishment type enum for the given type.
 * @param type The type of the punishment.
 * @returns The punishment type enum.
 */
function findTypeEnum(type: 'mute' | 'ban' | 'role' | 'block') {
	const typeMap = {
		mute: ActivePunishmentType.Mute,
		ban: ActivePunishmentType.Ban,
		role: ActivePunishmentType.Role,
		block: ActivePunishmentType.Block
	};
	return typeMap[type];
}

/**
 * Options for sending a user a punishment dm.
 */
export interface PunishDMOptions extends BaseOptions {
	/**
	 * The modlog case id so the user can make an appeal.
	 */
	modlog?: string;

	/**
	 * The guild that the punishment is taking place in.
	 */
	guild: Guild;

	/**
	 * The user that is being punished.
	 */
	user: UserResolvable;

	/**
	 * The punishment that the user has received.
	 */
	punishment: Action;

	/**
	 * The reason the user's punishment.
	 */
	reason?: string;

	/**
	 * The duration of the punishment.
	 */
	duration?: number;

	/**
	 * Whether or not to send the guild's punishment footer with the dm.
	 * @default true
	 */
	sendFooter: boolean;

	/**
	 * The channel that the user was (un)blocked from.
	 */
	channel?: Snowflake;
}

/**
 * Notifies the specified user of their punishment.
 * @param options Options for notifying the user.
 * @returns Whether or not the dm was successfully sent.
 */
export async function punishDM(options: PunishDMOptions): Promise<boolean> {
	const ending = await options.guild.getSetting('punishmentEnding');
	const dmEmbed =
		ending && ending.length && options.sendFooter
			? new EmbedBuilder().setDescription(ending).setColor(colors.newBlurple)
			: undefined;

	const appealsEnabled =
		(await options.guild.hasFeature('punishmentAppeals')) && Boolean(await options.guild.getLogChannel('appeals'));

	let content = `You have been ${options.punishment} `;
	if ([Action.Block, Action.Unblock].includes(options.punishment)) {
		assert(options.channel);
		content += `from <#${options.channel}> `;
	}
	content += `in ${format.input(options.guild.name)} `;
	if (options.duration !== null && options.duration !== undefined) {
		content += options.duration ? `for ${humanizeDuration(options.duration)} ` : 'permanently ';
	}
	const reason = options.reason?.trim() ? options.reason?.trim() : 'No reason provided';
	content += `for ${format.input(reason)}.`;

	let components;
	if (appealsEnabled && options.modlog) {
		const punishment = options.punishment;
		const guildId = options.guild.id;
		const userId = options.client.users.resolveId(options.user);
		const modlogCase = options.modlog;

		components = [
			new ActionRowBuilder<ButtonBuilder>({
				components: [
					new ButtonBuilder({
						customId: `appeal_attempt;${Action[punishment]};${guildId};${userId};${modlogCase}`,
						style: ButtonStyle.Primary,
						label: 'Appeal Punishment'
					})
				]
			})
		];
	}

	const dmSuccess = await options.client.users
		.send(options.user, {
			content,
			embeds: dmEmbed ? [dmEmbed] : undefined,
			components
		})
		.catch(() => false);
	return !!dmSuccess;
}