122 lines
No EOL
4.9 KiB
C#
122 lines
No EOL
4.9 KiB
C#
// Project Makoto
|
|
// Copyright (C) 2024 Fortunevale
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY
|
|
|
|
namespace ProjectMakoto.Commands.ReactionRolesCommand;
|
|
|
|
internal sealed class RemoveCommand : BaseCommand
|
|
{
|
|
public override Task<bool> BeforeExecution(SharedCommandContext ctx) => this.CheckAdmin();
|
|
|
|
public override Task ExecuteCommand(SharedCommandContext ctx, Dictionary<string, object> arguments)
|
|
{
|
|
return Task.Run(async () =>
|
|
{
|
|
var CommandKey = this.t.Commands.Config.ReactionRoles;
|
|
|
|
if (await ctx.DbUser.Cooldown.WaitForLight(ctx))
|
|
return;
|
|
|
|
DiscordMessage message;
|
|
|
|
var embed = new DiscordEmbedBuilder
|
|
{
|
|
Description = this.GetString(CommandKey.RemovingReactionRole, true)
|
|
}.AsLoading(ctx, this.GetString(CommandKey.Title));
|
|
|
|
_ = await this.RespondOrEdit(embed);
|
|
|
|
DiscordEmoji emoji_parameter;
|
|
|
|
if (arguments?.ContainsKey("message") ?? false)
|
|
{
|
|
message = (DiscordMessage)arguments["message"];
|
|
}
|
|
else
|
|
{
|
|
switch (ctx.CommandType)
|
|
{
|
|
case Enums.CommandType.PrefixCommand:
|
|
{
|
|
if (ctx.OriginalCommandContext.Message.ReferencedMessage is not null)
|
|
{
|
|
message = ctx.OriginalCommandContext.Message.ReferencedMessage;
|
|
}
|
|
else
|
|
{
|
|
this.SendSyntaxError();
|
|
return;
|
|
}
|
|
|
|
break;
|
|
}
|
|
default:
|
|
throw new ArgumentException("Message expected");
|
|
}
|
|
}
|
|
|
|
if (message is null)
|
|
{
|
|
this.SendSyntaxError();
|
|
return;
|
|
}
|
|
|
|
if (arguments?.ContainsKey("emoji_parameter") ?? false)
|
|
{
|
|
emoji_parameter = (DiscordEmoji)arguments["emoji_parameter"];
|
|
}
|
|
else
|
|
{
|
|
switch (ctx.CommandType)
|
|
{
|
|
case Enums.CommandType.ContextMenu:
|
|
{
|
|
embed.Description = this.GetString(CommandKey.ReactWithEmojiToRemove, true);
|
|
_ = await this.RespondOrEdit(new DiscordMessageBuilder().AddEmbed(embed.AsAwaitingInput(ctx, this.GetString(CommandKey.Title))));
|
|
|
|
var emoji_wait = await ctx.Client.GetInteractivity().WaitForReactionAsync(x => x.Channel.Id == ctx.Channel.Id && x.User.Id == ctx.User.Id && x.Message.Id == message.Id, TimeSpan.FromMinutes(2));
|
|
|
|
if (emoji_wait.TimedOut)
|
|
{
|
|
this.ModifyToTimedOut();
|
|
return;
|
|
}
|
|
|
|
emoji_parameter = emoji_wait.Result.Emoji;
|
|
break;
|
|
}
|
|
default:
|
|
throw new ArgumentException("Interaction expected");
|
|
}
|
|
}
|
|
|
|
if (!ctx.DbGuild.ReactionRoles.Any(x => x.MessageId == message.Id && x.EmojiName == emoji_parameter.GetUniqueDiscordName()))
|
|
{
|
|
embed.Description = this.GetString(CommandKey.NoReactionRoleFound);
|
|
_ = await this.RespondOrEdit(new DiscordMessageBuilder().AddEmbed(embed.AsError(ctx, this.GetString(CommandKey.Title))));
|
|
return;
|
|
}
|
|
|
|
var obj = ctx.DbGuild.ReactionRoles.First(x => x.MessageId == message.Id && x.EmojiName == emoji_parameter.GetUniqueDiscordName());
|
|
|
|
var role = ctx.Guild.GetRole(obj.RoleId);
|
|
var channel = ctx.Guild.GetChannel(obj.ChannelId);
|
|
var reactionMessage = await channel.GetMessageAsync(obj.MessageId);
|
|
_ = reactionMessage.DeleteReactionsEmojiAsync(obj.GetEmoji(ctx.Client));
|
|
|
|
ctx.DbGuild.ReactionRoles = ctx.DbGuild.ReactionRoles.Remove(x => x.MessageId.ToString(), obj);
|
|
|
|
embed.Description = this.GetString(CommandKey.RemovedReactionRole, true,
|
|
new TVar("Role", role.Mention),
|
|
new TVar("User", reactionMessage?.Author.Mention ?? "`/`"),
|
|
new TVar("Channel", reactionMessage?.Channel.Mention ?? "`/`"),
|
|
new TVar("Emoji", obj.GetEmoji(ctx.Client)));
|
|
_ = await this.RespondOrEdit(new DiscordMessageBuilder().AddEmbed(embed.AsSuccess(ctx, this.GetString(CommandKey.Title))));
|
|
});
|
|
}
|
|
} |