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.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
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 SayCommand : ApplicationCommandModule
|
2022-02-21 08:40:09 +00:00
|
|
|
|
{
|
2024-10-29 09:10:37 +00:00
|
|
|
|
[SlashRequireGuild]
|
|
|
|
|
[SlashCommand("say", "Prints a message with information from staff. Use without identifier to list all identifiers.")]
|
|
|
|
|
public async Task OnExecute(InteractionContext command, [Option("Identifier", "(Optional) The identifier word to summon a message.")] string identifier = null)
|
|
|
|
|
{
|
|
|
|
|
// Print list of all messages if no identifier is provided
|
|
|
|
|
if (identifier == null)
|
|
|
|
|
{
|
|
|
|
|
List<Database.Message> messages = Database.GetAllMessages();
|
|
|
|
|
if (!messages.Any())
|
|
|
|
|
{
|
|
|
|
|
await command.CreateResponseAsync(new DiscordEmbedBuilder
|
|
|
|
|
{
|
|
|
|
|
Color = DiscordColor.Red,
|
|
|
|
|
Description = "There are no messages registered."
|
|
|
|
|
}, true);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2022-02-21 08:40:09 +00:00
|
|
|
|
|
2024-10-29 09:10:37 +00:00
|
|
|
|
List<string> listItems = new List<string>();
|
|
|
|
|
foreach (Database.Message message in messages)
|
|
|
|
|
{
|
|
|
|
|
listItems.Add("**" + message.identifier + "** Added by <@" + message.userID + ">\n");
|
|
|
|
|
}
|
2022-02-21 08:40:09 +00:00
|
|
|
|
|
2024-10-29 09:10:37 +00:00
|
|
|
|
LinkedList<string> listMessages = Utilities.ParseListIntoMessages(listItems);
|
|
|
|
|
foreach (string listMessage in listMessages)
|
|
|
|
|
{
|
|
|
|
|
await command.CreateResponseAsync(new DiscordEmbedBuilder
|
|
|
|
|
{
|
|
|
|
|
Title = "Available messages: ",
|
|
|
|
|
Color = DiscordColor.Green,
|
|
|
|
|
Description = listMessage
|
|
|
|
|
}, true);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// Print specific message
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (!Database.TryGetMessage(identifier.ToLower(), out Database.Message message))
|
|
|
|
|
{
|
|
|
|
|
await command.CreateResponseAsync(new DiscordEmbedBuilder
|
|
|
|
|
{
|
|
|
|
|
Color = DiscordColor.Red,
|
|
|
|
|
Description = "There is no message with that identifier."
|
|
|
|
|
}, true);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2022-02-21 08:40:09 +00:00
|
|
|
|
|
2024-10-29 09:10:37 +00:00
|
|
|
|
await command.CreateResponseAsync(new DiscordEmbedBuilder
|
|
|
|
|
{
|
|
|
|
|
Color = DiscordColor.Cyan,
|
|
|
|
|
Description = message.message.Replace("\\n", "\n")
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-05-19 11:38:59 +00:00
|
|
|
|
}
|