using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Threading.Tasks; using DSharpPlus.Commands; using DSharpPlus.Commands.ContextChecks; using DSharpPlus.Commands.Processors.SlashCommands; using DSharpPlus.Entities; using DSharpPlus.Exceptions; using DSharpPlus.Interactivity; using DSharpPlus.Interactivity.Extensions; namespace SupportChild.Commands; public class ListUnassignedCommand { [RequireGuild] [Command("listunassigned")] [Description("Lists unassigned tickets.")] public async Task OnExecute(SlashCommandContext command) { if (!Database.TryGetAssignedTickets(0, out List unassignedTickets)) { await command.RespondAsync(new DiscordEmbedBuilder { Color = DiscordColor.Green, Description = "There are no unassigned tickets." }); return; } // Get all channels in all guilds the bot is part of List allChannels = new List(); foreach (KeyValuePair guild in SupportChild.client.Guilds) { try { allChannels.AddRange(await guild.Value.GetChannelsAsync()); } catch (Exception) { /*ignored*/ } } List listItems = new List(); foreach (Database.Ticket ticket in unassignedTickets) { try { DiscordChannel channel = allChannels.FirstOrDefault(c => c.Id == ticket.channelID); if (channel != null) { if (command.Member!.PermissionsIn(channel).HasPermission(DiscordPermissions.AccessChannels)) { listItems.Add("**" + ticket.DiscordRelativeTime() + ":** <#" + ticket.channelID + "> by <@" + ticket.creatorID + ">\n"); } } } catch (NotFoundException) { /*ignored*/ } } List embeds = new List(); foreach (string message in Utilities.ParseListIntoMessages(listItems)) { embeds.Add(new DiscordEmbedBuilder { Title = "Unassigned tickets: ", Color = DiscordColor.Green, Description = message }); } // Add the footers for (int i = 0; i < embeds.Count; i++) { embeds[i].Footer = new DiscordEmbedBuilder.EmbedFooter { Text = $"Page {i + 1} / {embeds.Count}" }; } List listPages = new List(); foreach (DiscordEmbedBuilder embed in embeds) { listPages.Add(new Page("", embed)); } await command.Interaction.SendPaginatedResponseAsync(true, command.User, listPages); } }