src/interactions/commands/ticket-manage.ts (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 |
import { db, guild as guildTable } from "@/database";
import { getTicketMessage } from "@/database/queries";
import {
ActionRowBuilder,
ButtonBuilder,
ButtonStyle,
type ChatInputCommandInteraction,
type Client,
ContainerBuilder,
type GuildMember,
LabelBuilder,
ModalBuilder,
type ModalSubmitInteraction,
PermissionFlagsBits,
SlashCommandBuilder,
TextDisplayBuilder,
TextInputBuilder,
TextInputStyle,
} from "discord.js";
import { makeComponentId } from "@/utils/discord/components";
import { hasManagerPermissions } from "@/utils/discord/permissions";
import { loggers } from "@/utils/logging";
import { formatMessage } from "@/utils/tickets/formatting";
import { eq } from "drizzle-orm";
const logger = loggers.interactions.child({ name: "messageCommand" });
const commandData = new SlashCommandBuilder()
.setName("manage-tickets")
.setDescription("Manage aspects of the ticket system")
.setDefaultMemberPermissions(PermissionFlagsBits.ModerateMembers)
.addSubcommand((subcommand) =>
subcommand
.setName("prompt")
.setDescription("Send the prompt to the designated channel")
.addChannelOption((c) =>
c
.setName("channel")
.setDescription("The channel to send the prompt in")
.setRequired(true),
),
)
.addSubcommand((subcommand) =>
subcommand
.setName("message")
.setDescription(
"Edit the saved ticket message (shown when a ticket is created)",
),
);
const MODAL_ID = makeComponentId(commandData, "message");
const INPUT_ID = "message_content";
async function execute(
_client: Client,
interaction: ChatInputCommandInteraction,
) {
if (!interaction.guild || !interaction.member) {
await interaction.reply({
content: "❌ This command can only be used in a server.",
flags: ["Ephemeral"],
});
return;
}
const hasPerms = await hasManagerPermissions(
interaction.member as GuildMember,
);
if (!hasPerms) {
await interaction.reply({
content: "❌ You don't have permission to use this command.",
flags: ["Ephemeral"],
});
return;
}
const sub = interaction.options.getSubcommand();
if (sub === "prompt") {
const targetChannel = interaction.options.getChannel("channel", true);
const textInput = new LabelBuilder()
.setLabel("Message Content")
.setDescription(
"This message will be followed by a button to create a new ticket.",
)
.setTextInputComponent(
new TextInputBuilder()
.setCustomId(INPUT_ID)
.setStyle(TextInputStyle.Paragraph)
.setRequired(true),
);
await interaction.showModal(
new ModalBuilder()
.setCustomId(`${MODAL_ID}:${targetChannel.id}`)
.setTitle("Ticket Prompt")
.setLabelComponents(textInput),
);
return;
}
if (sub === "message") {
const { data: currentMessage } = await getTicketMessage(
interaction.guild.id,
);
const textInput = new LabelBuilder()
.setLabel("Message Content")
.setDescription(
"This message will be shown to users when they create a ticket.",
)
.setTextInputComponent(
new TextInputBuilder()
.setCustomId(INPUT_ID)
.setStyle(TextInputStyle.Paragraph)
.setRequired(true)
.setValue(currentMessage ?? ""),
);
await interaction.showModal(
new ModalBuilder()
.setCustomId(MODAL_ID)
.setTitle("Edit Ticket Message")
.setLabelComponents(textInput),
);
return;
}
}
async function modalExecute(
_client: Client,
interaction: ModalSubmitInteraction,
) {
await interaction.deferReply({ flags: ["Ephemeral"] });
if (!interaction.channelId || !interaction.guild || !interaction.guildId) {
await interaction.editReply({
content: "This command can only be used in a server.",
});
return;
}
const parts = interaction.customId.split(":");
const channelId = parts[2];
const messageContent = interaction.fields.getTextInputValue(INPUT_ID);
if (channelId) {
const channel = interaction.guild.channels.cache.get(channelId);
if (!channel) {
await interaction.editReply({
content: "❌ The channel specified is invalid.",
});
return;
}
if (!channel.isSendable()) {
await interaction.editReply({
content: "❌ I'm not able to send messages in the specified channel.",
});
return;
}
const formatted = formatMessage(messageContent, interaction.user.id);
const controls = new ActionRowBuilder<ButtonBuilder>().addComponents(
new ButtonBuilder()
.setCustomId("ticket:create")
.setLabel("Open a Ticket")
.setEmoji("📩")
.setStyle(ButtonStyle.Success),
);
const container = new ContainerBuilder()
.addTextDisplayComponents(new TextDisplayBuilder().setContent(formatted))
.addActionRowComponents(controls);
const sent = await channel
.send({ components: [container], flags: ["IsComponentsV2"] })
.catch((err) => {
logger.error({ err, channelId }, "Failed to send ticket message");
return null;
});
if (!sent) {
await interaction.editReply({
content: "❌ Failed to send the message in the specified channel.",
});
return;
}
await interaction.editReply({
content: `✅ Message sent successfully! ${sent.url}`,
allowedMentions: {
users: [],
},
});
return;
}
try {
await db
.update(guildTable)
.set({ ticket_message: messageContent })
.where(eq(guildTable.guildId, interaction.guildId));
await interaction.editReply({
content: "✅ Ticket message updated successfully!",
});
} catch (err) {
logger.error(err, "Failed to update ticket message in DB");
await interaction.editReply({
content: "❌ Failed to update ticket message.",
});
}
}
export default {
data: commandData,
execute,
modalExecute,
};
|