25 lines
789 B
TypeScript
25 lines
789 B
TypeScript
import { utilityCmd } from "../types";
|
|
import { commandTypeHelpers as ct } from "../../../commandTypes";
|
|
import { sendErrorMessage } from "../../../pluginUtils";
|
|
import { getChannelInfoEmbed } from "../functions/getChannelInfoEmbed";
|
|
|
|
export const ChannelInfoCmd = utilityCmd({
|
|
trigger: ["channel", "channelinfo"],
|
|
description: "Show information about a channel",
|
|
usage: "!channel 534722016549404673",
|
|
permission: "can_channel",
|
|
|
|
signature: {
|
|
channel: ct.channelId({ required: false }),
|
|
},
|
|
|
|
async run({ message, args, pluginData }) {
|
|
const embed = await getChannelInfoEmbed(pluginData, args.channel);
|
|
if (!embed) {
|
|
sendErrorMessage(pluginData, message.channel, "Unknown channel");
|
|
return;
|
|
}
|
|
|
|
message.channel.createMessage({ embed });
|
|
},
|
|
});
|