2022-04-18 10:52:03 +00:00
|
|
|
|
using System;
|
2022-02-21 08:40:09 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Threading.Tasks;
|
2022-08-21 07:34:11 +00:00
|
|
|
|
using DSharpPlus;
|
2022-02-21 08:40:09 +00:00
|
|
|
|
using DSharpPlus.Entities;
|
|
|
|
|
using DSharpPlus.Exceptions;
|
2022-08-21 07:34:11 +00:00
|
|
|
|
using DSharpPlus.SlashCommands;
|
|
|
|
|
using DSharpPlus.SlashCommands.Attributes;
|
2022-02-21 08:40:09 +00:00
|
|
|
|
|
2022-08-21 07:34:11 +00:00
|
|
|
|
namespace SupportChild.Commands;
|
|
|
|
|
|
|
|
|
|
public class CloseCommand : ApplicationCommandModule
|
2022-02-21 08:40:09 +00:00
|
|
|
|
{
|
2024-10-29 09:10:37 +00:00
|
|
|
|
[SlashRequireGuild]
|
|
|
|
|
[SlashCommand("close", "Closes a ticket.")]
|
|
|
|
|
public async Task OnExecute(InteractionContext command)
|
|
|
|
|
{
|
|
|
|
|
// Check if ticket exists in the database
|
|
|
|
|
if (!Database.TryGetOpenTicket(command.Channel.Id, out Database.Ticket _))
|
|
|
|
|
{
|
|
|
|
|
await command.CreateResponseAsync(new DiscordEmbedBuilder
|
|
|
|
|
{
|
|
|
|
|
Color = DiscordColor.Red,
|
|
|
|
|
Description = "This channel is not a ticket."
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DiscordInteractionResponseBuilder confirmation = new DiscordInteractionResponseBuilder()
|
|
|
|
|
.AddEmbed(new DiscordEmbedBuilder
|
|
|
|
|
{
|
|
|
|
|
Color = DiscordColor.Cyan,
|
|
|
|
|
Description = "Are you sure you wish to close this ticket? You cannot re-open it again later."
|
|
|
|
|
})
|
|
|
|
|
.AddComponents(new DiscordButtonComponent(ButtonStyle.Danger, "supportchild_closeconfirm", "Confirm"));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
await command.CreateResponseAsync(confirmation);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static async Task OnConfirmed(DiscordInteraction interaction)
|
|
|
|
|
{
|
|
|
|
|
await interaction.CreateResponseAsync(InteractionResponseType.DeferredMessageUpdate);
|
|
|
|
|
ulong channelID = interaction.Channel.Id;
|
|
|
|
|
string channelName = interaction.Channel.Name;
|
|
|
|
|
|
|
|
|
|
// Check if ticket exists in the database
|
|
|
|
|
if (!Database.TryGetOpenTicket(channelID, out Database.Ticket ticket))
|
|
|
|
|
{
|
|
|
|
|
await interaction.EditOriginalResponseAsync(new DiscordWebhookBuilder().AddEmbed(new DiscordEmbedBuilder
|
|
|
|
|
{
|
|
|
|
|
Color = DiscordColor.Red,
|
|
|
|
|
Description = "This channel is not a ticket."
|
|
|
|
|
}));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Build transcript
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
await Transcriber.ExecuteAsync(interaction.Channel.Id, ticket.id);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Logger.Error("Exception occured when trying to save transcript while closing ticket: " + e);
|
|
|
|
|
await interaction.EditOriginalResponseAsync(new DiscordWebhookBuilder().AddEmbed(new DiscordEmbedBuilder
|
|
|
|
|
{
|
|
|
|
|
Color = DiscordColor.Red,
|
|
|
|
|
Description = "ERROR: Could not save transcript file. Aborting..."
|
|
|
|
|
}));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Log it if the log channel exists
|
|
|
|
|
DiscordChannel logChannel = interaction.Guild.GetChannel(Config.logChannel);
|
|
|
|
|
if (logChannel != null)
|
|
|
|
|
{
|
|
|
|
|
DiscordEmbed embed = new DiscordEmbedBuilder
|
|
|
|
|
{
|
|
|
|
|
Color = DiscordColor.Green,
|
|
|
|
|
Description = "Ticket " + ticket.id.ToString("00000") + " closed by " + interaction.User.Mention + ".\n",
|
|
|
|
|
Footer = new DiscordEmbedBuilder.EmbedFooter { Text = '#' + channelName }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
await using FileStream file = new FileStream(Transcriber.GetPath(ticket.id), FileMode.Open, FileAccess.Read);
|
|
|
|
|
DiscordMessageBuilder message = new DiscordMessageBuilder();
|
2024-10-29 09:52:02 +00:00
|
|
|
|
message.AddEmbed(embed);
|
2024-10-29 09:10:37 +00:00
|
|
|
|
message.AddFiles(new Dictionary<string, Stream> { { Transcriber.GetFilename(ticket.id), file } });
|
|
|
|
|
|
|
|
|
|
await logChannel.SendMessageAsync(message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Config.closingNotifications)
|
|
|
|
|
{
|
|
|
|
|
DiscordEmbed embed = new DiscordEmbedBuilder
|
|
|
|
|
{
|
|
|
|
|
Color = DiscordColor.Green,
|
|
|
|
|
Description = "Ticket " + ticket.id.ToString("00000") + " which you opened has now been closed, check the transcript for more info.\n",
|
|
|
|
|
Footer = new DiscordEmbedBuilder.EmbedFooter { Text = '#' + channelName }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
DiscordMember staffMember = await interaction.Guild.GetMemberAsync(ticket.creatorID);
|
|
|
|
|
await using FileStream file = new FileStream(Transcriber.GetPath(ticket.id), FileMode.Open, FileAccess.Read);
|
|
|
|
|
|
|
|
|
|
DiscordMessageBuilder message = new DiscordMessageBuilder();
|
2024-10-29 09:52:02 +00:00
|
|
|
|
message.AddEmbed(embed);
|
2024-10-29 09:10:37 +00:00
|
|
|
|
message.AddFiles(new Dictionary<string, Stream> { { Transcriber.GetFilename(ticket.id), file } });
|
|
|
|
|
|
|
|
|
|
await staffMember.SendMessageAsync(message);
|
|
|
|
|
}
|
|
|
|
|
catch (NotFoundException) { }
|
|
|
|
|
catch (UnauthorizedException) { }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Database.ArchiveTicket(ticket);
|
|
|
|
|
|
|
|
|
|
await interaction.EditOriginalResponseAsync(new DiscordWebhookBuilder().AddEmbed(new DiscordEmbedBuilder
|
|
|
|
|
{
|
|
|
|
|
Color = DiscordColor.Green,
|
|
|
|
|
Description = "Channel will be deleted in 3 seconds..."
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
await Task.Delay(3000);
|
|
|
|
|
|
|
|
|
|
// Delete the channel and database entry
|
|
|
|
|
await interaction.Channel.DeleteAsync("Ticket closed.");
|
|
|
|
|
|
|
|
|
|
Database.DeleteOpenTicket(ticket.id);
|
|
|
|
|
}
|
2022-05-19 11:38:59 +00:00
|
|
|
|
}
|