apps/bot/src/feats/tickets/actions.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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 |
import { randomUUID } from "node:crypto";
import {
TextChannel,
ChannelType,
type Guild,
ContainerBuilder,
TextDisplayBuilder,
ActionRowBuilder,
DiscordAPIError,
} from "discord.js";
import { Result } from "@sapphire/framework";
import { ButtonBuilder } from "discord.js";
import db, {
desc,
editTicket,
eq,
getGuildByDiscordId,
getTicketByChannelId,
tickets,
type Actor,
} from "@stealth-developers/db";
import { upsertUser, getCategory, PublicError, logger } from "@/lib";
import type { AnyUser, MessageSendPayload } from "@/types";
import { TicketButtonPresets } from "./buttons";
import { TicketModalPresets } from "./modals";
type CreateTicketArgs =
| undefined
| {
for: AnyUser;
reason?: string;
};
export async function createTicket(
opener: AnyUser,
guild: Guild,
args?: CreateTicketArgs,
): Promise<{ channelId: string; publicId: string }> {
const isOnBehalf = !!args?.for;
const publicId = randomUUID();
const dbGuild = await getGuildByDiscordId(guild.id);
if (!dbGuild) throw new PublicError("Failed to create ticket: Guild not found in database");
const creator = await upsertUser(opener, guild);
if (!creator) throw new PublicError("Failed to create ticket: Creator user not found");
const subject = isOnBehalf ? args?.for : opener;
const subjectUser = subject ? await upsertUser(subject, guild) : creator;
if (!subjectUser) throw new PublicError("Failed to create ticket: Subject user not found");
if (isOnBehalf && !creator.moderator)
throw new PublicError("You don't have permission to create a ticket for another user.");
if (!dbGuild.ticketCategory)
throw new PublicError(
"Ticket category is not set up in this guild. Please contact an administrator.",
);
const ticketCategory = await getCategory(dbGuild.ticketCategory);
let createdChannel: TextChannel | undefined = undefined;
const canDm = await canDmUser(subject);
const txResult = await Result.fromAsync(async () => {
return await db.transaction(async (tx) => {
const [maxTicket] = await tx
.select({ localId: tickets.localId })
.from(tickets)
.where(eq(tickets.guildId, creator.guildId))
.orderBy(desc(tickets.localId))
.limit(1);
const localId = (maxTicket?.localId ?? 0) + 1;
const [ticket] = await tx
.insert(tickets)
.values({
id: publicId,
guildId: creator.guildId,
localId: localId,
status: "open",
openedAt: new Date(),
openedBy: creator.id,
subject: subjectUser.id,
})
.returning();
if (!ticket) throw new PublicError("Failed to add ticket to database, please try again.");
const ticketNumber = ticket.localId;
const paddedTicketNumber = String(ticketNumber).padStart(4, "0");
const channel = await guild.channels.create({
name: `ticket-${paddedTicketNumber}`,
type: ChannelType.GuildText,
parent: ticketCategory,
});
if (!channel) throw new PublicError("Failed to create Discord channel.");
createdChannel = channel;
const greeting = dbGuild.ticketGreeting;
const components = [];
if (greeting)
components.push(
new ContainerBuilder()
.setAccentColor(0x3a9027)
.addTextDisplayComponents(
new TextDisplayBuilder({
content: greeting.replaceAll("{user}", `<@${subjectUser.discordId}>`),
}),
)
.addActionRowComponents(
new ActionRowBuilder<ButtonBuilder>().addComponents(
TicketButtonPresets.claim(publicId),
TicketButtonPresets.close(publicId),
),
),
);
if (!canDm)
components.push(
new ContainerBuilder()
.setAccentColor(0xdf8e1d)
.addTextDisplayComponents(
new TextDisplayBuilder().setContent("## I can't DM you!"),
new TextDisplayBuilder().setContent(
[
"You won't receive a notification once your ticket has been handled.",
`To check the outcome, you can use the \`/ticket view\` command with the ID \`${ticket.localId}\``,
"or, see all of your tickets with `/ticket manage list`.",
].join(" "),
),
),
);
components.push(
new ContainerBuilder()
.setAccentColor(0x3a9027)
.addTextDisplayComponents(
new TextDisplayBuilder({
content: [
"# Uploading Videos\n",
"You can either upload your video directly to this channel, or",
"you can use the button below to upload it directly to us, which",
"allows you to upload videos up to 2GB in size.",
].join(" "),
}),
)
.addActionRowComponents(
new ActionRowBuilder<ButtonBuilder>().addComponents(
TicketButtonPresets.upload(publicId),
),
),
);
await channel.send({
components,
flags: ["IsComponentsV2"],
});
await tx.update(tickets).set({ channelId: channel.id }).where(eq(tickets.id, ticket.id));
return channel;
});
});
if (txResult.isErr()) {
if (createdChannel) await Result.fromAsync(() => createdChannel?.delete());
const error = txResult.unwrapErr();
const message =
error instanceof PublicError
? `Failed to create ticket: ${error.message}`
: "There was an error creating the ticket.";
if (error instanceof Error) logger.error(error.stack, error.message);
throw new PublicError(message);
}
const channel = txResult.unwrap();
return { channelId: channel.id, publicId };
}
export async function triggerCloseTicket(user: AnyUser, guild: Guild, channelId: string) {
const dbGuild = await getGuildByDiscordId(guild.id);
if (!dbGuild) throw new PublicError("Failed to create ticket: Guild not found in database");
const dbUser = await upsertUser(user, guild);
if (!dbUser) throw new PublicError("Failed to create ticket: User not found in database");
const ticket = await getTicketByChannelId(channelId);
if (!ticket) throw new PublicError("Failed to close ticket: Ticket not found in database");
return TicketModalPresets.close(ticket.id, Boolean(dbUser.moderator));
}
export async function closeTicket(
user: Actor,
ticketId: string,
reasons: { public: string; private?: string | null },
) {
const result = await editTicket(ticketId, {
closedAt: new Date(),
closeReason: reasons.public,
privateReason: reasons.private,
closedBy: user.id,
status: "closed",
});
if (!result) throw new PublicError("Failed to close ticket: Ticket not found in database");
return result;
}
export async function canDmUser(user: AnyUser): Promise<boolean> {
if (!("send" in user)) return false;
return user
.send({
content: "Hi! I'm just checking if your DMs are open.",
flags: ["SuppressNotifications"],
})
.then(() => true)
.catch(() => false);
}
export async function messageUser(user: AnyUser, message: MessageSendPayload) {
if (!("send" in user))
throw new PublicError("Failed to message user: User is not a Discord user");
const result = await Result.fromAsync(user.send(message));
if (result.isErr()) {
const error = result.unwrapErr();
if (error instanceof DiscordAPIError && [50007, 50278].includes(error.code as number))
throw new PublicError("Failed to message user: User has DMs disabled");
throw error;
}
return result.unwrap();
}
|