mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-10 12:25:02 +00:00
103 lines
3.4 KiB
TypeScript
103 lines
3.4 KiB
TypeScript
import { Snowflake } from "discord.js";
|
|
import { commandTypeHelpers as ct } from "../../../commandTypes";
|
|
import { CaseTypes } from "../../../data/CaseTypes";
|
|
import { LogType } from "../../../data/LogType";
|
|
import { canActOn, hasPermission, sendErrorMessage, sendSuccessMessage } from "../../../pluginUtils";
|
|
import { CasesPlugin } from "../../../plugins/Cases/CasesPlugin";
|
|
import { DAYS, MINUTES, resolveMember, resolveUser } from "../../../utils";
|
|
import { LogsPlugin } from "../../Logs/LogsPlugin";
|
|
import { formatReasonWithAttachments } from "../functions/formatReasonWithAttachments";
|
|
import { ignoreEvent } from "../functions/ignoreEvent";
|
|
import { isBanned } from "../functions/isBanned";
|
|
import { IgnoredEventType, modActionsCmd } from "../types";
|
|
|
|
const opts = {
|
|
mod: ct.member({ option: true }),
|
|
};
|
|
|
|
export const ForcebanCmd = modActionsCmd({
|
|
trigger: "forceban",
|
|
permission: "can_ban",
|
|
description: "Force-ban the specified user, even if they aren't on the server",
|
|
|
|
signature: [
|
|
{
|
|
user: ct.string(),
|
|
reason: ct.string({ required: false, catchAll: true }),
|
|
|
|
...opts,
|
|
},
|
|
],
|
|
|
|
async run({ pluginData, message: msg, args }) {
|
|
const user = await resolveUser(pluginData.client, args.user);
|
|
if (!user.id) {
|
|
sendErrorMessage(pluginData, msg.channel, `User not found`);
|
|
return;
|
|
}
|
|
|
|
// If the user exists as a guild member, make sure we can act on them first
|
|
const member = await resolveMember(pluginData.client, pluginData.guild, user.id);
|
|
if (member && !canActOn(pluginData, msg.member, member)) {
|
|
sendErrorMessage(pluginData, msg.channel, "Cannot forceban this user: insufficient permissions");
|
|
return;
|
|
}
|
|
|
|
// Make sure the user isn't already banned
|
|
const banned = await isBanned(pluginData, user.id);
|
|
if (banned) {
|
|
sendErrorMessage(pluginData, msg.channel, `User is already banned`);
|
|
return;
|
|
}
|
|
|
|
// The moderator who did the action is the message author or, if used, the specified -mod
|
|
let mod = msg.member;
|
|
if (args.mod) {
|
|
if (!(await hasPermission(pluginData, "can_act_as_other", { message: msg }))) {
|
|
sendErrorMessage(pluginData, msg.channel, "You don't have permission to use -mod");
|
|
return;
|
|
}
|
|
|
|
mod = args.mod;
|
|
}
|
|
|
|
const reason = formatReasonWithAttachments(args.reason, [...msg.attachments.values()]);
|
|
|
|
ignoreEvent(pluginData, IgnoredEventType.Ban, user.id);
|
|
pluginData.state.serverLogs.ignoreLog(LogType.MEMBER_BAN, user.id);
|
|
|
|
try {
|
|
// FIXME: Use banUserId()?
|
|
await pluginData.guild.bans.create(user.id as Snowflake, {
|
|
deleteMessageSeconds: (1 * DAYS) / MINUTES,
|
|
reason: reason ?? undefined,
|
|
});
|
|
} catch {
|
|
sendErrorMessage(pluginData, msg.channel, "Failed to forceban member");
|
|
return;
|
|
}
|
|
|
|
// Create a case
|
|
const casesPlugin = pluginData.getPlugin(CasesPlugin);
|
|
const createdCase = await casesPlugin.createCase({
|
|
userId: user.id,
|
|
modId: mod.id,
|
|
type: CaseTypes.Ban,
|
|
reason,
|
|
ppId: mod.id !== msg.author.id ? msg.author.id : undefined,
|
|
});
|
|
|
|
// Confirm the action
|
|
sendSuccessMessage(pluginData, msg.channel, `Member forcebanned (Case #${createdCase.case_number})`);
|
|
|
|
// Log the action
|
|
pluginData.getPlugin(LogsPlugin).logMemberForceban({
|
|
mod,
|
|
userId: user.id,
|
|
caseNumber: createdCase.case_number,
|
|
reason,
|
|
});
|
|
|
|
pluginData.state.events.emit("ban", user.id, reason);
|
|
},
|
|
});
|