zappyzep/backend/src/plugins/Utility/commands/ContextCmd.ts

51 lines
1.6 KiB
TypeScript

import { TextChannel } from "discord.js";
import { commandTypeHelpers as ct } from "../../../commandTypes";
import { sendErrorMessage } from "../../../pluginUtils";
import { messageLink } from "../../../utils";
import { canReadChannel } from "../../../utils/canReadChannel";
import { utilityCmd } from "../types";
export const ContextCmd = utilityCmd({
trigger: "context",
description: "Get a link to the context of the specified message",
usage: "!context 94882524378968064 650391267720822785",
permission: "can_context",
signature: [
{
message: ct.messageTarget(),
},
{
channel: ct.channel(),
messageId: ct.string(),
},
],
async run({ message: msg, args, pluginData }) {
if (args.channel && !(args.channel instanceof TextChannel)) {
sendErrorMessage(pluginData, msg.channel, "Channel must be a text channel");
return;
}
const channel = args.channel ?? args.message.channel;
const messageId = args.messageId ?? args.message.messageId;
if (!canReadChannel(channel, msg.member)) {
sendErrorMessage(pluginData, msg.channel, "Message context not found");
return;
}
const previousMessage = (
await (pluginData.guild.channels.cache.get(channel.id) as TextChannel).messages.fetch({
limit: 1,
before: messageId,
})
)[0];
if (!previousMessage) {
sendErrorMessage(pluginData, msg.channel, "Message context not found");
return;
}
msg.channel.send(messageLink(pluginData.guild.id, previousMessage.channel.id, previousMessage.id));
},
});