Add automod action for setting slowmode (#167)

This commit is contained in:
Nils 2021-04-28 22:18:23 +02:00 committed by GitHub
parent 13f75c9b54
commit dd9c52bc43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 56 additions and 0 deletions

View file

@ -14,6 +14,7 @@ import { SetAntiraidLevelAction } from "./setAntiraidLevel";
import { ReplyAction } from "./reply";
import { AddToCounterAction } from "./addToCounter";
import { SetCounterAction } from "./setCounter";
import { SetSlowmodeAction } from "./setSlowmode";
export const availableActions: Record<string, AutomodActionBlueprint<any>> = {
clean: CleanAction,
@ -30,6 +31,7 @@ export const availableActions: Record<string, AutomodActionBlueprint<any>> = {
reply: ReplyAction,
add_to_counter: AddToCounterAction,
set_counter: SetCounterAction,
set_slowmode: SetSlowmodeAction,
};
export const AvailableActions = t.type({
@ -47,4 +49,5 @@ export const AvailableActions = t.type({
reply: ReplyAction.configType,
add_to_counter: AddToCounterAction.configType,
set_counter: SetCounterAction.configType,
set_slowmode: SetSlowmodeAction.configType,
});

View file

@ -0,0 +1,53 @@
import * as t from "io-ts";
import { automodAction } from "../helpers";
import { convertDelayStringToMS, isDiscordRESTError, tDelayString, tNullable } from "../../../utils";
import { LogType } from "../../../data/LogType";
import { AnyGuildChannel } from "eris";
export const SetSlowmodeAction = automodAction({
configType: t.type({
channels: t.array(t.string),
duration: tNullable(tDelayString),
}),
defaultConfig: {
duration: "10s",
},
async apply({ pluginData, actionConfig }) {
const duration = actionConfig.duration ? convertDelayStringToMS(actionConfig.duration)! : 0;
for (const channelId of actionConfig.channels) {
const channel = pluginData.guild.channels.get(channelId);
// 0 = Guild Text, 4 = Guild Category - Both dont allow slowmode
if (!channel) continue;
if (!(channel.type === 0 || channel.type === 4)) continue;
let channelsToSlowmode: AnyGuildChannel[] = [];
if (channel.type === 4) {
channelsToSlowmode = pluginData.guild.channels.filter(ch => ch.parentID === channel.id && ch.type === 0);
} else {
channelsToSlowmode.push(channel);
}
try {
for (const chan of channelsToSlowmode) {
await chan.edit({
rateLimitPerUser: duration / 1000, // ms -> seconds
});
}
} catch (e) {
let errorMessage = e;
// Check for invalid form body -> indicates duration was too large
if (isDiscordRESTError(e) && e.code === 50035) {
errorMessage = `Duration is greater than maximum native slowmode duration`;
}
pluginData.state.logs.log(LogType.BOT_ALERT, {
body: `Unable to set slowmode for channel ${channel.id} to ${duration / 1000} seconds: ${errorMessage}`,
});
}
}
},
});