src/interactions/commands/bug/buttons.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 |
import config from "@/config";
import { bugs, db } from "@/database";
import { getGuild } from "@/database/queries";
import { parseComponentId } from "@/utils/discord/components";
import { hasManagerPermissions } from "@/utils/discord/permissions";
import type { ButtonInteraction, Client, GuildMember } from "discord.js";
import { eq } from "drizzle-orm";
import { buildReportModal, updateBugEmbed } from "./_shared";
async function fetchBugById(id: string) {
const parsedId = Number(id);
if (Number.isNaN(parsedId)) return null;
const results = await db.select().from(bugs).where(eq(bugs.id, parsedId));
return results[0] ?? null;
}
export async function handleCloseButton(client: Client, interaction: ButtonInteraction) {
const guildId = interaction.guildId;
if (!guildId) return;
const { parts } = parseComponentId(interaction.customId);
const id = parts[1];
const bug = await fetchBugById(id);
if (!bug) {
await interaction.reply({
content: "❌ Bug not found.",
flags: ["Ephemeral"],
});
return;
}
await db
.update(bugs)
.set({ status: "closed", closedAt: new Date(), updatedAt: new Date() })
.where(eq(bugs.id, bug.id));
const { data, exists } = await getGuild(guildId);
if (!exists) {
await interaction.reply({
content: "❌ Guild configuration not found.",
flags: ["Ephemeral"],
});
return;
}
const channelId = data.bug_channel_id;
if (!channelId) {
await interaction.reply({
content: "❌ Bug channel not configured.",
flags: ["Ephemeral"],
});
return;
}
if (bug.messageId) {
await updateBugEmbed(client, { ...bug, status: "closed" }, bug.messageId, channelId);
}
await interaction.reply({
content: `✅ Bug #${bug.bugNumber.toString().padStart(4, "0")} closed.`,
flags: ["Ephemeral"],
});
}
export async function handleOpenButton(client: Client, interaction: ButtonInteraction) {
const guildId = interaction.guildId;
if (!guildId) return;
const { parts } = parseComponentId(interaction.customId);
const id = parts[1];
const bug = await fetchBugById(id);
if (!bug) {
await interaction.reply({
content: "❌ Bug not found.",
flags: ["Ephemeral"],
});
return;
}
await db
.update(bugs)
.set({ status: "open", closedAt: null, updatedAt: new Date() })
.where(eq(bugs.id, bug.id));
const { data, exists } = await getGuild(guildId);
if (!exists) {
await interaction.reply({
content: "❌ Guild configuration not found.",
flags: ["Ephemeral"],
});
return;
}
const channelId = data.bug_channel_id;
if (!channelId) {
await interaction.reply({
content: "❌ Bug channel not configured.",
flags: ["Ephemeral"],
});
return;
}
if (bug.messageId) {
await updateBugEmbed(client, { ...bug, status: "open" }, bug.messageId, channelId);
}
await interaction.reply({
content: `✅ Bug #${bug.bugNumber.toString().padStart(4, "0")} reopened.`,
flags: ["Ephemeral"],
});
}
export async function handleEditButton(_client: Client, interaction: ButtonInteraction) {
const { parts } = parseComponentId(interaction.customId);
const id = parts[1];
const bug = await fetchBugById(id);
if (!bug) {
await interaction.reply({
content: "❌ Bug not found.",
flags: ["Ephemeral"],
});
return;
}
const modal = buildReportModal(String(bug.id), bug);
await interaction.showModal(modal);
}
export async function handleDeleteButton(_client: Client, interaction: ButtonInteraction) {
const guildId = interaction.guildId;
if (!guildId) return;
const { parts } = parseComponentId(interaction.customId);
const id = parts[1];
const bug = await fetchBugById(id);
if (!bug) {
await interaction.reply({
content: "❌ Bug not found.",
flags: ["Ephemeral"],
});
return;
}
const isManager = await hasManagerPermissions(interaction.member as GuildMember);
const isBugReporter = bug.authorId === interaction.user.id;
if (!isManager && !isBugReporter) {
await interaction.reply({
content: "❌ You don't have permission to delete this bug.",
flags: ["Ephemeral"],
});
return;
}
await db.delete(bugs).where(eq(bugs.id, bug.id));
const { data, exists } = await getGuild(guildId);
if (!exists) {
await interaction.reply({
content: "❌ Guild configuration not found, bug removed from database.",
flags: ["Ephemeral"],
});
return;
}
const channelId = data.bug_channel_id;
if (!channelId) {
await interaction.reply({
content: "✅ Bug removed from database. (No bug channel configured to remove message/thread)",
flags: ["Ephemeral"],
});
return;
}
try {
const channel = await interaction.guild?.channels.fetch(channelId);
if (channel?.isTextBased() && bug.messageId) {
const { message } = interaction;
const { thread } = message;
if (message) {
if (thread)
await thread
.delete(`bug ${bug.bugNumber} deleted by <@${interaction.user.id}>`)
.catch(() => {});
await message.delete().catch(() => {});
}
}
} catch {}
await interaction.reply({
content: `✅ Bug #${bug.bugNumber.toString().padStart(4, "0")} deleted.`,
flags: ["Ephemeral"],
});
}
export async function handleTrelloButton(_client: Client, interaction: ButtonInteraction) {
const { parts } = parseComponentId(interaction.customId);
const id = parts[1];
const bug = await fetchBugById(id);
if (!bug) {
await interaction.reply({
content: "❌ Bug not found.",
flags: ["Ephemeral"],
});
return;
}
const params = new URLSearchParams({
name: bug.title,
url: interaction.message.url,
idBoard: config.trelloBoardId || "",
});
const url = new URL("https://trello.com/addCard");
url.search = params.toString();
await interaction.reply({
content: url.toString(),
flags: ["Ephemeral"],
});
}
|