mirror of
https://github.com/RPCS3/discord-bot.git
synced 2026-01-31 01:25:22 +01:00
RPCS3 Compatibility Bot reimplemented in C# for .NET Core Current status of this PR: * tested and targeted for .NET Core 2.1 * all functionality is either on par or improved compared to the python version * compatibility with current bot.db should be preserved in all upgrade scenarios * some bot management commands were changed (now under !sudo bot) * standard help generator for the new discord client is ... different; compatibility with old format could be restored through custom formatter if needed * everything has been split in more loosely tied components for easier extensibility and maintenance * log parsing has been rewritten and should work ~2x as fast
38 lines
1.3 KiB
C#
38 lines
1.3 KiB
C#
using System.Threading.Tasks;
|
|
using DSharpPlus.CommandsNext;
|
|
using DSharpPlus.CommandsNext.Attributes;
|
|
using DSharpPlus.Entities;
|
|
|
|
namespace CompatBot.Attributes
|
|
{
|
|
internal abstract class CheckBaseAttributeWithReactions: CheckBaseAttribute
|
|
{
|
|
protected abstract Task<bool> IsAllowed(CommandContext ctx, bool help);
|
|
|
|
public DiscordEmoji ReactOnSuccess { get; }
|
|
public DiscordEmoji ReactOnFailure { get; }
|
|
|
|
public CheckBaseAttributeWithReactions(DiscordEmoji reactOnSuccess = null, DiscordEmoji reactOnFailure = null)
|
|
{
|
|
ReactOnSuccess = reactOnSuccess;
|
|
ReactOnFailure = reactOnFailure;
|
|
}
|
|
|
|
public override async Task<bool> ExecuteCheckAsync(CommandContext ctx, bool help)
|
|
{
|
|
var result = await IsAllowed(ctx, help);
|
|
//await ctx.RespondAsync($"Check for {GetType().Name} resulted in {result}").ConfigureAwait(false);
|
|
if (result)
|
|
{
|
|
if (ReactOnSuccess != null && !help)
|
|
await ctx.Message.CreateReactionAsync(ReactOnSuccess).ConfigureAwait(false);
|
|
}
|
|
else
|
|
{
|
|
if (ReactOnFailure != null && !help)
|
|
await ctx.Message.CreateReactionAsync(ReactOnFailure).ConfigureAwait(false);
|
|
}
|
|
return result;
|
|
}
|
|
}
|
|
} |