3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-14 22:05:01 +00:00

Add !roleinfo and !emojiinfo (#198)

This commit is contained in:
Almeida 2021-05-06 19:19:57 +01:00 committed by GitHub
parent fb4f70a29c
commit 519cb4ece2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 247 additions and 46 deletions

View file

@ -0,0 +1,32 @@
import { utilityCmd } from "../types";
import { commandTypeHelpers as ct } from "../../../commandTypes";
import { sendErrorMessage } from "../../../pluginUtils";
import { customEmojiRegex } from "../../../utils";
import { getEmojiInfoEmbed } from "../functions/getEmojiInfoEmbed";
export const EmojiInfoCmd = utilityCmd({
trigger: ["emoji", "emojiinfo"],
description: "Show information about an emoji",
usage: "!emoji 106391128718245888",
permission: "can_emojiinfo",
signature: {
emoji: ct.string({ required: false }),
},
async run({ message, args, pluginData }) {
const emojiIdMatch = args.emoji.match(customEmojiRegex);
if (!emojiIdMatch?.[2]) {
sendErrorMessage(pluginData, message.channel, "Emoji not found");
return;
}
const embed = await getEmojiInfoEmbed(pluginData, emojiIdMatch[2]);
if (!embed) {
sendErrorMessage(pluginData, message.channel, "Emoji not found");
return;
}
message.channel.createMessage({ embed });
},
});