62 lines
2.1 KiB
TypeScript
62 lines
2.1 KiB
TypeScript
import { TextChannel } from "discord.js";
|
|
import * as t from "io-ts";
|
|
import { ChannelTypeStrings } from "src/types";
|
|
import { LogType } from "../../../data/LogType";
|
|
import { convertDelayStringToMS, isDiscordRESTError, tDelayString, tNullable } from "../../../utils";
|
|
import { automodAction } from "../helpers";
|
|
|
|
export const SetSlowmodeAction = automodAction({
|
|
configType: t.type({
|
|
channels: t.array(t.string),
|
|
duration: tNullable(tDelayString),
|
|
}),
|
|
|
|
defaultConfig: {
|
|
duration: "10s",
|
|
},
|
|
|
|
async apply({ pluginData, actionConfig }) {
|
|
const slowmodeMs = Math.max(actionConfig.duration ? convertDelayStringToMS(actionConfig.duration)! : 0, 0);
|
|
|
|
for (const channelId of actionConfig.channels) {
|
|
const channel = pluginData.guild.channels.cache.get(channelId);
|
|
|
|
// Only text channels and text channels within categories support slowmodes
|
|
if (!channel || !(channel.type === ChannelTypeStrings.TEXT || ChannelTypeStrings.CATEGORY)) {
|
|
continue;
|
|
}
|
|
|
|
const channelsToSlowmode: TextChannel[] = [];
|
|
if (channel.type === ChannelTypeStrings.CATEGORY) {
|
|
// Find all text channels within the category
|
|
for (const ch of pluginData.guild.channels.cache.values()) {
|
|
if (ch.parentID === channel.id && ch.type === ChannelTypeStrings.TEXT) {
|
|
channelsToSlowmode.push(ch as TextChannel);
|
|
}
|
|
}
|
|
} else {
|
|
channelsToSlowmode.push(channel as TextChannel);
|
|
}
|
|
|
|
const slowmodeSeconds = Math.ceil(slowmodeMs / 1000);
|
|
|
|
try {
|
|
for (const chan of channelsToSlowmode) {
|
|
await chan.edit({
|
|
rateLimitPerUser: slowmodeSeconds,
|
|
});
|
|
}
|
|
} catch (e) {
|
|
// Check for invalid form body -> indicates duration was too large
|
|
const errorMessage =
|
|
isDiscordRESTError(e) && e.code === 50035
|
|
? `Duration is greater than maximum native slowmode duration`
|
|
: e.message;
|
|
|
|
pluginData.state.logs.log(LogType.BOT_ALERT, {
|
|
body: `Unable to set slowmode for channel ${channel.id} to ${slowmodeSeconds} seconds: ${errorMessage}`,
|
|
});
|
|
}
|
|
}
|
|
},
|
|
});
|