2022-08-02 20:03:55 +03:00
|
|
|
const { Button } = require('@eartharoid/dbf');
|
2023-01-14 00:25:04 +02:00
|
|
|
const ExtendedEmbedBuilder = require('../lib/embed');
|
2023-01-13 22:48:37 +02:00
|
|
|
const { isStaff } = require('../lib/users');
|
2022-08-02 20:03:55 +03:00
|
|
|
|
|
|
|
module.exports = class CloseButton extends Button {
|
|
|
|
constructor(client, options) {
|
|
|
|
super(client, {
|
|
|
|
...options,
|
|
|
|
id: 'close',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-10-11 23:24:09 +03:00
|
|
|
/**
|
|
|
|
* @param {*} id
|
|
|
|
* @param {import("discord.js").ButtonInteraction} interaction
|
|
|
|
*/
|
|
|
|
async run(id, interaction) {
|
|
|
|
/** @type {import("client")} */
|
|
|
|
const client = this.client;
|
|
|
|
|
2023-01-14 00:25:04 +02:00
|
|
|
// the close button on th opening message, the same as using /close
|
2023-01-13 22:48:37 +02:00
|
|
|
if (id.accepted === undefined) {
|
|
|
|
await client.tickets.beforeRequestClose(interaction);
|
|
|
|
} else {
|
|
|
|
await interaction.deferReply();
|
|
|
|
const ticket = await client.prisma.ticket.findUnique({
|
2023-01-14 00:25:04 +02:00
|
|
|
include: {
|
|
|
|
category: true,
|
|
|
|
guild: true,
|
|
|
|
},
|
2023-01-13 22:48:37 +02:00
|
|
|
where: { id: interaction.channel.id },
|
|
|
|
});
|
2023-01-14 00:25:04 +02:00
|
|
|
const getMessage = client.i18n.getLocale(ticket.guild.locale);
|
|
|
|
const staff = await isStaff(interaction.guild, interaction.user.id);
|
2023-01-13 22:48:37 +02:00
|
|
|
|
2023-01-14 00:25:04 +02:00
|
|
|
if (id.expect === 'staff' && !staff) {
|
|
|
|
return; // TODO: please wait for staff to close the ticket
|
|
|
|
} else if (id.expect === 'user' && staff) {
|
|
|
|
return; // TODO: please wait for the user to respond
|
|
|
|
} else {
|
|
|
|
if (id.accepted) {
|
|
|
|
if (
|
|
|
|
ticket.createdById === interaction.user.id &&
|
|
|
|
ticket.category.enableFeedback &&
|
|
|
|
!ticket.feedback
|
|
|
|
) {
|
|
|
|
return await interaction.showModal(client.tickets.buildFeedbackModal(ticket.guild.locale, { next: 'acceptClose' }));
|
|
|
|
} else {
|
|
|
|
await client.tickets.acceptClose(interaction);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (client.tickets.$stale.has(ticket.id)) {
|
|
|
|
await interaction.channel.messages.edit(
|
|
|
|
client.tickets.$stale.get(ticket.id).message.id,
|
|
|
|
{
|
|
|
|
components: [],
|
|
|
|
embeds: [
|
|
|
|
new ExtendedEmbedBuilder({
|
|
|
|
iconURL: interaction.guild.iconURL(),
|
|
|
|
text: ticket.guild.footer,
|
|
|
|
})
|
|
|
|
.setColor(ticket.guild.errorColour)
|
|
|
|
.setDescription(getMessage('ticket.close.rejected', { user: interaction.user.toString() })),
|
|
|
|
],
|
|
|
|
},
|
|
|
|
);
|
|
|
|
client.tickets.$stale.delete(ticket.id);
|
|
|
|
}
|
|
|
|
}
|
2023-01-13 22:48:37 +02:00
|
|
|
}
|
|
|
|
}
|
2022-10-11 23:24:09 +03:00
|
|
|
}
|
2022-08-02 20:03:55 +03:00
|
|
|
};
|