SupportChild/Commands/AddCommand.cs

82 lines
2.1 KiB
C#
Raw Normal View History

2022-04-18 10:52:03 +00:00
using System;
2022-02-21 08:40:09 +00:00
using System.Threading.Tasks;
using DSharpPlus;
using DSharpPlus.Entities;
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 AddCommand : ApplicationCommandModule
2022-02-21 08:40:09 +00:00
{
2022-08-21 07:34:11 +00:00
[SlashRequireGuild]
[SlashCommand("add", "Adds a user to a ticket")]
public async Task OnExecute(InteractionContext command, [Option("User", "User to add to ticket.")] DiscordUser user)
2022-05-17 13:09:25 +00:00
{
2022-08-21 07:34:11 +00:00
// Check if ticket exists in the database
if (!Database.IsOpenTicket(command.Channel.Id))
2022-05-17 13:09:25 +00:00
{
2022-08-21 07:34:11 +00:00
await command.CreateResponseAsync(new DiscordEmbedBuilder
2022-05-17 13:09:25 +00:00
{
2022-08-21 07:34:11 +00:00
Color = DiscordColor.Red,
Description = "This channel is not a ticket."
}, true);
return;
}
2022-02-21 08:40:09 +00:00
2022-08-21 07:34:11 +00:00
DiscordMember member;
try
{
member = (user == null ? command.Member : await command.Guild.GetMemberAsync(user.Id));
if (member == null)
2022-05-17 13:09:25 +00:00
{
2022-08-21 07:34:11 +00:00
await command.CreateResponseAsync(new DiscordEmbedBuilder
2022-05-17 13:09:25 +00:00
{
Color = DiscordColor.Red,
2022-08-21 07:34:11 +00:00
Description = "Could not find that user in this server."
}, true);
2022-05-17 13:09:25 +00:00
return;
}
2022-08-21 07:34:11 +00:00
}
catch (Exception)
{
await command.CreateResponseAsync(new DiscordEmbedBuilder
2022-05-17 13:09:25 +00:00
{
2022-08-21 07:34:11 +00:00
Color = DiscordColor.Red,
Description = "Could not find that user in this server."
}, true);
return;
}
2022-02-21 08:40:09 +00:00
2022-08-21 07:34:11 +00:00
try
{
await command.Channel.AddOverwriteAsync(member, Permissions.AccessChannels);
await command.CreateResponseAsync(new DiscordEmbedBuilder
{
Color = DiscordColor.Green,
Description = "Added " + member.Mention + " to ticket."
});
2022-02-21 08:40:09 +00:00
2022-08-21 07:34:11 +00:00
// Log it if the log channel exists
DiscordChannel logChannel = command.Guild.GetChannel(Config.logChannel);
if (logChannel != null)
{
await logChannel.SendMessageAsync(new DiscordEmbedBuilder
2022-05-17 13:09:25 +00:00
{
2022-08-21 07:34:11 +00:00
Color = DiscordColor.Green,
Description = member.Mention + " was added to " + command.Channel.Mention +
" by " + command.Member.Mention + "."
});
2022-05-17 13:09:25 +00:00
}
}
2022-08-21 07:34:11 +00:00
catch (Exception)
{
await command.CreateResponseAsync(new DiscordEmbedBuilder
{
Color = DiscordColor.Red,
Description = "Could not add " + member.Mention + " to ticket, unknown error occured."
}, true);
}
2022-05-17 13:09:25 +00:00
}
}