mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2025-09-06 18:21:25 +03:00
fix command options & types
and start on closing
This commit is contained in:
@@ -19,7 +19,7 @@ module.exports = class AddSlashCommand extends SlashCommand {
|
||||
autocomplete: true,
|
||||
name: 'ticket',
|
||||
required: false,
|
||||
type: ApplicationCommandOptionType.Integer,
|
||||
type: ApplicationCommandOptionType.String,
|
||||
},
|
||||
];
|
||||
opts = opts.map(o => {
|
||||
|
@@ -1,5 +1,4 @@
|
||||
const { SlashCommand } = require('@eartharoid/dbf');
|
||||
const { ApplicationCommandOptionType } = require('discord.js');
|
||||
|
||||
module.exports = class ClaimSlashCommand extends SlashCommand {
|
||||
constructor(client, options) {
|
||||
@@ -19,5 +18,7 @@ module.exports = class ClaimSlashCommand extends SlashCommand {
|
||||
});
|
||||
}
|
||||
|
||||
async run(interaction) { }
|
||||
async run(interaction) {
|
||||
// tickets/manager.js
|
||||
}
|
||||
};
|
@@ -19,11 +19,6 @@ module.exports = class CloseSlashCommand extends SlashCommand {
|
||||
autocomplete: true,
|
||||
name: 'ticket',
|
||||
required: false,
|
||||
type: ApplicationCommandOptionType.Integer,
|
||||
},
|
||||
{
|
||||
name: 'time',
|
||||
required: false,
|
||||
type: ApplicationCommandOptionType.String,
|
||||
},
|
||||
];
|
||||
@@ -53,5 +48,10 @@ module.exports = class CloseSlashCommand extends SlashCommand {
|
||||
});
|
||||
}
|
||||
|
||||
async run(interaction) { }
|
||||
/**
|
||||
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
||||
*/
|
||||
async run(interaction) {
|
||||
|
||||
}
|
||||
};
|
@@ -1,5 +1,14 @@
|
||||
const { SlashCommand } = require('@eartharoid/dbf');
|
||||
const { ApplicationCommandOptionType } = require('discord.js');
|
||||
const {
|
||||
ApplicationCommandOptionType,
|
||||
ActionRowBuilder,
|
||||
ButtonBuilder,
|
||||
ButtonStyle,
|
||||
ComponentType,
|
||||
} = require('discord.js');
|
||||
const ExtendedEmbedBuilder = require('../../lib/embed');
|
||||
const { isStaff } = require('../../lib/users');
|
||||
const ms = require('ms');
|
||||
|
||||
module.exports = class ForceCloseSlashCommand extends SlashCommand {
|
||||
constructor(client, options) {
|
||||
@@ -19,7 +28,7 @@ module.exports = class ForceCloseSlashCommand extends SlashCommand {
|
||||
autocomplete: true,
|
||||
name: 'ticket',
|
||||
required: false,
|
||||
type: ApplicationCommandOptionType.Integer,
|
||||
type: ApplicationCommandOptionType.String,
|
||||
},
|
||||
{
|
||||
name: 'time',
|
||||
@@ -53,5 +62,183 @@ module.exports = class ForceCloseSlashCommand extends SlashCommand {
|
||||
});
|
||||
}
|
||||
|
||||
async run(interaction) { }
|
||||
/**
|
||||
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
||||
*/
|
||||
async run(interaction) {
|
||||
/** @type {import("client")} */
|
||||
const client = this.client;
|
||||
|
||||
await interaction.deferReply();
|
||||
|
||||
const settings = await client.prisma.guild.findUnique({ where: { id: interaction.guild.id } });
|
||||
const getMessage = this.client.i18n.getLocale(settings.locale);
|
||||
let ticket;
|
||||
|
||||
if (!isStaff(interaction.guild, interaction.user.id)) { // if user is not staff
|
||||
return await interaction.editReply({
|
||||
embeds: [
|
||||
new ExtendedEmbedBuilder({
|
||||
iconURL: interaction.guild.iconURL(),
|
||||
text: settings.footer,
|
||||
})
|
||||
.setColor(settings.errorColour)
|
||||
.setTitle(getMessage('commands.slash.force-close.not_staff.title'))
|
||||
.setDescription(getMessage('commands.slash.force-close.not_staff.description')),
|
||||
],
|
||||
});
|
||||
}
|
||||
|
||||
if (interaction.options.getString('time', false)) { // if time option is passed
|
||||
const time = ms(interaction.options.getString('time', false));
|
||||
|
||||
if (!time) {
|
||||
return await interaction.editReply({
|
||||
embeds: [
|
||||
new ExtendedEmbedBuilder({
|
||||
iconURL: interaction.guild.iconURL(),
|
||||
text: settings.footer,
|
||||
})
|
||||
.setColor(settings.errorColour)
|
||||
.setTitle(getMessage('commands.slash.close.invalid_time.title'))
|
||||
.setDescription(getMessage('commands.slash.close.invalid_time.description', { input: interaction.options.getString('time', false) })),
|
||||
],
|
||||
});
|
||||
}
|
||||
|
||||
const tickets = await client.prisma.ticket.findMany({
|
||||
where: {
|
||||
lastMessageAt: { lte: new Date(Date.now() - time) },
|
||||
open: true,
|
||||
},
|
||||
});
|
||||
|
||||
if (tickets.length === 0) {
|
||||
return await interaction.editReply({
|
||||
embeds: [
|
||||
new ExtendedEmbedBuilder({
|
||||
iconURL: interaction.guild.iconURL(),
|
||||
text: settings.footer,
|
||||
})
|
||||
.setColor(settings.errorColour)
|
||||
.setTitle(getMessage('commands.slash.force-close.no_tickets.title'))
|
||||
.setDescription(getMessage('commands.slash.force-close.no_tickets.description', { time: ms(time, { long: true }) })),
|
||||
],
|
||||
});
|
||||
}
|
||||
|
||||
let confirmed = false;
|
||||
const collectorTime = ms('15s');
|
||||
const confirmationM = await interaction.editReply({
|
||||
components: [
|
||||
new ActionRowBuilder()
|
||||
.addComponents([
|
||||
new ButtonBuilder()
|
||||
.setCustomId(JSON.stringify({
|
||||
action: 'custom',
|
||||
id: 'close',
|
||||
}))
|
||||
.setStyle(ButtonStyle.Danger)
|
||||
.setEmoji(getMessage('buttons.close.emoji'))
|
||||
.setLabel(getMessage('buttons.close.text')),
|
||||
new ButtonBuilder()
|
||||
.setCustomId(JSON.stringify({
|
||||
action: 'custom',
|
||||
id: 'cancel',
|
||||
}))
|
||||
.setStyle(ButtonStyle.Secondary)
|
||||
.setEmoji(getMessage('buttons.cancel.emoji'))
|
||||
.setLabel(getMessage('buttons.cancel.text')),
|
||||
]),
|
||||
],
|
||||
embeds: [
|
||||
new ExtendedEmbedBuilder({
|
||||
iconURL: interaction.guild.iconURL(),
|
||||
text: getMessage('misc.expires_in', { time: ms(collectorTime, { long: true }) }),
|
||||
})
|
||||
.setColor(settings.primaryColour)
|
||||
.setTitle(getMessage('commands.slash.force-close.confirm_multiple.title'))
|
||||
.setDescription(getMessage('commands.slash.force-close.confirm_multiple.description', {
|
||||
count: tickets.length,
|
||||
tickets: tickets.map(t => `> <#${t.id}>`).join('\n'),
|
||||
time: ms(time, { long: true }),
|
||||
})),
|
||||
],
|
||||
});
|
||||
|
||||
|
||||
confirmationM.awaitMessageComponent({
|
||||
componentType: ComponentType.Button,
|
||||
filter: i => {
|
||||
i.deferUpdate();
|
||||
return i.user.id === interaction.user.id;
|
||||
},
|
||||
time: collectorTime,
|
||||
})
|
||||
.then(i => {
|
||||
if (JSON.parse(i.customId).id === 'close') {
|
||||
confirmed = true;
|
||||
// TODO: i.editReply
|
||||
} else {
|
||||
// TODO: cancelled
|
||||
}
|
||||
})
|
||||
.catch(() => interaction.editReply({
|
||||
components: [],
|
||||
embeds: [
|
||||
new ExtendedEmbedBuilder({
|
||||
iconURL: interaction.guild.iconURL(),
|
||||
text: settings.footer,
|
||||
})
|
||||
.setColor(settings.errorColour)
|
||||
.setTitle(getMessage('misc.expired.title'))
|
||||
.setDescription(getMessage('misc.expired.description', { time: ms(time, { long: true }) })),
|
||||
],
|
||||
}));
|
||||
|
||||
if (!confirmed) return;
|
||||
|
||||
// TODO: tickets: for each, close (check reason)
|
||||
} else if (interaction.options.getString('ticket', false)) { // if ticket option is passed
|
||||
ticket = await client.prisma.ticket.findUnique({
|
||||
include: { category: true },
|
||||
where: { id: interaction.options.getString('ticket', false) },
|
||||
});
|
||||
|
||||
if (!ticket) {
|
||||
return await interaction.editReply({
|
||||
embeds: [
|
||||
new ExtendedEmbedBuilder({
|
||||
iconURL: interaction.guild.iconURL(),
|
||||
text: settings.footer,
|
||||
})
|
||||
.setColor(settings.errorColour)
|
||||
.setTitle(getMessage('misc.invalid_ticket.title'))
|
||||
.setDescription(getMessage('misc.invalid_ticket.description')),
|
||||
],
|
||||
});
|
||||
}
|
||||
} else {
|
||||
ticket = await client.prisma.ticket.findUnique({
|
||||
include: { category: true },
|
||||
where: { id: interaction.channel.id },
|
||||
});
|
||||
|
||||
if (!ticket) {
|
||||
return await interaction.editReply({
|
||||
embeds: [
|
||||
new ExtendedEmbedBuilder({
|
||||
iconURL: interaction.guild.iconURL(),
|
||||
text: settings.footer,
|
||||
})
|
||||
.setColor(settings.errorColour)
|
||||
.setTitle(getMessage('misc.not_ticket.title'))
|
||||
.setDescription(getMessage('misc.not_ticket.description')),
|
||||
],
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// TODO: close (reason)
|
||||
}
|
||||
};
|
@@ -1,5 +1,4 @@
|
||||
const { SlashCommand } = require('@eartharoid/dbf');
|
||||
const { ApplicationCommandOptionType } = require('discord.js');
|
||||
|
||||
module.exports = class ReleaseSlashCommand extends SlashCommand {
|
||||
constructor(client, options) {
|
||||
|
@@ -19,7 +19,7 @@ module.exports = class RemoveSlashCommand extends SlashCommand {
|
||||
autocomplete: true,
|
||||
name: 'ticket',
|
||||
required: false,
|
||||
type: ApplicationCommandOptionType.Integer,
|
||||
type: ApplicationCommandOptionType.String,
|
||||
},
|
||||
];
|
||||
opts = opts.map(o => {
|
||||
|
@@ -14,7 +14,7 @@ module.exports = class TranscriptSlashCommand extends SlashCommand {
|
||||
autocomplete: true,
|
||||
name: 'ticket',
|
||||
required: true,
|
||||
type: ApplicationCommandOptionType.Integer,
|
||||
type: ApplicationCommandOptionType.String,
|
||||
},
|
||||
];
|
||||
opts = opts.map(o => {
|
||||
|
@@ -14,7 +14,7 @@ module.exports = class TransferSlashCommand extends SlashCommand {
|
||||
autocomplete: true,
|
||||
name: 'category',
|
||||
required: true,
|
||||
type: ApplicationCommandOptionType.String,
|
||||
type: ApplicationCommandOptionType.Integer,
|
||||
},
|
||||
];
|
||||
opts = opts.map(o => {
|
||||
|
@@ -14,6 +14,8 @@ module.exports = class CreateUserCommand extends UserCommand {
|
||||
}
|
||||
|
||||
async run(interaction) {
|
||||
// TODO: isStaff?
|
||||
// TODO: user->create
|
||||
// select category
|
||||
// send button
|
||||
}
|
||||
|
Reference in New Issue
Block a user