Add new features

This commit is contained in:
Tarrgon
2026-05-19 09:04:59 -04:00
parent 9dc2034700
commit d08b21492a
8 changed files with 310 additions and 109 deletions
@@ -0,0 +1,40 @@
import { ButtonInteraction, Client, MessageFlags, MessageMentions } from 'discord.js';
import { createPrivateHelpTicketThread } from '../utils';
export default {
name: 'open-ticket-for-reported-message',
handler: async function (client: Client, interaction: ButtonInteraction) {
const message = await interaction.message.fetch();
const guild = await interaction.guild!.fetch();
const reportEmbed = message.embeds[0]!;
const regex = new RegExp(MessageMentions.UsersPattern);
const reportedMessageUrl = reportEmbed.fields[0].value;
const reporterId = regex.exec(reportEmbed.fields[2].value)!.groups!.id;
const additionalInfo = reportEmbed.fields[3]?.name == 'Additional Information' ? reportEmbed.fields[3].value : '';
const reporter = await guild.members.fetch(reporterId) ?? await client.users.fetch(reporterId);
const thread = await createPrivateHelpTicketThread(client, guild, null, `Ticket creted by staff in response to message report: ${message.url}. Reported message: ${reportedMessageUrl}. ${additionalInfo ? `\n\nAdditional information provided in report:\n${additionalInfo.split('\n').map(c => `> ${c}`).join('\n')}` : ''}`, `Mod Ticket For Message Report From ${reporter.displayName}`, [reporterId, interaction.user.id]);
if (thread) {
await interaction.reply({
flags: [MessageFlags.Ephemeral],
content: `Ticket created: ${thread}`
});
const requestIndex = reportEmbed.fields.findIndex(f => f.name == 'User Requested Private Ticket');
if (requestIndex != -1) reportEmbed.fields.splice(requestIndex, 1);
reportEmbed.fields.push({
name: 'Private Help Ticket',
value: thread.url,
inline: false
});
await message.edit({ embeds: [reportEmbed], components: [] });
}
}
};