SupportChild/Commands/SayCommand.cs

97 lines
3.1 KiB
C#
Raw Permalink Normal View History

2022-08-21 07:34:11 +00:00
using DSharpPlus.Entities;
2022-02-21 08:40:09 +00:00
using System.Collections.Generic;
using System.ComponentModel;
2024-12-27 07:17:14 +00:00
using System.Globalization;
2022-02-21 08:40:09 +00:00
using System.Threading.Tasks;
using DSharpPlus.Commands;
using DSharpPlus.Commands.ContextChecks;
using DSharpPlus.Commands.Processors.SlashCommands;
using DSharpPlus.Exceptions;
2024-10-29 10:17:44 +00:00
using DSharpPlus.Interactivity;
using DSharpPlus.Interactivity.Extensions;
2022-02-21 08:40:09 +00:00
2022-08-21 07:34:11 +00:00
namespace SupportChild.Commands;
public class SayCommand
2022-02-21 08:40:09 +00:00
{
[RequireGuild]
[Command("say")]
[Description("Prints a message with information from staff. Use without identifier to list all identifiers.")]
public async Task OnExecute(SlashCommandContext command,
[Parameter("Identifier")][Description("(Optional) The identifier word to summon a message.")] string identifier = null)
{
// Print list of all messages if no identifier is provided
if (identifier == null)
{
2024-12-27 07:17:14 +00:00
await SendMessageList(command);
2024-10-29 10:17:44 +00:00
return;
}
2022-02-21 08:40:09 +00:00
2024-12-27 07:17:14 +00:00
if (!Database.TryGetMessage(identifier.ToLower(CultureInfo.InvariantCulture),
out Database.Message message))
2024-10-29 10:17:44 +00:00
{
await command.RespondAsync(new DiscordEmbedBuilder
{
2024-10-29 10:17:44 +00:00
Color = DiscordColor.Red,
Description = "There is no message with that identifier."
}, true);
return;
}
await command.RespondAsync(new DiscordEmbedBuilder
2024-10-29 10:17:44 +00:00
{
Color = DiscordColor.Cyan,
Description = message.message.Replace("\\n", "\n")
});
2024-12-27 07:17:14 +00:00
await LogChannel.Success(command.User.Mention + " posted the " + message.identifier + " message in " + command.Channel.Mention + ".");
2024-10-29 10:17:44 +00:00
}
2022-02-21 08:40:09 +00:00
2024-12-27 07:17:14 +00:00
private static async Task SendMessageList(SlashCommandContext command)
2024-10-29 10:17:44 +00:00
{
List<Database.Message> messages = Database.GetAllMessages();
if (messages.Count == 0)
{
await command.RespondAsync(new DiscordEmbedBuilder
{
2024-10-29 10:17:44 +00:00
Color = DiscordColor.Red,
Description = "There are no messages registered."
}, true);
return;
}
List<string> listItems = [];
foreach (Database.Message message in messages)
{
listItems.Add("**" + message.identifier + "** Added by <@" + message.userID + ">\n");
}
2024-10-29 10:17:44 +00:00
List<DiscordEmbedBuilder> embeds = [];
foreach (string message in Utilities.ParseListIntoMessages(listItems))
{
2024-10-29 10:17:44 +00:00
embeds.Add(new DiscordEmbedBuilder
{
2024-10-29 10:17:44 +00:00
Title = "Available messages:",
Color = DiscordColor.Green,
Description = message
});
}
2022-02-21 08:40:09 +00:00
2024-10-29 10:17:44 +00:00
// Add the footers
for (int i = 0; i < embeds.Count; i++)
{
embeds[i].Footer = new DiscordEmbedBuilder.EmbedFooter
{
2024-10-29 10:17:44 +00:00
Text = $"Page {i + 1} / {embeds.Count}"
};
}
List<Page> listPages = [];
foreach (DiscordEmbedBuilder embed in embeds)
{
listPages.Add(new Page("", embed));
}
2024-10-29 10:17:44 +00:00
await command.Interaction.SendPaginatedResponseAsync(true, command.User, listPages);
}
2022-05-19 11:38:59 +00:00
}