mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-13 21:35:02 +00:00
103 lines
3.4 KiB
TypeScript
103 lines
3.4 KiB
TypeScript
import { ChannelType } from "discord.js";
|
|
import { slashOptions } from "knub";
|
|
import { hasPermission } from "../../../../pluginUtils";
|
|
import { UserNotificationMethod, convertDelayStringToMS } from "../../../../utils";
|
|
import { generateAttachmentSlashOptions, retrieveMultipleOptions } from "../../../../utils/multipleSlashOptions";
|
|
import { CommonPlugin } from "../../../Common/CommonPlugin";
|
|
import { actualBanCmd } from "../../functions/actualCommands/actualBanCmd";
|
|
import { readContactMethodsFromArgs } from "../../functions/readContactMethodsFromArgs";
|
|
import { NUMBER_ATTACHMENTS_CASE_CREATION } from "../constants";
|
|
|
|
const opts = [
|
|
slashOptions.string({ name: "time", description: "The duration of the ban", required: false }),
|
|
slashOptions.string({ name: "reason", description: "The reason", required: false }),
|
|
slashOptions.user({ name: "mod", description: "The moderator to ban as", required: false }),
|
|
slashOptions.string({
|
|
name: "notify",
|
|
description: "How to notify",
|
|
required: false,
|
|
choices: [
|
|
{ name: "DM", value: "dm" },
|
|
{ name: "Channel", value: "channel" },
|
|
],
|
|
}),
|
|
slashOptions.channel({
|
|
name: "notify-channel",
|
|
description: "The channel to notify in",
|
|
channelTypes: [ChannelType.GuildText, ChannelType.PrivateThread, ChannelType.PublicThread],
|
|
required: false,
|
|
}),
|
|
slashOptions.number({
|
|
name: "delete-days",
|
|
description: "The number of days of messages to delete",
|
|
required: false,
|
|
}),
|
|
...generateAttachmentSlashOptions(NUMBER_ATTACHMENTS_CASE_CREATION, {
|
|
name: "attachment",
|
|
description: "An attachment to add to the reason",
|
|
}),
|
|
];
|
|
|
|
export const BanSlashCmd = {
|
|
name: "ban",
|
|
configPermission: "can_ban",
|
|
description: "Ban or Tempban the specified member",
|
|
allowDms: false,
|
|
|
|
signature: [slashOptions.user({ name: "user", description: "The user to ban", required: true }), ...opts],
|
|
|
|
async run({ interaction, options, pluginData }) {
|
|
const attachments = retrieveMultipleOptions(NUMBER_ATTACHMENTS_CASE_CREATION, options, "attachment");
|
|
|
|
if ((!options.reason || options.reason.trim() === "") && attachments.length < 1) {
|
|
pluginData
|
|
.getPlugin(CommonPlugin)
|
|
.sendErrorMessage(interaction, "Text or attachment required", undefined, undefined, true);
|
|
|
|
return;
|
|
}
|
|
|
|
let mod = interaction.member;
|
|
const canActAsOther = await hasPermission(pluginData, "can_act_as_other", {
|
|
channel: interaction.channel,
|
|
member: interaction.member,
|
|
});
|
|
|
|
if (options.mod) {
|
|
if (!canActAsOther) {
|
|
pluginData
|
|
.getPlugin(CommonPlugin)
|
|
.sendErrorMessage(interaction, "You don't have permission to act as another moderator");
|
|
return;
|
|
}
|
|
|
|
mod = options.mod;
|
|
}
|
|
|
|
let contactMethods: UserNotificationMethod[] | undefined;
|
|
try {
|
|
contactMethods = readContactMethodsFromArgs(options) ?? undefined;
|
|
} catch (e) {
|
|
pluginData.getPlugin(CommonPlugin).sendErrorMessage(interaction, e.message);
|
|
return;
|
|
}
|
|
|
|
const convertedTime = options.time ? convertDelayStringToMS(options.time) : null;
|
|
if (options.time && !convertedTime) {
|
|
pluginData.getPlugin(CommonPlugin).sendErrorMessage(interaction, `Could not convert ${options.time} to a delay`);
|
|
return;
|
|
}
|
|
|
|
actualBanCmd(
|
|
pluginData,
|
|
interaction,
|
|
options.user,
|
|
convertedTime,
|
|
options.reason || "",
|
|
attachments,
|
|
interaction.member,
|
|
mod,
|
|
contactMethods,
|
|
);
|
|
},
|
|
};
|