mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 01:08:26 -04:00
155 lines
4.9 KiB
C#
155 lines
4.9 KiB
C#
using Discord;
|
|
using Discord.Commands;
|
|
using Discord.WebSocket;
|
|
using NadekoBot.Core.Services;
|
|
using NadekoBot.Extensions;
|
|
using System.Globalization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NadekoBot.Modules
|
|
{
|
|
public abstract class NadekoModule : ModuleBase
|
|
{
|
|
protected CultureInfo _cultureInfo { get; set; }
|
|
public IBotStrings Strings { get; set; }
|
|
public CommandHandler CmdHandler { get; set; }
|
|
public ILocalization Localization { get; set; }
|
|
|
|
public string Prefix => CmdHandler.GetPrefix(ctx.Guild);
|
|
|
|
protected ICommandContext ctx => Context;
|
|
|
|
protected NadekoModule()
|
|
{
|
|
}
|
|
|
|
protected override void BeforeExecute(CommandInfo cmd)
|
|
{
|
|
_cultureInfo = Localization.GetCultureInfo(ctx.Guild?.Id);
|
|
}
|
|
|
|
protected string GetText(string key) =>
|
|
Strings.GetText(key, _cultureInfo);
|
|
|
|
protected string GetText(string key, params object[] args) =>
|
|
Strings.GetText(key, _cultureInfo, args);
|
|
|
|
public Task<IUserMessage> ErrorLocalizedAsync(string textKey, params object[] args)
|
|
{
|
|
var text = GetText(textKey, args);
|
|
return ctx.Channel.SendErrorAsync(text);
|
|
}
|
|
|
|
public Task<IUserMessage> ReplyErrorLocalizedAsync(string textKey, params object[] args)
|
|
{
|
|
var text = GetText(textKey, args);
|
|
return ctx.Channel.SendErrorAsync(Format.Bold(ctx.User.ToString()) + " " + text);
|
|
}
|
|
public Task<IUserMessage> ReplyPendingLocalizedAsync(string textKey, params object[] args)
|
|
{
|
|
var text = GetText(textKey, args);
|
|
return ctx.Channel.SendPendingAsync(Format.Bold(ctx.User.ToString()) + " " + text);
|
|
}
|
|
|
|
public Task<IUserMessage> ConfirmLocalizedAsync(string textKey, params object[] args)
|
|
{
|
|
var text = GetText(textKey, args);
|
|
return ctx.Channel.SendConfirmAsync(text);
|
|
}
|
|
|
|
public Task<IUserMessage> ReplyConfirmLocalizedAsync(string textKey, params object[] args)
|
|
{
|
|
var text = GetText(textKey, args);
|
|
return ctx.Channel.SendConfirmAsync(Format.Bold(ctx.User.ToString()) + " " + text);
|
|
}
|
|
|
|
public async Task<bool> PromptUserConfirmAsync(EmbedBuilder embed)
|
|
{
|
|
embed
|
|
.WithPendingColor()
|
|
.WithFooter("yes/no");
|
|
|
|
var msg = await ctx.Channel.EmbedAsync(embed).ConfigureAwait(false);
|
|
try
|
|
{
|
|
var input = await GetUserInputAsync(ctx.User.Id, ctx.Channel.Id).ConfigureAwait(false);
|
|
input = input?.ToUpperInvariant();
|
|
|
|
if (input != "YES" && input != "Y")
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
finally
|
|
{
|
|
var _ = Task.Run(() => msg.DeleteAsync());
|
|
}
|
|
}
|
|
|
|
// TypeConverter typeConverter = TypeDescriptor.GetConverter(propType); ?
|
|
public async Task<string> GetUserInputAsync(ulong userId, ulong channelId)
|
|
{
|
|
var userInputTask = new TaskCompletionSource<string>();
|
|
var dsc = (DiscordSocketClient)ctx.Client;
|
|
try
|
|
{
|
|
dsc.MessageReceived += MessageReceived;
|
|
|
|
if ((await Task.WhenAny(userInputTask.Task, Task.Delay(10000)).ConfigureAwait(false)) != userInputTask.Task)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return await userInputTask.Task.ConfigureAwait(false);
|
|
}
|
|
finally
|
|
{
|
|
dsc.MessageReceived -= MessageReceived;
|
|
}
|
|
|
|
Task MessageReceived(SocketMessage arg)
|
|
{
|
|
var _ = Task.Run(() =>
|
|
{
|
|
if (!(arg is SocketUserMessage userMsg) ||
|
|
!(userMsg.Channel is ITextChannel chan) ||
|
|
userMsg.Author.Id != userId ||
|
|
userMsg.Channel.Id != channelId)
|
|
{
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
if (userInputTask.TrySetResult(arg.Content))
|
|
{
|
|
userMsg.DeleteAfter(1);
|
|
}
|
|
return Task.CompletedTask;
|
|
});
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|
|
}
|
|
|
|
public abstract class NadekoModule<TService> : NadekoModule
|
|
{
|
|
public TService _service { get; set; }
|
|
|
|
protected NadekoModule() : base()
|
|
{
|
|
}
|
|
}
|
|
|
|
public abstract class NadekoSubmodule : NadekoModule
|
|
{
|
|
protected NadekoSubmodule() : base() { }
|
|
}
|
|
|
|
public abstract class NadekoSubmodule<TService> : NadekoModule<TService>
|
|
{
|
|
protected NadekoSubmodule() : base()
|
|
{
|
|
}
|
|
}
|
|
} |