Add !channel/!channelinfo

This commit is contained in:
Dragory 2020-08-05 22:54:14 +03:00
parent a1a5952e44
commit 14af94e7a3
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1
10 changed files with 144 additions and 0 deletions

View file

@ -0,0 +1,25 @@
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 });
},
});