mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-06-07 08:05:01 +00:00
85 lines
2.5 KiB
TypeScript
85 lines
2.5 KiB
TypeScript
import { commandTypeHelpers as ct } from "../../../../commandTypes.js";
|
|
import { canActOn, hasPermission, resolveMessageMember } from "../../../../pluginUtils.js";
|
|
import { resolveMember, resolveUser } from "../../../../utils.js";
|
|
import { readContactMethodsFromArgs } from "../../functions/readContactMethodsFromArgs.js";
|
|
import { modActionsMsgCmd } from "../../types.js";
|
|
import { actualMuteCmd } from "../mute/actualMuteCmd.js";
|
|
|
|
const opts = {
|
|
mod: ct.member({ option: true }),
|
|
notify: ct.string({ option: true }),
|
|
"notify-channel": ct.textChannel({ option: true }),
|
|
};
|
|
|
|
export const ForceMuteMsgCmd = modActionsMsgCmd({
|
|
trigger: "forcemute",
|
|
permission: "can_mute",
|
|
description: "Force-mute the specified user, even if they're not on the server",
|
|
|
|
signature: [
|
|
{
|
|
user: ct.string(),
|
|
time: ct.delay(),
|
|
reason: ct.string({ required: false, catchAll: true }),
|
|
|
|
...opts,
|
|
},
|
|
{
|
|
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) {
|
|
pluginData.state.common.sendErrorMessage(msg, `User not found`);
|
|
return;
|
|
}
|
|
|
|
const authorMember = await resolveMessageMember(msg);
|
|
const memberToMute = await resolveMember(pluginData.client, pluginData.guild, user.id);
|
|
|
|
// Make sure we're allowed to mute this user
|
|
if (memberToMute && !canActOn(pluginData, authorMember, memberToMute)) {
|
|
pluginData.state.common.sendErrorMessage(msg, "Cannot mute: insufficient permissions");
|
|
return;
|
|
}
|
|
|
|
// The moderator who did the action is the message author or, if used, the specified -mod
|
|
let mod = authorMember;
|
|
let ppId: string | undefined;
|
|
|
|
if (args.mod) {
|
|
if (!(await hasPermission(pluginData, "can_act_as_other", { message: msg }))) {
|
|
pluginData.state.common.sendErrorMessage(msg, "You don't have permission to use -mod");
|
|
return;
|
|
}
|
|
|
|
mod = args.mod;
|
|
ppId = msg.author.id;
|
|
}
|
|
|
|
let contactMethods;
|
|
try {
|
|
contactMethods = readContactMethodsFromArgs(args);
|
|
} catch (e) {
|
|
pluginData.state.common.sendErrorMessage(msg, e.message);
|
|
return;
|
|
}
|
|
|
|
actualMuteCmd(
|
|
pluginData,
|
|
msg,
|
|
user,
|
|
[...msg.attachments.values()],
|
|
mod,
|
|
ppId,
|
|
"time" in args ? args.time ?? undefined : undefined,
|
|
args.reason,
|
|
contactMethods,
|
|
);
|
|
},
|
|
});
|