67 lines
1.8 KiB
C#
67 lines
1.8 KiB
C#
using Discord.WebSocket;
|
|
using Discord;
|
|
using BiblioTech.TokenCommands;
|
|
|
|
namespace BiblioTech
|
|
{
|
|
public abstract class BaseCommand
|
|
{
|
|
public abstract string Name { get; }
|
|
public abstract string StartingMessage { get; }
|
|
public abstract string Description { get; }
|
|
public virtual CommandOption[] Options
|
|
{
|
|
get
|
|
{
|
|
return Array.Empty<CommandOption>();
|
|
}
|
|
}
|
|
|
|
public async Task SlashCommandHandler(SocketSlashCommand command)
|
|
{
|
|
if (command.CommandName != Name) return;
|
|
|
|
try
|
|
{
|
|
await command.RespondAsync(StartingMessage);
|
|
await Invoke(command);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
await command.FollowupAsync("Something failed while trying to do that...");
|
|
Console.WriteLine(ex);
|
|
}
|
|
}
|
|
|
|
protected abstract Task Invoke(SocketSlashCommand command);
|
|
|
|
protected bool IsSenderAdmin(SocketSlashCommand command)
|
|
{
|
|
|
|
}
|
|
|
|
protected ulong GetUserId(UserOption userOption, SocketSlashCommand command)
|
|
{
|
|
var targetUser = userOption.GetOptionUserId(command);
|
|
if (IsSenderAdmin(command) && targetUser != null) return targetUser.Value;
|
|
return command.User.Id;
|
|
}
|
|
}
|
|
|
|
public class CommandOption
|
|
{
|
|
public CommandOption(string name, string description, ApplicationCommandOptionType type, bool isRequired)
|
|
{
|
|
Name = name;
|
|
Description = description;
|
|
Type = type;
|
|
IsRequired = isRequired;
|
|
}
|
|
|
|
public string Name { get; }
|
|
public string Description { get; }
|
|
public ApplicationCommandOptionType Type { get; }
|
|
public bool IsRequired { get; }
|
|
}
|
|
}
|