Discord Bot web UI first preview

This commit is contained in:
2023-04-08 13:18:25 +03:00
parent 0a2dff0c6d
commit 810a527cc1
86 changed files with 74906 additions and 0 deletions

View File

@@ -0,0 +1,91 @@
using System.Collections.Generic;
using Discord;
using PluginManager;
using PluginManager.Interfaces;
using PluginManager.Loaders;
using PluginManager.Others;
namespace DiscordBotUI.DiscordBot.Commands;
/// <summary>
/// The help command
/// </summary>
internal class Help : DBCommand
{
/// <summary>
/// Command name
/// </summary>
public string Command => "help";
public List<string> Aliases => null;
/// <summary>
/// Command Description
/// </summary>
public string Description => "This command allows you to check all loaded commands";
/// <summary>
/// Command usage
/// </summary>
public string Usage => "help <command>";
/// <summary>
/// Check if the command require administrator to be executed
/// </summary>
public bool requireAdmin => false;
/// <summary>
/// The main body of the command
/// </summary>
/// <param name="context">The command context</param>
public void ExecuteServer(CmdArgs args)
{
if (args.arguments is not null)
{
var e = GenerateHelpCommand(args.arguments[0]);
if (e is null)
args.context.Channel.SendMessageAsync("Unknown Command " + args.arguments[0]);
else
args.context.Channel.SendMessageAsync(embed: e.Build());
return;
}
var embedBuilder = new EmbedBuilder();
var adminCommands = "";
var normalCommands = "";
foreach (var cmd in PluginLoader.Commands)
if (cmd.requireAdmin)
adminCommands += cmd.Command + " ";
else
normalCommands += cmd.Command + " ";
if (adminCommands.Length > 0)
embedBuilder.AddField("Admin Commands", adminCommands);
if (normalCommands.Length > 0)
embedBuilder.AddField("Normal Commands", normalCommands);
args.context.Channel.SendMessageAsync(embed: embedBuilder.Build());
}
private EmbedBuilder GenerateHelpCommand(string command)
{
var embedBuilder = new EmbedBuilder();
var cmd = PluginLoader.Commands.Find(p => p.Command == command ||
(p.Aliases is not null && p.Aliases.Contains(command)));
if (cmd == null) return null;
embedBuilder.AddField("Usage", Config.Data["prefix"] + cmd.Usage);
embedBuilder.AddField("Description", cmd.Description);
if (cmd.Aliases is null)
return embedBuilder;
embedBuilder.AddField("Alias", cmd.Aliases.Count == 0 ? "-" : string.Join(", ", cmd.Aliases));
return embedBuilder;
}
}

View File

@@ -0,0 +1,52 @@
using PluginManager.Bot;
namespace DiscordBotUI.DiscordBot
{
public class DiscordBot
{
public static DiscordBot Instance { get; private set; }
public Boot _boot { get; private set; }
public DiscordBot(string token, string prefix)
{
if(Instance is not null)
throw new Exception("DiscordBot is already initialized");
Instance = this;
_boot = new Boot(token,prefix);
}
public async Task Start()
{
await _boot.Awake();
}
public async Task LoadPlugins()
{
var loader = new PluginManager.Loaders.PluginLoader(_boot.client);
loader.onCMDLoad += (name, type, success, e) =>
{
if (success)
PluginManager.Logger.WriteLine($"Loaded command {name} from {type}");
else
PluginManager.Logger.WriteLine($"Failed to load command {name} from {type} with error {e}");
};
loader.onEVELoad += (name, type, success, e) =>
{
if (success)
PluginManager.Logger.WriteLine($"Loaded event {name} from {type}");
else
PluginManager.Logger.WriteLine($"Failed to load event {name} from {type} with error {e}");
};
loader.onSLSHLoad += (name, type, success, e) =>
{
if (success)
PluginManager.Logger.WriteLine($"Loaded slash command {name} from {type}");
else
PluginManager.Logger.WriteLine($"Failed to load slash command {name} from {type} with error {e}");
};
loader.LoadPlugins();
}
}
}