zappyzep/backend/src/plugins/Automod/actions/ban.ts

63 lines
2 KiB
TypeScript
Raw Normal View History

import * as t from "io-ts";
2021-04-28 21:42:54 +02:00
import {
convertDelayStringToMS,
nonNullish,
tDelayString,
tNullable,
unique
2021-04-28 21:42:54 +02:00
} from "../../../utils";
import { CaseArgs } from "../../Cases/types";
import { ModActionsPlugin } from "../../ModActions/ModActionsPlugin";
import { resolveActionContactMethods } from "../functions/resolveActionContactMethods";
import { automodAction } from "../helpers";
export const BanAction = automodAction({
configType: t.type({
reason: tNullable(t.string),
2021-04-28 21:42:54 +02:00
duration: tNullable(tDelayString),
notify: tNullable(t.string),
notifyChannel: tNullable(t.string),
deleteMessageDays: tNullable(t.number),
postInCaseLog: tNullable(t.boolean),
2021-05-03 19:40:59 +03:00
hide_case: tNullable(t.boolean),
}),
defaultConfig: {
notify: null, // Use defaults from ModActions
hide_case: false,
},
2020-07-28 21:51:58 +03:00
async apply({ pluginData, contexts, actionConfig, matchResult }) {
const reason = actionConfig.reason || "Kicked automatically";
2021-04-28 21:42:54 +02:00
const duration = actionConfig.duration ? convertDelayStringToMS(actionConfig.duration)! : undefined;
const contactMethods = actionConfig.notify ? resolveActionContactMethods(pluginData, actionConfig) : undefined;
const deleteMessageDays = actionConfig.deleteMessageDays || undefined;
const caseArgs: Partial<CaseArgs> = {
modId: pluginData.client.user!.id,
extraNotes: matchResult.fullSummary ? [matchResult.fullSummary] : [],
automatic: true,
postInCaseLogOverride: actionConfig.postInCaseLog ?? undefined,
2021-05-03 19:40:59 +03:00
hide: Boolean(actionConfig.hide_case),
};
const userIdsToBan = unique(contexts.map(c => c.user?.id).filter(nonNullish));
const modActions = pluginData.getPlugin(ModActionsPlugin);
for (const userId of userIdsToBan) {
2021-04-28 21:42:54 +02:00
await modActions.banUserId(
userId,
reason,
{
contactMethods,
caseArgs,
deleteMessageDays,
isAutomodAction: true,
},
duration,
);
}
},
});