Compare commits
23 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e5f3aff39a | |||
| 11ec02ef68 | |||
| cad19935d5 | |||
| 47f88f167f | |||
| 9d6c335799 | |||
| cbaf552e7a | |||
| a4975a4578 | |||
| 725d02d152 | |||
| ae7118e89a | |||
| cad3bb5b75 | |||
| 269d7d56ff | |||
| 403c023191 | |||
| 3f7a8e04d4 | |||
| 0abbd24b86 | |||
| 21f1975fbc | |||
| d6f072904e | |||
| 6fc491a0d6 | |||
| 7bc9db03f0 | |||
| 641f0f2856 | |||
| ef5439d204 | |||
| c2093c2aca | |||
| a39f7bb0c9 | |||
| 6d73ec7f24 |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -368,3 +368,5 @@ FodyWeavers.xsd
|
|||||||
#folders
|
#folders
|
||||||
/Plugins/
|
/Plugins/
|
||||||
/DiscordBot.rar
|
/DiscordBot.rar
|
||||||
|
/DiscordBot/Data/
|
||||||
|
/DiscordBot/Updater/
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
<dependentAssembly>
|
|
||||||
<assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
|
||||||
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="4.0.0.0" />
|
|
||||||
</dependentAssembly>
|
|
||||||
@@ -1,9 +1,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
|
||||||
|
|
||||||
using Discord;
|
using Discord;
|
||||||
using Discord.Commands;
|
using Discord.Commands;
|
||||||
using Discord.WebSocket;
|
|
||||||
|
|
||||||
using PluginManager;
|
using PluginManager;
|
||||||
using PluginManager.Interfaces;
|
using PluginManager.Interfaces;
|
||||||
@@ -66,12 +64,10 @@ internal class Help : DBCommand
|
|||||||
var normalCommands = "";
|
var normalCommands = "";
|
||||||
|
|
||||||
foreach (var cmd in PluginLoader.Commands!)
|
foreach (var cmd in PluginLoader.Commands!)
|
||||||
{
|
|
||||||
if (cmd.requireAdmin)
|
if (cmd.requireAdmin)
|
||||||
adminCommands += cmd.Command + " ";
|
adminCommands += cmd.Command + " ";
|
||||||
else
|
else
|
||||||
normalCommands += cmd.Command + " ";
|
normalCommands += cmd.Command + " ";
|
||||||
}
|
|
||||||
|
|
||||||
embedBuilder.AddField("Admin Commands", adminCommands);
|
embedBuilder.AddField("Admin Commands", adminCommands);
|
||||||
embedBuilder.AddField("Normal Commands", normalCommands);
|
embedBuilder.AddField("Normal Commands", normalCommands);
|
||||||
@@ -81,10 +77,11 @@ internal class Help : DBCommand
|
|||||||
private EmbedBuilder GenerateHelpCommand(string command)
|
private EmbedBuilder GenerateHelpCommand(string command)
|
||||||
{
|
{
|
||||||
var embedBuilder = new EmbedBuilder();
|
var embedBuilder = new EmbedBuilder();
|
||||||
var cmd = PluginLoader.Commands!.Find(p => p.Command == command || (p.Aliases is not null && p.Aliases.Contains(command)));
|
var cmd = PluginLoader.Commands!.Find(p => p.Command == command ||
|
||||||
|
(p.Aliases is not null && p.Aliases.Contains(command)));
|
||||||
if (cmd == null) return null;
|
if (cmd == null) return null;
|
||||||
|
|
||||||
embedBuilder.AddField("Usage", Config.GetValue<string>("prefix") + cmd.Usage);
|
embedBuilder.AddField("Usage", Config.Variables.GetValue("prefix") + cmd.Usage);
|
||||||
embedBuilder.AddField("Description", cmd.Description);
|
embedBuilder.AddField("Description", cmd.Description);
|
||||||
if (cmd.Aliases is null)
|
if (cmd.Aliases is null)
|
||||||
return embedBuilder;
|
return embedBuilder;
|
||||||
|
|||||||
@@ -1,10 +1,8 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using Discord.WebSocket;
|
|
||||||
using PluginManager.Interfaces;
|
using PluginManager.Interfaces;
|
||||||
using PluginManager.Others;
|
using PluginManager.Others;
|
||||||
using PluginManager.Others.Permissions;
|
|
||||||
using DiscordLibCommands = Discord.Commands;
|
using DiscordLibCommands = Discord.Commands;
|
||||||
using DiscordLib = Discord;
|
using DiscordLib = Discord;
|
||||||
using OperatingSystem = PluginManager.Others.OperatingSystem;
|
using OperatingSystem = PluginManager.Others.OperatingSystem;
|
||||||
@@ -42,7 +40,7 @@ internal class Restart : DBCommand
|
|||||||
public async void ExecuteServer(DiscordLibCommands.SocketCommandContext context)
|
public async void ExecuteServer(DiscordLibCommands.SocketCommandContext context)
|
||||||
{
|
{
|
||||||
var args = Functions.GetArguments(context.Message);
|
var args = Functions.GetArguments(context.Message);
|
||||||
var OS = Functions.GetOperatingSystem();
|
var OS = Functions.GetOperatingSystem();
|
||||||
if (args.Count == 0)
|
if (args.Count == 0)
|
||||||
{
|
{
|
||||||
switch (OS)
|
switch (OS)
|
||||||
|
|||||||
@@ -1,89 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
using Discord;
|
|
||||||
using Discord.Commands;
|
|
||||||
using Discord.WebSocket;
|
|
||||||
|
|
||||||
using PluginManager;
|
|
||||||
using PluginManager.Interfaces;
|
|
||||||
|
|
||||||
namespace DiscordBot.Discord.Commands;
|
|
||||||
|
|
||||||
internal class Settings : DBCommand
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Command name
|
|
||||||
/// </summary>
|
|
||||||
public string Command => "set";
|
|
||||||
|
|
||||||
public List<string> Aliases => null;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Command Description
|
|
||||||
/// </summary>
|
|
||||||
public string Description => "This command allows you change all settings. Use \"set help\" to show details";
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Command usage
|
|
||||||
/// </summary>
|
|
||||||
public string Usage => "set [keyword] [new Value]";
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Check if the command require administrator to be executed
|
|
||||||
/// </summary>
|
|
||||||
public bool requireAdmin => true;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The main body of the command
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="context">The command context</param>
|
|
||||||
public async void Execute(SocketCommandContext context)
|
|
||||||
{
|
|
||||||
var channel = context.Message.Channel;
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var content = context.Message.Content;
|
|
||||||
var data = content.Split(' ');
|
|
||||||
var keyword = data[1];
|
|
||||||
if (keyword.ToLower() == "help")
|
|
||||||
{
|
|
||||||
await channel.SendMessageAsync("set token [new value] -- set the value of the new token (require restart)");
|
|
||||||
await channel.SendMessageAsync("set prefix [new value] -- set the value of the new preifx (require restart)");
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
switch (keyword.ToLower())
|
|
||||||
{
|
|
||||||
case "token":
|
|
||||||
if (data.Length != 3)
|
|
||||||
{
|
|
||||||
await channel.SendMessageAsync("Invalid token !");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
Config.SetValue("token", data[2]);
|
|
||||||
break;
|
|
||||||
case "prefix":
|
|
||||||
if (data.Length != 3)
|
|
||||||
{
|
|
||||||
await channel.SendMessageAsync("Invalid token !");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
Config.SetValue("token", data[2]);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
await channel.SendMessageAsync("Restart required ...");
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
Console.WriteLine(ex.Message);
|
|
||||||
await channel.SendMessageAsync("Unknown usage to this command !\nUsage: " + Usage);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,13 +1,10 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Threading;
|
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
using Discord;
|
using Discord;
|
||||||
using Discord.Commands;
|
using Discord.Commands;
|
||||||
using Discord.WebSocket;
|
using Discord.WebSocket;
|
||||||
|
|
||||||
using PluginManager;
|
|
||||||
|
|
||||||
using static PluginManager.Others.Functions;
|
using static PluginManager.Others.Functions;
|
||||||
|
|
||||||
namespace DiscordBot.Discord.Core;
|
namespace DiscordBot.Discord.Core;
|
||||||
@@ -63,7 +60,14 @@ internal class Boot
|
|||||||
/// <returns>Task</returns>
|
/// <returns>Task</returns>
|
||||||
public async Task Awake()
|
public async Task Awake()
|
||||||
{
|
{
|
||||||
DiscordSocketConfig config = new DiscordSocketConfig { AlwaysDownloadUsers = true };
|
var config = new DiscordSocketConfig
|
||||||
|
{
|
||||||
|
|
||||||
|
AlwaysDownloadUsers = true,
|
||||||
|
|
||||||
|
//Disable system clock checkup (for responses at slash commands)
|
||||||
|
UseInteractionSnowflakeDate = false
|
||||||
|
};
|
||||||
|
|
||||||
client = new DiscordSocketClient(config);
|
client = new DiscordSocketClient(config);
|
||||||
service = new CommandService();
|
service = new CommandService();
|
||||||
@@ -71,11 +75,14 @@ internal class Boot
|
|||||||
CommonTasks();
|
CommonTasks();
|
||||||
|
|
||||||
await client.LoginAsync(TokenType.Bot, botToken);
|
await client.LoginAsync(TokenType.Bot, botToken);
|
||||||
|
|
||||||
await client.StartAsync();
|
await client.StartAsync();
|
||||||
|
|
||||||
commandServiceHandler = new CommandHandler(client, service, botPrefix);
|
commandServiceHandler = new CommandHandler(client, service, botPrefix);
|
||||||
await commandServiceHandler.InstallCommandsAsync();
|
await commandServiceHandler.InstallCommandsAsync();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
await Task.Delay(2000);
|
await Task.Delay(2000);
|
||||||
while (!isReady) ;
|
while (!isReady) ;
|
||||||
}
|
}
|
||||||
@@ -89,19 +96,22 @@ internal class Boot
|
|||||||
client.Ready += Ready;
|
client.Ready += Ready;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Task Client_LoggedOut()
|
private async Task Client_LoggedOut()
|
||||||
{
|
{
|
||||||
WriteLogFile("Successfully Logged Out");
|
WriteLogFile("Successfully Logged Out");
|
||||||
Log(new LogMessage(LogSeverity.Info, "Boot", "Successfully logged out from discord !"));
|
await Log(new LogMessage(LogSeverity.Info, "Boot", "Successfully logged out from discord !"));
|
||||||
return Task.CompletedTask;
|
|
||||||
|
/* var cmds = await client.GetGlobalApplicationCommandsAsync();
|
||||||
|
foreach (var cmd in cmds)
|
||||||
|
await cmd.DeleteAsync();*/
|
||||||
}
|
}
|
||||||
|
|
||||||
private Task Ready()
|
private async Task Ready()
|
||||||
{
|
{
|
||||||
Console.Title = "ONLINE";
|
Console.Title = "ONLINE";
|
||||||
isReady = true;
|
|
||||||
|
|
||||||
return Task.CompletedTask;
|
|
||||||
|
isReady = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Task LoggedIn()
|
private Task LoggedIn()
|
||||||
@@ -141,5 +151,4 @@ internal class Boot
|
|||||||
|
|
||||||
return Task.CompletedTask;
|
return Task.CompletedTask;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
using System.Linq;
|
using System;
|
||||||
|
using System.Linq;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
@@ -37,9 +38,34 @@ internal class CommandHandler
|
|||||||
public async Task InstallCommandsAsync()
|
public async Task InstallCommandsAsync()
|
||||||
{
|
{
|
||||||
client.MessageReceived += MessageHandler;
|
client.MessageReceived += MessageHandler;
|
||||||
|
client.SlashCommandExecuted += Client_SlashCommandExecuted;
|
||||||
await commandService.AddModulesAsync(Assembly.GetEntryAssembly(), null);
|
await commandService.AddModulesAsync(Assembly.GetEntryAssembly(), null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private async Task Client_SlashCommandExecuted(SocketSlashCommand arg)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var plugin = PluginLoader.SlashCommands!
|
||||||
|
.Where(p => p.Name == arg.Data.Name)
|
||||||
|
.FirstOrDefault();
|
||||||
|
|
||||||
|
if (plugin is null) throw new Exception("Failed to run command. !");
|
||||||
|
|
||||||
|
|
||||||
|
if (arg.Channel is SocketDMChannel)
|
||||||
|
plugin.ExecuteDM(arg);
|
||||||
|
else plugin.ExecuteServer(arg);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
|
||||||
|
Console.WriteLine(ex.ToString());
|
||||||
|
ex.WriteErrFile();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The message handler for the bot
|
/// The message handler for the bot
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -75,9 +101,15 @@ internal class CommandHandler
|
|||||||
|
|
||||||
await commandService.ExecuteAsync(context, argPos, null);
|
await commandService.ExecuteAsync(context, argPos, null);
|
||||||
|
|
||||||
var plugin = PluginLoader.Commands!.Where(p => p.Command == message.Content.Split(' ')[0].Substring(botPrefix.Length) || (p.Aliases is not null && p.Aliases.Contains(message.Content.Split(' ')[0].Substring(botPrefix.Length)))).FirstOrDefault();
|
var plugin = PluginLoader.Commands!
|
||||||
|
.Where(
|
||||||
|
p => p.Command == message.Content.Split(' ')[0].Substring(botPrefix.Length) ||
|
||||||
|
(p.Aliases is not null &&
|
||||||
|
p.Aliases.Contains(
|
||||||
|
message.Content.Split(' ')[0].Substring(botPrefix.Length))))
|
||||||
|
.FirstOrDefault();
|
||||||
|
|
||||||
if (plugin is null) throw new System.Exception("Failed to run command. !");
|
if (plugin is null) throw new Exception("Failed to run command. !");
|
||||||
|
|
||||||
if (plugin.requireAdmin && !context.Message.Author.isAdmin())
|
if (plugin.requireAdmin && !context.Message.Author.isAdmin())
|
||||||
return;
|
return;
|
||||||
@@ -85,9 +117,8 @@ internal class CommandHandler
|
|||||||
if (context.Channel is SocketDMChannel)
|
if (context.Channel is SocketDMChannel)
|
||||||
plugin.ExecuteDM(context);
|
plugin.ExecuteDM(context);
|
||||||
else plugin.ExecuteServer(context);
|
else plugin.ExecuteServer(context);
|
||||||
|
|
||||||
}
|
}
|
||||||
catch (System.Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
ex.WriteErrFile();
|
ex.WriteErrFile();
|
||||||
}
|
}
|
||||||
|
|||||||
52
DiscordBot/DiscordBot - Backup.csproj
Normal file
52
DiscordBot/DiscordBot - Backup.csproj
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
|
<Nullable>disable</Nullable>
|
||||||
|
<ApplicationIcon />
|
||||||
|
<StartupObject />
|
||||||
|
<SignAssembly>False</SignAssembly>
|
||||||
|
<IsPublishable>True</IsPublishable>
|
||||||
|
<AssemblyVersion>1.0.1.0</AssemblyVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||||
|
<DebugType>none</DebugType>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||||
|
<DebugType>none</DebugType>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Remove="Data\**" />
|
||||||
|
<Compile Remove="obj\**" />
|
||||||
|
<Compile Remove="Output\**" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Remove="Data\**" />
|
||||||
|
<EmbeddedResource Remove="obj\**" />
|
||||||
|
<EmbeddedResource Remove="Output\**" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<None Remove="Data\**" />
|
||||||
|
<None Remove="obj\**" />
|
||||||
|
<None Remove="Output\**" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Discord.Net" Version="3.7.2" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\PluginManager\PluginManager.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
||||||
|
<Exec Command="xcopy /B /Y "$(TargetDir)*.dll" "$(TargetDir)Libraries"" />
|
||||||
|
</Target>
|
||||||
|
|
||||||
|
</Project>
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
<StartupObject />
|
<StartupObject />
|
||||||
<SignAssembly>False</SignAssembly>
|
<SignAssembly>False</SignAssembly>
|
||||||
<IsPublishable>True</IsPublishable>
|
<IsPublishable>True</IsPublishable>
|
||||||
<AssemblyVersion>1.0.0.13</AssemblyVersion>
|
<AssemblyVersion>1.0.1.0</AssemblyVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||||
@@ -38,7 +38,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Discord.Net" Version="3.7.2" />
|
<PackageReference Include="Discord.Net" Version="3.7.2" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
29
DiscordBot/Entry.cs
Normal file
29
DiscordBot/Entry.cs
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
using System;
|
||||||
|
using System.IO;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
namespace DiscordBot
|
||||||
|
{
|
||||||
|
|
||||||
|
public class Entry
|
||||||
|
{
|
||||||
|
[STAThread]
|
||||||
|
public static void Main(string[] args)
|
||||||
|
{
|
||||||
|
AppDomain currentDomain = AppDomain.CurrentDomain;
|
||||||
|
currentDomain.AssemblyResolve += new ResolveEventHandler(LoadFromSameFolder);
|
||||||
|
|
||||||
|
static Assembly LoadFromSameFolder(object sender, ResolveEventArgs args)
|
||||||
|
{
|
||||||
|
string folderPath = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "./Libraries");
|
||||||
|
string assemblyPath = Path.Combine(folderPath, new AssemblyName(args.Name).Name + ".dll");
|
||||||
|
if (!File.Exists(assemblyPath)) return null;
|
||||||
|
Assembly assembly = Assembly.LoadFrom(assemblyPath);
|
||||||
|
return assembly;
|
||||||
|
}
|
||||||
|
|
||||||
|
Program.Startup(args);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,20 +1,23 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
using Discord;
|
|
||||||
|
|
||||||
using DiscordBot.Discord.Core;
|
using DiscordBot.Discord.Core;
|
||||||
|
|
||||||
using PluginManager;
|
using PluginManager;
|
||||||
|
using PluginManager.Database;
|
||||||
using PluginManager.Items;
|
using PluginManager.Items;
|
||||||
using PluginManager.Online;
|
using PluginManager.Online;
|
||||||
|
using PluginManager.Online.Helpers;
|
||||||
using PluginManager.Others;
|
using PluginManager.Others;
|
||||||
|
|
||||||
|
using Terminal.Gui;
|
||||||
|
|
||||||
|
using OperatingSystem = PluginManager.Others.OperatingSystem;
|
||||||
|
|
||||||
namespace DiscordBot;
|
namespace DiscordBot;
|
||||||
|
|
||||||
public class Program
|
public class Program
|
||||||
@@ -27,73 +30,160 @@ public class Program
|
|||||||
/// The main entry point for the application.
|
/// The main entry point for the application.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[STAThread]
|
[STAThread]
|
||||||
[Obsolete]
|
public static void Startup(string[] args)
|
||||||
public static void Main(string[] args)
|
|
||||||
{
|
{
|
||||||
Console.WriteLine("Loading resources ...");
|
|
||||||
PreLoadComponents().Wait();
|
PreLoadComponents().Wait();
|
||||||
do
|
|
||||||
|
if (!Config.Variables.Exists("ServerID") || !Config.Variables.Exists("token") ||
|
||||||
|
Config.Variables.GetValue("token") == null ||
|
||||||
|
(Config.Variables.GetValue("token")?.Length != 70 && Config.Variables.GetValue("token")?.Length != 59) ||
|
||||||
|
!Config.Variables.Exists("prefix") || Config.Variables.GetValue("prefix") == null ||
|
||||||
|
Config.Variables.GetValue("prefix")?.Length != 1 ||
|
||||||
|
(args.Length == 1 && args[0] == "/reset"))
|
||||||
{
|
{
|
||||||
if (!Config.ContainsKey("ServerID"))
|
Application.Init();
|
||||||
|
var top = Application.Top;
|
||||||
|
var win = new Window("Discord Bot Config - " + Assembly.GetExecutingAssembly().GetName().Version)
|
||||||
{
|
{
|
||||||
|
X = 0,
|
||||||
|
Y = 1,
|
||||||
|
Width = Dim.Fill(),
|
||||||
|
Height = Dim.Fill()
|
||||||
|
};
|
||||||
|
|
||||||
|
top.Add(win);
|
||||||
|
|
||||||
|
var labelInfo = new Label(
|
||||||
|
"Configuration file not found or invalid. " +
|
||||||
|
"Please fill the following fields to create a new configuration file."
|
||||||
|
)
|
||||||
|
{
|
||||||
|
X = Pos.Center(),
|
||||||
|
Y = 2
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
Console.WriteLine("Please enter the server ID: ");
|
var labelToken = new Label("Please insert your token here: ")
|
||||||
Console_Utilities.WriteColorText("You can find it in the Server Settings at &r\"Widget\"&c section");
|
{
|
||||||
Console.WriteLine("Example: 1234567890123456789");
|
X = 5,
|
||||||
|
Y = 5
|
||||||
|
};
|
||||||
|
|
||||||
Console.WriteLine("This is not required, but is recommended. If you refuse to provide the ID, just press enter.\nThe server id is required to make easier for the bot to interact with the server.\nRemember: this bot is for one server ONLY.");
|
var textFiledToken = new TextField("")
|
||||||
Console.Write("User Input > ");
|
{
|
||||||
ConsoleKeyInfo key = Console.ReadKey();
|
X = Pos.Left(labelToken) + labelToken.Text.Length + 2,
|
||||||
if (key.Key == ConsoleKey.Enter)
|
Y = labelToken.Y,
|
||||||
Config.AddValueToVariables("ServerID", "null", false);
|
Width = 70
|
||||||
else
|
};
|
||||||
|
|
||||||
|
var labelPrefix = new Label("Please insert your prefix here: ")
|
||||||
|
{
|
||||||
|
X = 5,
|
||||||
|
Y = 8
|
||||||
|
};
|
||||||
|
var textFiledPrefix = new TextField("")
|
||||||
|
{
|
||||||
|
X = Pos.Left(labelPrefix) + labelPrefix.Text.Length + 2,
|
||||||
|
Y = labelPrefix.Y,
|
||||||
|
Width = 1
|
||||||
|
};
|
||||||
|
|
||||||
|
var labelServerid = new Label("Please insert your server id here (optional): ")
|
||||||
|
{
|
||||||
|
X = 5,
|
||||||
|
Y = 11
|
||||||
|
};
|
||||||
|
var textFiledServerID = new TextField("")
|
||||||
|
{
|
||||||
|
X = Pos.Left(labelServerid) + labelServerid.Text.Length + 2,
|
||||||
|
Y = labelServerid.Y,
|
||||||
|
Width = 18
|
||||||
|
};
|
||||||
|
|
||||||
|
var button = new Button("Submit")
|
||||||
|
{
|
||||||
|
X = Pos.Center() - 10,
|
||||||
|
Y = 16
|
||||||
|
};
|
||||||
|
|
||||||
|
var button2 = new Button("License")
|
||||||
|
{
|
||||||
|
X = Pos.Center() + 10,
|
||||||
|
Y = 16
|
||||||
|
};
|
||||||
|
|
||||||
|
var button3 = new Button("ⓘ")
|
||||||
|
{
|
||||||
|
X = Pos.Left(textFiledServerID) + 20,
|
||||||
|
Y = textFiledServerID.Y
|
||||||
|
};
|
||||||
|
|
||||||
|
Console.CancelKeyPress += (sender, e) => { top.Running = false; };
|
||||||
|
|
||||||
|
button.Clicked += () =>
|
||||||
|
{
|
||||||
|
var passMessage = "";
|
||||||
|
if (textFiledToken.Text.Length != 70 && textFiledToken.Text.Length != 59)
|
||||||
|
passMessage += "Invalid token, ";
|
||||||
|
if (textFiledPrefix.Text.ContainsAny("0123456789/\\ ") || textFiledPrefix.Text.Length != 1)
|
||||||
|
passMessage += "Invalid prefix, ";
|
||||||
|
if (textFiledServerID.Text.Length != 18 && textFiledServerID.Text.Length > 0)
|
||||||
|
passMessage += "Invalid serverID";
|
||||||
|
|
||||||
|
if (passMessage != "")
|
||||||
{
|
{
|
||||||
string SID = key.KeyChar + Console.ReadLine();
|
MessageBox.ErrorQuery("Discord Bot Settings",
|
||||||
if (SID.Length != 18)
|
"Failed to pass check. Invalid information given:\n" + passMessage, "Retry");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Config.Variables.Add("ServerID", (string)textFiledServerID.Text, true);
|
||||||
|
Config.Variables.Add("token", (string)textFiledToken.Text, true);
|
||||||
|
Config.Variables.Add("prefix", (string)textFiledPrefix.Text, true);
|
||||||
|
|
||||||
|
MessageBox.Query("Discord Bot Settings", "Successfully saved config !\nJust start the bot :D",
|
||||||
|
"Start :D");
|
||||||
|
top.Running = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
button2.Clicked += async () =>
|
||||||
|
{
|
||||||
|
var license =
|
||||||
|
await ServerCom.ReadTextFromURL(
|
||||||
|
"https://raw.githubusercontent.com/Wizzy69/installer/discord-bot-files/LICENSE.txt");
|
||||||
|
var ProductLicense =
|
||||||
|
"Seth Discord Bot\n\nDeveloped by Wizzy#9181\nThis application can be used and modified by anyone. Plugin development for this application is also free and supported";
|
||||||
|
var r = MessageBox.Query("Discord Bot Settings", ProductLicense, "Close", "Read about libraries used");
|
||||||
|
if (r == 1)
|
||||||
|
{
|
||||||
|
var i = 0;
|
||||||
|
while (i < license.Count)
|
||||||
{
|
{
|
||||||
Console.Clear();
|
var print_message = license[i++] + "\n";
|
||||||
Console_Utilities.WriteColorText("&rYour server ID is not 18 characters long. Please try again. \n");
|
for (; i < license.Count && !license[i].StartsWith("-----------"); i++)
|
||||||
|
print_message += license[i] + "\n";
|
||||||
continue;
|
if (print_message.Contains("https://"))
|
||||||
|
print_message += "\n\nCTRL + Click on a link to open it";
|
||||||
|
if (MessageBox.Query("Licenses", print_message, "Next", "Quit") == 1) break;
|
||||||
}
|
}
|
||||||
Config.AddValueToVariables("ServerID", SID, false);
|
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
if (!Config.ContainsKey("token") || Config.GetValue<string>("token") == null || (Config.GetValue<string>("token")?.Length != 70 && Config.GetValue<string>("token")?.Length != 59))
|
button3.Clicked += () =>
|
||||||
{
|
{
|
||||||
Console.WriteLine("Please insert your token");
|
MessageBox.Query("Discord Bot Settings",
|
||||||
Console.Write("Token = ");
|
"Server ID can be found in Server settings => Widget => Server ID",
|
||||||
var token = Console.ReadLine();
|
"Close");
|
||||||
if (token?.Length == 59 || token?.Length == 70)
|
};
|
||||||
Config.AddValueToVariables("token", token, true);
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Console.Clear();
|
|
||||||
Console_Utilities.WriteColorText("&rThe token length is invalid !");
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!Config.ContainsKey("prefix") || Config.GetValue<string>("prefix") == null || Config.GetValue<string>("prefix")?.Length != 1)
|
win.Add(labelInfo, labelPrefix, labelServerid, labelToken);
|
||||||
{
|
win.Add(textFiledToken, textFiledPrefix, textFiledServerID, button3);
|
||||||
Console.WriteLine("Please insert your prefix (max. 1 character long):");
|
win.Add(button, button2);
|
||||||
Console.WriteLine("For a prefix longer then one character, the first character will be saved and the others will be ignored.\n No spaces, numbers, '/' or '\\' allowed");
|
Application.Run();
|
||||||
Console.Write("Prefix = ");
|
Application.Shutdown();
|
||||||
var prefix = Console.ReadLine()![0];
|
}
|
||||||
|
|
||||||
if (prefix == ' ' || char.IsDigit(prefix) || prefix == '/' || prefix == '\\')
|
|
||||||
{
|
|
||||||
Console.Clear();
|
|
||||||
Console_Utilities.WriteColorText("&rThe prefix is invalid");
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
Config.AddValueToVariables("prefix", prefix.ToString(), false);
|
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
|
||||||
} while (true);
|
|
||||||
|
|
||||||
HandleInput(args).Wait();
|
HandleInput(args).Wait();
|
||||||
}
|
}
|
||||||
@@ -101,30 +191,26 @@ public class Program
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The main loop for the discord bot
|
/// The main loop for the discord bot
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="discordbooter">The discord booter used to start the application</param>
|
private static void NoGUI()
|
||||||
private static void NoGUI(Boot discordbooter)
|
|
||||||
{
|
{
|
||||||
|
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
Console.WriteLine();
|
Settings.Variables.outputStream.WriteLine();
|
||||||
ConsoleCommandsHandler.ExecuteCommad("lp").Wait();
|
ConsoleCommandsHandler.ExecuteCommad("lp").Wait();
|
||||||
#else
|
#else
|
||||||
if (loadPluginsOnStartup) consoleCommandsHandler.HandleCommand("lp");
|
if (loadPluginsOnStartup) consoleCommandsHandler.HandleCommand("lp");
|
||||||
if (listPluginsAtStartup) consoleCommandsHandler.HandleCommand("listplugs");
|
if (listPluginsAtStartup) consoleCommandsHandler.HandleCommand("listplugs");
|
||||||
#endif
|
#endif
|
||||||
Config.SaveConfig(SaveType.NORMAL).Wait();
|
|
||||||
|
|
||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
|
|
||||||
var cmd = Console.ReadLine();
|
var cmd = Console.ReadLine();
|
||||||
if (!consoleCommandsHandler.HandleCommand(cmd!
|
if (!consoleCommandsHandler.HandleCommand(cmd!
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
, false
|
, false
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
) && cmd.Length > 0)
|
) && cmd.Length > 0)
|
||||||
Console.WriteLine("Failed to run command " + cmd);
|
Settings.Variables.outputStream.WriteLine("Failed to run command " + cmd);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -132,233 +218,143 @@ public class Program
|
|||||||
/// Start the bot without user interface
|
/// Start the bot without user interface
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>Returns the boot loader for the Discord Bot</returns>
|
/// <returns>Returns the boot loader for the Discord Bot</returns>
|
||||||
private static async Task<Boot> StartNoGUI()
|
private static async Task<Boot> StartNoGui()
|
||||||
{
|
{
|
||||||
Console.Clear();
|
Console.Clear();
|
||||||
Console.ForegroundColor = ConsoleColor.DarkYellow;
|
Console.ForegroundColor = ConsoleColor.DarkYellow;
|
||||||
|
|
||||||
List<string> startupMessageList = await ServerCom.ReadTextFromURL("https://raw.githubusercontent.com/Wizzy69/installer/discord-bot-files/StartupMessage");
|
var startupMessageList =
|
||||||
|
await ServerCom.ReadTextFromURL(
|
||||||
|
"https://raw.githubusercontent.com/Wizzy69/installer/discord-bot-files/StartupMessage");
|
||||||
|
|
||||||
foreach (var message in startupMessageList)
|
foreach (var message in startupMessageList)
|
||||||
Console.WriteLine(message);
|
Settings.Variables.outputStream.WriteLine(message);
|
||||||
|
|
||||||
Console.WriteLine($"Running on version: {Config.GetValue<string>("Version") ?? System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString()}");
|
Settings.Variables.outputStream.WriteLine(
|
||||||
Console.WriteLine($"Git URL: {Config.GetValue<string>("GitURL") ?? " Could not find Git URL"}");
|
$"Running on version: {Assembly.GetExecutingAssembly().GetName().Version}");
|
||||||
|
Settings.Variables.outputStream.WriteLine($"Git URL: {Settings.Variables.WebsiteURL}");
|
||||||
|
|
||||||
Console_Utilities.WriteColorText("&rRemember to close the bot using the ShutDown command (&ysd&r) or some settings won't be saved\n");
|
Utilities.WriteColorText(
|
||||||
|
"&rRemember to close the bot using the ShutDown command (&ysd&r) or some settings won't be saved\n");
|
||||||
Console.ForegroundColor = ConsoleColor.White;
|
Console.ForegroundColor = ConsoleColor.White;
|
||||||
|
|
||||||
if (Config.ContainsKey("LaunchMessage"))
|
if (Config.Variables.Exists("LaunchMessage"))
|
||||||
{
|
Utilities.WriteColorText(Config.Variables.GetValue("LaunchMessage"));
|
||||||
Console_Utilities.WriteColorText(Config.GetValue<string>("LaunchMessage"));
|
|
||||||
Config.RemoveKey("LaunchMessage");
|
|
||||||
}
|
|
||||||
|
|
||||||
Console_Utilities.WriteColorText("Please note that the bot saves a backup save file every time you are using the shudown command (&ysd&c)");
|
|
||||||
Console.WriteLine($"============================ LOG ============================");
|
Utilities.WriteColorText(
|
||||||
|
"Please note that the bot saves a backup save file every time you are using the shudown command (&ysd&c)");
|
||||||
|
Settings.Variables.outputStream.WriteLine("============================ LOG ============================");
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var token = Config.GetValue<string>("token");
|
string token = "";
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
Console.WriteLine("Starting in DEBUG MODE");
|
|
||||||
if (!Directory.Exists("./Data/BetaTest"))
|
if (await Settings.sqlDatabase.TableExistsAsync("BetaTest"))
|
||||||
Console.WriteLine("Failed to start in debug mode because the folder ./Data/BetaTest does not exist");
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
token = File.ReadAllText("./Data/BetaTest/token.txt");
|
Settings.Variables.outputStream.WriteLine("Starting in DEBUG MODE");
|
||||||
|
token = await Settings.sqlDatabase.GetValueAsync("BetaTest", "VariableName", "Token", "Value");
|
||||||
//Debug mode code...
|
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
token = Config.Variables.GetValue("token");
|
||||||
#endif
|
#endif
|
||||||
|
var prefix = Config.Variables.GetValue("prefix");
|
||||||
var prefix = Config.GetValue<string>("prefix");
|
|
||||||
var discordbooter = new Boot(token, prefix);
|
var discordbooter = new Boot(token, prefix);
|
||||||
await discordbooter.Awake();
|
await discordbooter.Awake();
|
||||||
return discordbooter;
|
return discordbooter;
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
Console.WriteLine(ex);
|
Settings.Variables.outputStream.WriteLine(ex);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Clear folder
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="d">Directory path</param>
|
|
||||||
private static Task ClearFolder(string d)
|
|
||||||
{
|
|
||||||
var files = Directory.GetFiles(d);
|
|
||||||
var fileNumb = files.Length;
|
|
||||||
for (var i = 0; i < fileNumb; i++)
|
|
||||||
{
|
|
||||||
File.Delete(files[i]);
|
|
||||||
Console.WriteLine("Deleting : " + files[i]);
|
|
||||||
}
|
|
||||||
|
|
||||||
return Task.CompletedTask;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Handle user input arguments from the startup of the application
|
/// Handle user input arguments from the startup of the application
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="args">The arguments</param>
|
/// <param name="args">The arguments</param>
|
||||||
private static async Task HandleInput(string[] args)
|
private static async Task HandleInput(string[] args)
|
||||||
{
|
{
|
||||||
|
|
||||||
var len = args.Length;
|
var len = args.Length;
|
||||||
|
|
||||||
if (len == 3 && args[0] == "/download")
|
var b = await StartNoGui();
|
||||||
{
|
|
||||||
var url = args[1];
|
|
||||||
var location = args[2];
|
|
||||||
|
|
||||||
await ServerCom.DownloadFileAsync(url, location);
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (len > 0 && (args.Contains("--cmd") || args.Contains("--args") || args.Contains("--nomessage")))
|
|
||||||
{
|
|
||||||
if (args.Contains("lp") || args.Contains("loadplugins"))
|
|
||||||
loadPluginsOnStartup = true;
|
|
||||||
if (args.Contains("listplugs"))
|
|
||||||
listPluginsAtStartup = true;
|
|
||||||
|
|
||||||
len = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
var b = await StartNoGUI();
|
|
||||||
consoleCommandsHandler = new ConsoleCommandsHandler(b.client);
|
consoleCommandsHandler = new ConsoleCommandsHandler(b.client);
|
||||||
|
|
||||||
if (len > 0 && args[0] == "/remplug")
|
if (len > 0 && args[0] == "/remplug")
|
||||||
{
|
{
|
||||||
|
var plugName = string.Join(' ', args, 1, args.Length - 1);
|
||||||
string plugName = Functions.MergeStrings(args, 1);
|
Settings.Variables.outputStream.WriteLine("Starting to remove " + plugName);
|
||||||
Console.WriteLine("Starting to remove " + plugName);
|
|
||||||
await ConsoleCommandsHandler.ExecuteCommad("remplug " + plugName);
|
await ConsoleCommandsHandler.ExecuteCommad("remplug " + plugName);
|
||||||
loadPluginsOnStartup = true;
|
loadPluginsOnStartup = true;
|
||||||
len = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (len > 0 && args[0] == "/updateplug")
|
if (len > 0 && args[0] == "/lp")
|
||||||
{
|
loadPluginsOnStartup = true;
|
||||||
string plugName = args.MergeStrings(1);
|
|
||||||
Console.WriteLine("Updating " + plugName);
|
|
||||||
await ConsoleCommandsHandler.ExecuteCommad("dwplug" + plugName);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (len == 0 || (args[0] != "--exec" && args[0] != "--execute"))
|
var mainThread = new Thread(() =>
|
||||||
{
|
{
|
||||||
|
try
|
||||||
Thread mainThread = new Thread(() =>
|
|
||||||
{
|
{
|
||||||
try
|
NoGUI();
|
||||||
{
|
|
||||||
NoGUI(b);
|
|
||||||
}
|
|
||||||
catch (IOException ex)
|
|
||||||
{
|
|
||||||
if (ex.Message == "No process is on the other end of the pipe." || (uint)ex.HResult == 0x800700E9)
|
|
||||||
{
|
|
||||||
if (!Config.ContainsKey("LaunchMessage"))
|
|
||||||
Config.AddValueToVariables("LaunchMessage", "An error occured while closing the bot last time. Please consider closing the bot using the &rsd&c method !\nThere is a risk of losing all data or corruption of the save file, which in some cases requires to reinstall the bot !", false);
|
|
||||||
Functions.WriteErrFile(ex.ToString());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
});
|
|
||||||
mainThread.Start();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
Console.ForegroundColor = ConsoleColor.DarkYellow;
|
|
||||||
Console.WriteLine("Execute command interface noGUI\n\n");
|
|
||||||
Console.WriteLine(
|
|
||||||
"\tCommand name\t\t\t\tDescription\n" +
|
|
||||||
"-- help | -help\t\t ------ \tDisplay the help message\n" +
|
|
||||||
"--reset-full\t\t ------ \tReset all files (clear files)\n" +
|
|
||||||
"--reset-logs\t\t ------ \tClear up the output folder\n" +
|
|
||||||
"--start\t\t ------ \tStart the bot\n" +
|
|
||||||
"exit\t\t\t ------ \tClose the application"
|
|
||||||
);
|
|
||||||
while (true)
|
|
||||||
{
|
|
||||||
Console.ForegroundColor = ConsoleColor.White;
|
|
||||||
Console.Write("> ");
|
|
||||||
var message = Console.ReadLine().Split(' ');
|
|
||||||
|
|
||||||
switch (message[0])
|
|
||||||
{
|
|
||||||
case "--help":
|
|
||||||
case "-help":
|
|
||||||
Console.ForegroundColor = ConsoleColor.DarkYellow;
|
|
||||||
Console.WriteLine("\tCommand name\t\t\t\tDescription\n" + "-- help | -help\t\t ------ \tDisplay the help message\n" + "--reset-full\t\t ------ \tReset all files (clear files)\n" + "--reset-settings\t ------ \tReset only bot settings\n" + "--reset-logs\t\t ------ \tClear up the output folder\n" + "--start\t\t ------ \tStart the bot\n" + "exit\t\t\t ------ \tClose the application");
|
|
||||||
break;
|
|
||||||
case "--reset-full":
|
|
||||||
await ClearFolder("./Data/Resources/");
|
|
||||||
await ClearFolder("./Output/Logs/");
|
|
||||||
await ClearFolder("./Output/Errors");
|
|
||||||
await ClearFolder("./Data/Languages/");
|
|
||||||
await ClearFolder("./Data/Plugins/Commands");
|
|
||||||
await ClearFolder("./Data/Plugins/Events");
|
|
||||||
Console.WriteLine("Successfully cleared all folders");
|
|
||||||
break;
|
|
||||||
case "--reset-logs":
|
|
||||||
await ClearFolder("./Output/Logs");
|
|
||||||
await ClearFolder("./Output/Errors");
|
|
||||||
Console.WriteLine("Successfully clear logs folder");
|
|
||||||
break;
|
|
||||||
case "--exit":
|
|
||||||
case "exit":
|
|
||||||
Environment.Exit(0);
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
Console.WriteLine("Failed to execute command " + message[0]);
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
catch (IOException ex)
|
||||||
|
{
|
||||||
|
if (ex.Message == "No process is on the other end of the pipe." || (uint)ex.HResult == 0x800700E9)
|
||||||
|
{
|
||||||
|
if (Config.Variables.Exists("LaunchMessage"))
|
||||||
|
Config.Variables.Add("LaunchMessage",
|
||||||
|
"An error occured while closing the bot last time. Please consider closing the bot using the &rsd&c method !\nThere is a risk of losing all data or corruption of the save file, which in some cases requires to reinstall the bot !",
|
||||||
|
false);
|
||||||
|
Functions.WriteErrFile(ex.ToString());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
mainThread.Start();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static async Task PreLoadComponents()
|
private static async Task PreLoadComponents()
|
||||||
{
|
{
|
||||||
Console_Utilities.ProgressBar main = new Console_Utilities.ProgressBar(ProgressBarType.NO_END);
|
Settings.Variables.outputStream = Console.Out;
|
||||||
|
Settings.Variables.outputStream.WriteLine("Loading resources ...");
|
||||||
|
var main = new Utilities.ProgressBar(ProgressBarType.NO_END);
|
||||||
main.Start();
|
main.Start();
|
||||||
Directory.CreateDirectory("./Data/Resources");
|
Directory.CreateDirectory("./Data/Resources");
|
||||||
Directory.CreateDirectory("./Data/Plugins/Commands");
|
Directory.CreateDirectory("./Data/Plugins");
|
||||||
Directory.CreateDirectory("./Data/Plugins/Events");
|
|
||||||
Directory.CreateDirectory("./Data/PAKS");
|
Directory.CreateDirectory("./Data/PAKS");
|
||||||
await Config.LoadConfig();
|
|
||||||
if (Config.ContainsKey("DeleteLogsAtStartup"))
|
Settings.sqlDatabase = new SqlDatabase(Functions.dataFolder + "SetDB.dat");
|
||||||
if (Config.GetValue<bool>("DeleteLogsAtStartup"))
|
|
||||||
|
await Settings.sqlDatabase.Open();
|
||||||
|
await Config.Initialize();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if (await Config.Variables.ExistsAsync("DeleteLogsAtStartup"))
|
||||||
|
if (await Config.Variables.GetValueAsync("DeleteLogsAtStartup") == "true")
|
||||||
foreach (var file in Directory.GetFiles("./Output/Logs/"))
|
foreach (var file in Directory.GetFiles("./Output/Logs/"))
|
||||||
File.Delete(file);
|
File.Delete(file);
|
||||||
List<string> OnlineDefaultKeys = await ServerCom.ReadTextFromURL("https://raw.githubusercontent.com/Wizzy69/installer/discord-bot-files/SetupKeys");
|
var OnlineDefaultKeys =
|
||||||
|
await ServerCom.ReadTextFromURL(
|
||||||
|
"https://raw.githubusercontent.com/Wizzy69/installer/discord-bot-files/SetupKeys");
|
||||||
|
|
||||||
Config.PluginConfig.Load();
|
|
||||||
|
|
||||||
if (!Config.ContainsKey("Version"))
|
if (!await Config.Variables.ExistsAsync("Version"))
|
||||||
Config.AddValueToVariables("Version", Assembly.GetExecutingAssembly().GetName().Version.ToString(), false);
|
await Config.Variables.AddAsync("Version", Assembly.GetExecutingAssembly().GetName().Version.ToString(), false);
|
||||||
else
|
else
|
||||||
Config.SetValue("Version", Assembly.GetExecutingAssembly().GetName().Version.ToString());
|
await Config.Variables.SetValueAsync("Version", Assembly.GetExecutingAssembly().GetName().Version.ToString());
|
||||||
|
|
||||||
|
|
||||||
foreach (var key in OnlineDefaultKeys)
|
foreach (var key in OnlineDefaultKeys)
|
||||||
{
|
{
|
||||||
if (key.Length <= 3 || !key.Contains(' ')) continue;
|
if (key.Length <= 3 || !key.Contains(' ')) continue;
|
||||||
string[] s = key.Split(' ');
|
var s = key.Split(' ');
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if (Config.ContainsKey(s[0])) Config.SetValue(s[0], s[1]);
|
if (await Config.Variables.ExistsAsync(s[0])) await Config.Variables.SetValueAsync(s[0], s[1]);
|
||||||
else Config.GetAndAddValueToVariable(s[0], s[1], s[2].Equals("true", StringComparison.CurrentCultureIgnoreCase));
|
else
|
||||||
|
await Config.Variables.AddAsync(s[0], s[1], s[2].ToLower() == "true");
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
@@ -367,62 +363,79 @@ public class Program
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
var onlineSettingsList =
|
||||||
|
await ServerCom.ReadTextFromURL(
|
||||||
List<string> onlineSettingsList = await ServerCom.ReadTextFromURL("https://raw.githubusercontent.com/Wizzy69/installer/discord-bot-files/OnlineData");
|
"https://raw.githubusercontent.com/Wizzy69/installer/discord-bot-files/OnlineData");
|
||||||
main.Stop();
|
main.Stop("Loaded online settings. Loading updates ...");
|
||||||
foreach (var key in onlineSettingsList)
|
foreach (var key in onlineSettingsList)
|
||||||
{
|
{
|
||||||
if (key.Length <= 3 || !key.Contains(' ')) continue;
|
if (key.Length <= 3 || !key.Contains(' ')) continue;
|
||||||
|
|
||||||
string[] s = key.Split(' ');
|
var s = key.Split(' ');
|
||||||
switch (s[0])
|
switch (s[0])
|
||||||
{
|
{
|
||||||
case "CurrentVersion":
|
case "CurrentVersion":
|
||||||
string newVersion = s[1];
|
var newVersion = s[1];
|
||||||
if (!newVersion.Equals(Config.GetValue<string>("Version")))
|
if (!newVersion.Equals(await Config.Variables.GetValueAsync("Version")))
|
||||||
{
|
{
|
||||||
if (Functions.GetOperatingSystem() == PluginManager.Others.OperatingSystem.WINDOWS)
|
var nVer = new VersionString(newVersion.Substring(2));
|
||||||
|
var cVer = new VersionString((await Config.Variables.GetValueAsync("Version")).Substring(2));
|
||||||
|
if (cVer > nVer)
|
||||||
{
|
{
|
||||||
|
await Config.Variables.SetValueAsync("Version", "1." + cVer.ToShortString() + " (Beta)");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
string url = $"https://github.com/Wizzy69/SethDiscordBot/releases/download/v{newVersion}/net6.0.zip";
|
if (Functions.GetOperatingSystem() == OperatingSystem.WINDOWS)
|
||||||
//string url2 = $"https://github.com/Wizzy69/SethDiscordBot/releases/download/v{newVersion}-preview/net6.0.zip";
|
{
|
||||||
|
var url =
|
||||||
Process.Start(".\\Updater\\Updater.exe", $"{newVersion} {url} {Process.GetCurrentProcess().ProcessName}");
|
$"https://github.com/Wizzy69/SethDiscordBot/releases/download/v{newVersion}/net6.0.zip";
|
||||||
|
Process.Start(".\\Updater\\Updater.exe",
|
||||||
|
$"{newVersion} {url} {Process.GetCurrentProcess().ProcessName}");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
string url = $"https://github.com/Wizzy69/SethDiscordBot/releases/download/v{newVersion}/net6.0_linux.zip";
|
var url =
|
||||||
Process.Start("./Updater/Updater", $"/update {url} ./DiscordBot ./");
|
$"https://github.com/Wizzy69/SethDiscordBot/releases/download/v{newVersion}/net6.0_linux.zip";
|
||||||
|
Settings.Variables.outputStream.WriteLine("Downloading update ...");
|
||||||
|
await ServerCom.DownloadFileNoProgressAsync(url, "./update.zip");
|
||||||
|
await File.WriteAllTextAsync("Install.sh",
|
||||||
|
"#!/bin/bash\nunzip -qq update.zip -d ./\nrm update.zip\nchmod +x SethDiscordBot\n./DiscordBot");
|
||||||
|
Process.Start("Install.sh").WaitForExit();
|
||||||
|
Environment.Exit(0);
|
||||||
}
|
}
|
||||||
//Environment.Exit(0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case "UpdaterVersion":
|
case "UpdaterVersion":
|
||||||
string updaternewversion = s[1];
|
var updaternewversion = s[1];
|
||||||
if (Config.UpdaterVersion != updaternewversion)
|
if (Functions.GetOperatingSystem() == OperatingSystem.LINUX)
|
||||||
|
break;
|
||||||
|
|
||||||
|
if (!await Config.Variables.ExistsAsync("UpdaterVersion"))
|
||||||
|
await Config.Variables.AddAsync("UpdaterVersion", "0.0.0.0", false);
|
||||||
|
if (await Config.Variables.GetValueAsync("UpdaterVersion") != updaternewversion ||
|
||||||
|
!Directory.Exists("./Updater") ||
|
||||||
|
!File.Exists("./Updater/Updater.exe"))
|
||||||
{
|
{
|
||||||
Console.Clear();
|
Console.Clear();
|
||||||
Console.WriteLine("Installing updater ...\nDo NOT close the bot during update !");
|
Settings.Variables.outputStream.WriteLine("Installing updater ...\nDo NOT close the bot during update !");
|
||||||
Console_Utilities.ProgressBar bar = new Console_Utilities.ProgressBar(ProgressBarType.NO_END);
|
var bar = new Utilities.ProgressBar(ProgressBarType.NO_END);
|
||||||
bar.Start();
|
bar.Start();
|
||||||
await ServerCom.DownloadFileNoProgressAsync("https://github.com/Wizzy69/installer/releases/download/release-1-discordbot/Updater.zip", "./Updater.zip");
|
await ServerCom.DownloadFileNoProgressAsync(
|
||||||
await Functions.ExtractArchive("./Updater.zip", "./", null, UnzipProgressType.PercentageFromTotalSize);
|
"https://github.com/Wizzy69/installer/releases/download/release-1-discordbot/Updater.zip",
|
||||||
Config.UpdaterVersion = updaternewversion;
|
"./Updater.zip");
|
||||||
|
await Functions.ExtractArchive("./Updater.zip", "./", null,
|
||||||
|
UnzipProgressType.PercentageFromTotalSize);
|
||||||
|
await Config.Variables.SetValueAsync("UpdaterVersion", updaternewversion);
|
||||||
File.Delete("Updater.zip");
|
File.Delete("Updater.zip");
|
||||||
await Config.SaveConfig(SaveType.NORMAL);
|
bar.Stop("Updater has been updated !");
|
||||||
bar.Stop();
|
|
||||||
Console.Clear();
|
Console.Clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Console_Utilities.Initialize();
|
|
||||||
await Config.SaveConfig(SaveType.NORMAL);
|
|
||||||
Console.Clear();
|
Console.Clear();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,239 +1,199 @@
|
|||||||
using System;
|
using System;
|
||||||
using PluginManager.Others;
|
|
||||||
using System.IO;
|
|
||||||
using System.Text.Json;
|
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Collections.ObjectModel;
|
|
||||||
using System.Threading;
|
|
||||||
|
|
||||||
namespace PluginManager
|
using PluginManager.Online.Helpers;
|
||||||
|
|
||||||
|
namespace PluginManager;
|
||||||
|
|
||||||
|
public static class Config
|
||||||
{
|
{
|
||||||
internal class AppConfig
|
private static bool IsLoaded = false;
|
||||||
|
public static async Task Initialize()
|
||||||
{
|
{
|
||||||
public string? UpdaterVersion { get; set; }
|
if (IsLoaded)
|
||||||
public Dictionary<string, object>? ApplicationVariables { get; init; }
|
return;
|
||||||
public List<string>? ProtectedKeyWords { get; init; }
|
|
||||||
public Dictionary<string, string>? PluginVersions { get; init; }
|
if (!await Settings.sqlDatabase.TableExistsAsync("Plugins"))
|
||||||
|
await Settings.sqlDatabase.CreateTableAsync("Plugins", "PluginName", "Version");
|
||||||
|
if (!await Settings.sqlDatabase.TableExistsAsync("Variables"))
|
||||||
|
await Settings.sqlDatabase.CreateTableAsync("Variables", "VarName", "Value", "ReadOnly");
|
||||||
|
|
||||||
|
IsLoaded = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class Config
|
public static class Variables
|
||||||
{
|
{
|
||||||
public static class PluginConfig
|
public static async Task<string> GetValueAsync(string VarName)
|
||||||
{
|
{
|
||||||
public static readonly List<Tuple<string, PluginType>> InstalledPlugins = new();
|
if (!IsLoaded)
|
||||||
|
throw new Exception("Config is not loaded");
|
||||||
|
return await Settings.sqlDatabase.GetValueAsync("Variables", "VarName", VarName, "Value");
|
||||||
|
}
|
||||||
|
|
||||||
public static void Load()
|
public static string GetValue(string VarName)
|
||||||
|
{
|
||||||
|
if (!IsLoaded)
|
||||||
|
throw new Exception("Config is not loaded");
|
||||||
|
return Settings.sqlDatabase.GetValue("Variables", "VarName", VarName, "Value");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static async Task SetValueAsync(string VarName, string Value)
|
||||||
|
{
|
||||||
|
if (!IsLoaded)
|
||||||
|
throw new Exception("Config is not loaded");
|
||||||
|
|
||||||
|
if (await IsReadOnlyAsync(VarName))
|
||||||
|
throw new Exception($"Variable ({VarName}) is read only and can not be changed to {Value}");
|
||||||
|
|
||||||
|
await Settings.sqlDatabase.SetValueAsync("Variables", "VarName", VarName, "Value", Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void SetValue(string VarName, string Value)
|
||||||
|
{
|
||||||
|
if (!IsLoaded)
|
||||||
|
throw new Exception("Config is not loaded");
|
||||||
|
if (IsReadOnly(VarName))
|
||||||
|
throw new Exception($"Variable ({VarName}) is read only and can not be changed to {Value}");
|
||||||
|
Settings.sqlDatabase.SetValue("Variables", "VarName", VarName, "Value", Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public static async Task<bool> IsReadOnlyAsync(string VarName)
|
||||||
|
{
|
||||||
|
if (!IsLoaded)
|
||||||
|
throw new Exception("Config is not loaded");
|
||||||
|
return (await Settings.sqlDatabase.GetValueAsync("Variables", "VarName", VarName, "ReadOnly")).Equals("true", StringComparison.CurrentCultureIgnoreCase);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static bool IsReadOnly(string VarName)
|
||||||
|
{
|
||||||
|
if (!IsLoaded)
|
||||||
|
throw new Exception("Config is not loaded");
|
||||||
|
return (Settings.sqlDatabase.GetValue("Variables", "VarName", VarName, "ReadOnly")).Equals("true", StringComparison.CurrentCultureIgnoreCase);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static async Task SetReadOnlyAsync(string VarName, bool ReadOnly)
|
||||||
|
{
|
||||||
|
if (!IsLoaded)
|
||||||
|
throw new Exception("Config is not loaded");
|
||||||
|
await Settings.sqlDatabase.SetValueAsync("Variables", "VarName", VarName, "ReadOnly", ReadOnly ? "true" : "false");
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void SetReadOnly(string VarName, bool ReadOnly)
|
||||||
|
{
|
||||||
|
if (!IsLoaded)
|
||||||
|
throw new Exception("Config is not loaded");
|
||||||
|
Settings.sqlDatabase.SetValue("Variables", "VarName", VarName, "ReadOnly", ReadOnly ? "true" : "false");
|
||||||
|
}
|
||||||
|
|
||||||
|
public static async Task<bool> ExistsAsync(string VarName)
|
||||||
|
{
|
||||||
|
if (!IsLoaded)
|
||||||
|
throw new Exception("Config is not loaded");
|
||||||
|
return await Settings.sqlDatabase.KeyExistsAsync("Variables", "VarName", VarName);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static bool Exists(string VarName)
|
||||||
|
{
|
||||||
|
if (!IsLoaded)
|
||||||
|
throw new Exception("Config is not loaded");
|
||||||
|
return Settings.sqlDatabase.KeyExists("Variables", "VarName", VarName);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static async Task AddAsync(string VarName, string Value, bool ReadOnly = false)
|
||||||
|
{
|
||||||
|
if (!IsLoaded)
|
||||||
|
throw new Exception("Config is not loaded");
|
||||||
|
if (await ExistsAsync(VarName))
|
||||||
{
|
{
|
||||||
new Thread(LoadCommands).Start();
|
await SetValueAsync(VarName, Value);
|
||||||
new Thread(LoadEvents).Start();
|
await SetReadOnlyAsync(VarName, ReadOnly);
|
||||||
}
|
|
||||||
|
|
||||||
private static void LoadCommands()
|
|
||||||
{
|
|
||||||
string cmd_path = "./Data/Plugins/Commands/";
|
|
||||||
string[] files = Directory.GetFiles(cmd_path, $"*.{Loaders.PluginLoader.pluginCMDExtension}", SearchOption.AllDirectories);
|
|
||||||
foreach (var file in files)
|
|
||||||
if (!file.Contains("PluginManager", StringComparison.InvariantCultureIgnoreCase))
|
|
||||||
{
|
|
||||||
string PluginName = new FileInfo(file).Name;
|
|
||||||
string name = PluginName.Substring(0, PluginName.Length - 1 - PluginManager.Loaders.PluginLoader.pluginCMDExtension.Length);
|
|
||||||
InstalledPlugins.Add(new(name, PluginType.Command));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void LoadEvents()
|
|
||||||
{
|
|
||||||
string eve_path = "./Data/Plugins/Events/";
|
|
||||||
string[] files = Directory.GetFiles(eve_path, $"*.{Loaders.PluginLoader.pluginEVEExtension}", SearchOption.AllDirectories);
|
|
||||||
foreach (var file in files)
|
|
||||||
if (!file.Contains("PluginManager", StringComparison.InvariantCultureIgnoreCase))
|
|
||||||
if (!file.Contains("PluginManager", StringComparison.InvariantCultureIgnoreCase))
|
|
||||||
{
|
|
||||||
string PluginName = new FileInfo(file).Name;
|
|
||||||
string name = PluginName.Substring(0, PluginName.Length - 1 - PluginManager.Loaders.PluginLoader.pluginEVEExtension.Length);
|
|
||||||
InstalledPlugins.Add(new(name, PluginType.Event));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static bool Contains(string pluginName)
|
|
||||||
{
|
|
||||||
foreach (var tuple in InstalledPlugins)
|
|
||||||
if (tuple.Item1 == pluginName)
|
|
||||||
return true;
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static PluginType GetPluginType(string pluginName)
|
|
||||||
{
|
|
||||||
foreach (var tuple in InstalledPlugins)
|
|
||||||
if (tuple.Item1 == pluginName)
|
|
||||||
return tuple.Item2;
|
|
||||||
|
|
||||||
|
|
||||||
return PluginType.Unknown;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static AppConfig? appConfig { get; set; }
|
|
||||||
|
|
||||||
public static string UpdaterVersion { get => appConfig.UpdaterVersion; set => appConfig.UpdaterVersion = value; }
|
|
||||||
|
|
||||||
public static string GetPluginVersion(string pluginName) => appConfig!.PluginVersions![pluginName];
|
|
||||||
public static void SetPluginVersion(string pluginName, string newVersion)
|
|
||||||
{
|
|
||||||
if (appConfig!.PluginVersions!.ContainsKey(pluginName))
|
|
||||||
appConfig.PluginVersions[pluginName] = newVersion;
|
|
||||||
else appConfig.PluginVersions.Add(pluginName, newVersion);
|
|
||||||
|
|
||||||
// SaveConfig();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void RemovePluginVersion(string pluginName) => appConfig!.PluginVersions!.Remove(pluginName);
|
|
||||||
public static bool PluginVersionsContainsKey(string pluginName) => appConfig!.PluginVersions!.ContainsKey(pluginName);
|
|
||||||
|
|
||||||
public static void AddValueToVariables<T>(string key, T value, bool isProtected)
|
|
||||||
{
|
|
||||||
if (value == null)
|
|
||||||
throw new Exception("The value cannot be null");
|
|
||||||
if (appConfig!.ApplicationVariables!.ContainsKey(key))
|
|
||||||
throw new Exception($"The key ({key}) already exists in the variables. Value {GetValue<T>(key)}");
|
|
||||||
|
|
||||||
appConfig.ApplicationVariables.Add(key, value);
|
|
||||||
if (isProtected && key != "Version")
|
|
||||||
appConfig.ProtectedKeyWords!.Add(key);
|
|
||||||
|
|
||||||
SaveConfig(SaveType.NORMAL);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Type GetVariableType(string value)
|
|
||||||
{
|
|
||||||
if (int.TryParse(value, out var intValue))
|
|
||||||
return typeof(int);
|
|
||||||
if (bool.TryParse(value, out var boolValue))
|
|
||||||
return typeof(bool);
|
|
||||||
if (float.TryParse(value, out var floatValue))
|
|
||||||
return typeof(float);
|
|
||||||
if (double.TryParse(value, out var doubleValue))
|
|
||||||
return typeof(double);
|
|
||||||
if (uint.TryParse(value, out var uintValue))
|
|
||||||
return typeof(uint);
|
|
||||||
if (long.TryParse(value, out var longValue))
|
|
||||||
return typeof(long);
|
|
||||||
if (byte.TryParse(value, out var byteValue))
|
|
||||||
return typeof(byte);
|
|
||||||
return typeof(string);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void GetAndAddValueToVariable(string key, string value, bool isReadOnly)
|
|
||||||
{
|
|
||||||
if (Config.ContainsKey(key))
|
|
||||||
return;
|
|
||||||
if (int.TryParse(value, out var intValue))
|
|
||||||
Config.AddValueToVariables(key, intValue, isReadOnly);
|
|
||||||
else if (bool.TryParse(value, out var boolValue))
|
|
||||||
Config.AddValueToVariables(key, boolValue, isReadOnly);
|
|
||||||
else if (float.TryParse(value, out var floatValue))
|
|
||||||
Config.AddValueToVariables(key, floatValue, isReadOnly);
|
|
||||||
else if (double.TryParse(value, out var doubleValue))
|
|
||||||
Config.AddValueToVariables(key, doubleValue, isReadOnly);
|
|
||||||
else if (uint.TryParse(value, out var uintValue))
|
|
||||||
Config.AddValueToVariables(key, uintValue, isReadOnly);
|
|
||||||
else if (long.TryParse(value, out var longValue))
|
|
||||||
Config.AddValueToVariables(key, longValue, isReadOnly);
|
|
||||||
else if (byte.TryParse(value, out var byteValue))
|
|
||||||
Config.AddValueToVariables(key, byteValue, isReadOnly);
|
|
||||||
else
|
|
||||||
Config.AddValueToVariables(key, value, isReadOnly);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static T? GetValue<T>(string key)
|
|
||||||
{
|
|
||||||
if (!appConfig!.ApplicationVariables!.ContainsKey(key)) return default;
|
|
||||||
try
|
|
||||||
{
|
|
||||||
JsonElement element = (JsonElement)appConfig.ApplicationVariables[key];
|
|
||||||
return element.Deserialize<T>();
|
|
||||||
}
|
|
||||||
catch
|
|
||||||
{
|
|
||||||
return (T)appConfig.ApplicationVariables[key];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void SetValue<T>(string key, T value)
|
|
||||||
{
|
|
||||||
if (value == null)
|
|
||||||
throw new Exception("Value is null");
|
|
||||||
if (!appConfig!.ApplicationVariables!.ContainsKey(key))
|
|
||||||
throw new Exception("Key does not exist in the config file");
|
|
||||||
if (appConfig.ProtectedKeyWords!.Contains(key))
|
|
||||||
throw new Exception("Key is protected");
|
|
||||||
|
|
||||||
appConfig.ApplicationVariables[key] = JsonSerializer.SerializeToElement(value);
|
|
||||||
SaveConfig(SaveType.NORMAL);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void RemoveKey(string key)
|
|
||||||
{
|
|
||||||
if (key == "Version" || key == "token" || key == "prefix")
|
|
||||||
throw new Exception("Key is protected");
|
|
||||||
appConfig!.ApplicationVariables!.Remove(key);
|
|
||||||
appConfig.ProtectedKeyWords!.Remove(key);
|
|
||||||
SaveConfig(SaveType.NORMAL);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static bool IsReadOnly(string key)
|
|
||||||
{
|
|
||||||
return appConfig.ProtectedKeyWords.Contains(key);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static async Task SaveConfig(SaveType type)
|
|
||||||
{
|
|
||||||
if (type == SaveType.NORMAL)
|
|
||||||
{
|
|
||||||
string path = Functions.dataFolder + "config.json";
|
|
||||||
await Functions.SaveToJsonFile<AppConfig>(path, appConfig!);
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (type == SaveType.BACKUP)
|
await Settings.sqlDatabase.InsertAsync("Variables", VarName, Value, ReadOnly ? "true" : "false");
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void Add(string VarName, string Value, bool ReadOnly = false)
|
||||||
|
{
|
||||||
|
if (!IsLoaded)
|
||||||
|
throw new Exception("Config is not loaded");
|
||||||
|
if (Exists(VarName))
|
||||||
{
|
{
|
||||||
string path = Functions.dataFolder + "config.json.bak";
|
SetValue(VarName, Value);
|
||||||
await Functions.SaveToJsonFile<AppConfig>(path, appConfig!);
|
SetReadOnly(VarName, ReadOnly);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Settings.sqlDatabase.Insert("Variables", VarName, Value, ReadOnly ? "true" : "false");
|
||||||
|
}
|
||||||
|
|
||||||
|
public static async Task RemoveKeyAsync(string VarName)
|
||||||
|
{
|
||||||
|
if (!IsLoaded)
|
||||||
|
throw new Exception("Config is not loaded");
|
||||||
|
await Settings.sqlDatabase.RemoveKeyAsync("Variables", "VarName", VarName);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void RemoveKey(string VarName)
|
||||||
|
{
|
||||||
|
if (!IsLoaded)
|
||||||
|
throw new Exception("Config is not loaded");
|
||||||
|
Settings.sqlDatabase.RemoveKey("Variables", "VarName", VarName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class Plugins
|
||||||
|
{
|
||||||
|
public static async Task<string> GetVersionAsync(string pluginName)
|
||||||
|
{
|
||||||
|
if (!IsLoaded)
|
||||||
|
throw new Exception("Config is not loaded yet");
|
||||||
|
|
||||||
|
string result = await Settings.sqlDatabase.GetValueAsync("Plugins", "PluginName", pluginName, "Version");
|
||||||
|
if (result is null)
|
||||||
|
return "0.0.0";
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static string GetVersion(string pluginName)
|
||||||
|
{
|
||||||
|
if (!IsLoaded)
|
||||||
|
throw new Exception("Config is not loaded yet");
|
||||||
|
|
||||||
|
string result = Settings.sqlDatabase.GetValue("Plugins", "PluginName", pluginName, "Version");
|
||||||
|
if (result is null)
|
||||||
|
return "0.0.0";
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static async Task SetVersionAsync(string pluginName, VersionString version)
|
||||||
|
{
|
||||||
|
if (!IsLoaded)
|
||||||
|
throw new Exception("Config is not loaded yet");
|
||||||
|
|
||||||
|
if (!await Settings.sqlDatabase.KeyExistsAsync("Plugins", "PluginName", pluginName))
|
||||||
|
{
|
||||||
|
await Settings.sqlDatabase.InsertAsync("Plugins", pluginName, version.ToShortString());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
await Settings.sqlDatabase.SetValueAsync("Plugins", "PluginName", pluginName, "Version", version.ToShortString());
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void SetVersion(string pluginName, VersionString version)
|
||||||
|
{
|
||||||
|
if (!IsLoaded)
|
||||||
|
throw new Exception("Config is not loaded yet");
|
||||||
|
|
||||||
|
if (!Settings.sqlDatabase.KeyExists("Plugins", "PluginName", pluginName))
|
||||||
|
{
|
||||||
|
Settings.sqlDatabase.Insert("Plugins", pluginName, version.ToShortString());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Settings.sqlDatabase.SetValue("Plugins", "PluginName", pluginName, "Version", version.ToShortString());
|
||||||
}
|
}
|
||||||
|
|
||||||
public static async Task LoadConfig()
|
|
||||||
{
|
|
||||||
string path = Functions.dataFolder + "config.json";
|
|
||||||
if (File.Exists(path))
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
appConfig = await Functions.ConvertFromJson<AppConfig>(path);
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
File.Delete(path);
|
|
||||||
Console.WriteLine("An error occured while loading the settings. Importing from backup file...");
|
|
||||||
path = Functions.dataFolder + "config.json.bak";
|
|
||||||
appConfig = await Functions.ConvertFromJson<AppConfig>(path);
|
|
||||||
Functions.WriteErrFile(ex.Message);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
Functions.WriteLogFile($"Loaded {appConfig.ApplicationVariables!.Keys.Count} application variables.\nLoaded {appConfig.ProtectedKeyWords!.Count} readonly variables.");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
appConfig = new() { ApplicationVariables = new Dictionary<string, object>(), ProtectedKeyWords = new List<string>(), PluginVersions = new Dictionary<string, string>(), UpdaterVersion = "-1" };
|
|
||||||
}
|
|
||||||
|
|
||||||
public static bool ContainsValue<T>(T value) => appConfig!.ApplicationVariables!.ContainsValue(value!);
|
|
||||||
public static bool ContainsKey(string key) => appConfig!.ApplicationVariables!.ContainsKey(key);
|
|
||||||
|
|
||||||
public static IDictionary<string, object> GetAllVariables() => appConfig.ApplicationVariables;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
310
PluginManager/Database/SqlDatabase.cs
Normal file
310
PluginManager/Database/SqlDatabase.cs
Normal file
@@ -0,0 +1,310 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Data.SQLite;
|
||||||
|
using System.IO;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
namespace PluginManager.Database
|
||||||
|
{
|
||||||
|
public class SqlDatabase
|
||||||
|
{
|
||||||
|
private string ConnectionString;
|
||||||
|
private SQLiteConnection Connection;
|
||||||
|
|
||||||
|
public SqlDatabase(string fileName)
|
||||||
|
{
|
||||||
|
if (!File.Exists(fileName))
|
||||||
|
SQLiteConnection.CreateFile(fileName);
|
||||||
|
ConnectionString = $"URI=file:{fileName}";
|
||||||
|
Connection = new SQLiteConnection(ConnectionString);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task Open()
|
||||||
|
{
|
||||||
|
await Connection.OpenAsync();
|
||||||
|
|
||||||
|
//Console.WriteLine("Opened database successfully");
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task InsertAsync(string tableName, params string[] values)
|
||||||
|
{
|
||||||
|
|
||||||
|
string query = $"INSERT INTO {tableName} VALUES (";
|
||||||
|
for (int i = 0; i < values.Length; i++)
|
||||||
|
{
|
||||||
|
query += $"'{values[i]}'";
|
||||||
|
if (i != values.Length - 1)
|
||||||
|
query += ", ";
|
||||||
|
}
|
||||||
|
query += ")";
|
||||||
|
|
||||||
|
SQLiteCommand command = new SQLiteCommand(query, Connection);
|
||||||
|
await command.ExecuteNonQueryAsync();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Insert(string tableName, params string[] values)
|
||||||
|
{
|
||||||
|
|
||||||
|
string query = $"INSERT INTO {tableName} VALUES (";
|
||||||
|
for (int i = 0; i < values.Length; i++)
|
||||||
|
{
|
||||||
|
query += $"'{values[i]}'";
|
||||||
|
if (i != values.Length - 1)
|
||||||
|
query += ", ";
|
||||||
|
}
|
||||||
|
query += ")";
|
||||||
|
|
||||||
|
SQLiteCommand command = new SQLiteCommand(query, Connection);
|
||||||
|
command.ExecuteNonQuery();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task RemoveKeyAsync(string tableName, string KeyName, string KeyValue)
|
||||||
|
{
|
||||||
|
|
||||||
|
string query = $"DELETE FROM {tableName} WHERE {KeyName} = '{KeyValue}'";
|
||||||
|
|
||||||
|
SQLiteCommand command = new SQLiteCommand(query, Connection);
|
||||||
|
await command.ExecuteNonQueryAsync();
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public void RemoveKey(string tableName, string KeyName, string KeyValue)
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
string query = $"DELETE FROM {tableName} WHERE {KeyName} = '{KeyValue}'";
|
||||||
|
|
||||||
|
SQLiteCommand command = new SQLiteCommand(query, Connection);
|
||||||
|
command.ExecuteNonQuery();
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public async Task<bool> KeyExistsAsync(string tableName, string keyName, string KeyValue)
|
||||||
|
{
|
||||||
|
string query = $"SELECT * FROM {tableName} where {keyName} = '{KeyValue}'";
|
||||||
|
|
||||||
|
if (await ReadDataAsync(query) is not null)
|
||||||
|
return true;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool KeyExists(string tableName, string keyName, string KeyValue)
|
||||||
|
{
|
||||||
|
string query = $"SELECT * FROM {tableName} where {keyName} = '{KeyValue}'";
|
||||||
|
|
||||||
|
if (ReadData(query) is not null)
|
||||||
|
return true;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public async Task SetValueAsync(string tableName, string keyName, string KeyValue, string ResultColumnName, string ResultColumnValue)
|
||||||
|
{
|
||||||
|
if (!await TableExistsAsync(tableName))
|
||||||
|
throw new System.Exception($"Table {tableName} does not exist");
|
||||||
|
|
||||||
|
await ExecuteAsync($"UPDATE {tableName} SET {ResultColumnName}='{ResultColumnValue}' WHERE {keyName}='{KeyValue}'");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void SetValue(string tableName, string keyName, string KeyValue, string ResultColumnName, string ResultColumnValue)
|
||||||
|
{
|
||||||
|
if (!TableExists(tableName))
|
||||||
|
throw new System.Exception($"Table {tableName} does not exist");
|
||||||
|
|
||||||
|
Execute($"UPDATE {tableName} SET {ResultColumnName}='{ResultColumnValue}' WHERE {keyName}='{KeyValue}'");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public async Task<string> GetValueAsync(string tableName, string keyName, string KeyValue, string ResultColumnName)
|
||||||
|
{
|
||||||
|
if (!await TableExistsAsync(tableName))
|
||||||
|
throw new System.Exception($"Table {tableName} does not exist");
|
||||||
|
|
||||||
|
return await ReadDataAsync($"SELECT {ResultColumnName} FROM {tableName} WHERE {keyName}='{KeyValue}'");
|
||||||
|
}
|
||||||
|
|
||||||
|
public string GetValue(string tableName, string keyName, string KeyValue, string ResultColumnName)
|
||||||
|
{
|
||||||
|
if (!TableExists(tableName))
|
||||||
|
throw new System.Exception($"Table {tableName} does not exist");
|
||||||
|
|
||||||
|
return ReadData($"SELECT {ResultColumnName} FROM {tableName} WHERE {keyName}='{KeyValue}'");
|
||||||
|
}
|
||||||
|
|
||||||
|
public async void Stop()
|
||||||
|
{
|
||||||
|
await Connection.CloseAsync();
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task AddColumnsToTableAsync(string tableName, string[] columns)
|
||||||
|
{
|
||||||
|
|
||||||
|
var command = Connection.CreateCommand();
|
||||||
|
command.CommandText = $"SELECT * FROM {tableName}";
|
||||||
|
var reader = await command.ExecuteReaderAsync();
|
||||||
|
var tableColumns = new List<string>();
|
||||||
|
for (int i = 0; i < reader.FieldCount; i++)
|
||||||
|
tableColumns.Add(reader.GetName(i));
|
||||||
|
|
||||||
|
foreach (var column in columns)
|
||||||
|
{
|
||||||
|
if (!tableColumns.Contains(column))
|
||||||
|
{
|
||||||
|
command.CommandText = $"ALTER TABLE {tableName} ADD COLUMN {column} TEXT";
|
||||||
|
await command.ExecuteNonQueryAsync();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void AddColumnsToTable(string tableName, string[] columns)
|
||||||
|
{
|
||||||
|
|
||||||
|
var command = Connection.CreateCommand();
|
||||||
|
command.CommandText = $"SELECT * FROM {tableName}";
|
||||||
|
var reader = command.ExecuteReader();
|
||||||
|
var tableColumns = new List<string>();
|
||||||
|
for (int i = 0; i < reader.FieldCount; i++)
|
||||||
|
tableColumns.Add(reader.GetName(i));
|
||||||
|
|
||||||
|
foreach (var column in columns)
|
||||||
|
{
|
||||||
|
if (!tableColumns.Contains(column))
|
||||||
|
{
|
||||||
|
command.CommandText = $"ALTER TABLE {tableName} ADD COLUMN {column} TEXT";
|
||||||
|
command.ExecuteNonQuery();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<bool> TableExistsAsync(string tableName)
|
||||||
|
{
|
||||||
|
|
||||||
|
var cmd = Connection.CreateCommand();
|
||||||
|
cmd.CommandText = $"SELECT name FROM sqlite_master WHERE type='table' AND name='{tableName}'";
|
||||||
|
var result = await cmd.ExecuteScalarAsync();
|
||||||
|
|
||||||
|
if (result == null)
|
||||||
|
return false;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public bool TableExists(string tableName)
|
||||||
|
{
|
||||||
|
|
||||||
|
var cmd = Connection.CreateCommand();
|
||||||
|
cmd.CommandText = $"SELECT name FROM sqlite_master WHERE type='table' AND name='{tableName}'";
|
||||||
|
var result = cmd.ExecuteScalar();
|
||||||
|
|
||||||
|
if (result == null)
|
||||||
|
return false;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task CreateTableAsync(string tableName, params string[] columns)
|
||||||
|
{
|
||||||
|
|
||||||
|
var cmd = Connection.CreateCommand();
|
||||||
|
cmd.CommandText = $"CREATE TABLE IF NOT EXISTS {tableName} ({string.Join(", ", columns)})";
|
||||||
|
await cmd.ExecuteNonQueryAsync();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public void CreateTable(string tableName, params string[] columns)
|
||||||
|
{
|
||||||
|
|
||||||
|
var cmd = Connection.CreateCommand();
|
||||||
|
cmd.CommandText = $"CREATE TABLE IF NOT EXISTS {tableName} ({string.Join(", ", columns)})";
|
||||||
|
cmd.ExecuteNonQuery();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<int> ExecuteAsync(string query)
|
||||||
|
{
|
||||||
|
if (!Connection.State.HasFlag(System.Data.ConnectionState.Open))
|
||||||
|
await Connection.OpenAsync();
|
||||||
|
var command = new SQLiteCommand(query, Connection);
|
||||||
|
int answer = await command.ExecuteNonQueryAsync();
|
||||||
|
return answer;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int Execute(string query)
|
||||||
|
{
|
||||||
|
if (!Connection.State.HasFlag(System.Data.ConnectionState.Open))
|
||||||
|
Connection.Open();
|
||||||
|
var command = new SQLiteCommand(query, Connection);
|
||||||
|
int r = command.ExecuteNonQuery();
|
||||||
|
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<string> ReadDataAsync(string query)
|
||||||
|
{
|
||||||
|
if (!Connection.State.HasFlag(System.Data.ConnectionState.Open))
|
||||||
|
await Connection.OpenAsync();
|
||||||
|
var command = new SQLiteCommand(query, Connection);
|
||||||
|
var reader = await command.ExecuteReaderAsync();
|
||||||
|
|
||||||
|
object[] values = new object[reader.FieldCount];
|
||||||
|
if (reader.Read())
|
||||||
|
{
|
||||||
|
reader.GetValues(values);
|
||||||
|
return string.Join<object>(" ", values);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public string ReadData(string query)
|
||||||
|
{
|
||||||
|
if (!Connection.State.HasFlag(System.Data.ConnectionState.Open))
|
||||||
|
Connection.Open();
|
||||||
|
var command = new SQLiteCommand(query, Connection);
|
||||||
|
var reader = command.ExecuteReader();
|
||||||
|
|
||||||
|
object[] values = new object[reader.FieldCount];
|
||||||
|
if (reader.Read())
|
||||||
|
{
|
||||||
|
reader.GetValues(values);
|
||||||
|
return string.Join<object>(" ", values);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<object[]> ReadDataArrayAsync(string query)
|
||||||
|
{
|
||||||
|
if (!Connection.State.HasFlag(System.Data.ConnectionState.Open))
|
||||||
|
await Connection.OpenAsync();
|
||||||
|
var command = new SQLiteCommand(query, Connection);
|
||||||
|
var reader = await command.ExecuteReaderAsync();
|
||||||
|
|
||||||
|
object[] values = new object[reader.FieldCount];
|
||||||
|
if (reader.Read())
|
||||||
|
{
|
||||||
|
reader.GetValues(values);
|
||||||
|
return values;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public object[] ReadDataArray(string query)
|
||||||
|
{
|
||||||
|
if (!Connection.State.HasFlag(System.Data.ConnectionState.Open))
|
||||||
|
Connection.Open();
|
||||||
|
var command = new SQLiteCommand(query, Connection);
|
||||||
|
var reader = command.ExecuteReader();
|
||||||
|
|
||||||
|
object[] values = new object[reader.FieldCount];
|
||||||
|
if (reader.Read())
|
||||||
|
{
|
||||||
|
reader.GetValues(values);
|
||||||
|
return values;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,7 +1,6 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
using Discord.Commands;
|
using Discord.Commands;
|
||||||
using Discord.WebSocket;
|
|
||||||
|
|
||||||
namespace PluginManager.Interfaces;
|
namespace PluginManager.Interfaces;
|
||||||
|
|
||||||
@@ -38,11 +37,15 @@ public interface DBCommand
|
|||||||
/// The main body of the command. This is what is executed when user calls the command in Server
|
/// The main body of the command. This is what is executed when user calls the command in Server
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="context">The disocrd Context</param>
|
/// <param name="context">The disocrd Context</param>
|
||||||
void ExecuteServer(SocketCommandContext context) { }
|
void ExecuteServer(SocketCommandContext context)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The main body of the command. This is what is executed when user calls the command in DM
|
/// The main body of the command. This is what is executed when user calls the command in DM
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="context">The disocrd Context</param>
|
/// <param name="context">The disocrd Context</param>
|
||||||
void ExecuteDM(SocketCommandContext context) { }
|
void ExecuteDM(SocketCommandContext context)
|
||||||
|
{
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -7,12 +7,12 @@ public interface DBEvent
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The name of the event
|
/// The name of the event
|
||||||
/// </summary>
|
/// </summary>
|
||||||
string name { get; }
|
string Name { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The description of the event
|
/// The description of the event
|
||||||
/// </summary>
|
/// </summary>
|
||||||
string description { get; }
|
string Description { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The method that is invoked when the event is loaded into memory
|
/// The method that is invoked when the event is loaded into memory
|
||||||
|
|||||||
25
PluginManager/Interfaces/DBSlashCommand.cs
Normal file
25
PluginManager/Interfaces/DBSlashCommand.cs
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
using Discord;
|
||||||
|
using Discord.WebSocket;
|
||||||
|
|
||||||
|
namespace PluginManager.Interfaces
|
||||||
|
{
|
||||||
|
public interface DBSlashCommand
|
||||||
|
{
|
||||||
|
string Name { get; }
|
||||||
|
string Description { get; }
|
||||||
|
|
||||||
|
bool canUseDM { get; }
|
||||||
|
|
||||||
|
List<SlashCommandOptionBuilder> Options { get; }
|
||||||
|
|
||||||
|
void ExecuteServer(SocketSlashCommand context)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void ExecuteDM(SocketSlashCommand context) { }
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,8 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Discord.WebSocket;
|
using Discord.WebSocket;
|
||||||
using PluginManager.Others;
|
|
||||||
|
|
||||||
namespace PluginManager.Items;
|
namespace PluginManager.Items;
|
||||||
|
|
||||||
@@ -21,9 +20,9 @@ public class Command
|
|||||||
{
|
{
|
||||||
Author = message.Author;
|
Author = message.Author;
|
||||||
var data = message.Content.Split(' ');
|
var data = message.Content.Split(' ');
|
||||||
Arguments = data.Length > 1 ? new List<string>(data.MergeStrings(1).Split(' ')) : new List<string>();
|
Arguments = data.Length > 1 ? new List<string>(string.Join(' ', data, 1, data.Length - 1).Split(' ')) : new List<string>();
|
||||||
CommandName = data[0].Substring(1);
|
CommandName = data[0].Substring(1);
|
||||||
PrefixUsed = data[0][0];
|
PrefixUsed = data[0][0];
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -44,8 +43,8 @@ public class Command
|
|||||||
|
|
||||||
public class ConsoleCommand
|
public class ConsoleCommand
|
||||||
{
|
{
|
||||||
public string CommandName { get; init; }
|
public string CommandName { get; init; }
|
||||||
public string Description { get; init; }
|
public string Description { get; init; }
|
||||||
public string Usage { get; init; }
|
public string Usage { get; init; }
|
||||||
public Action<string[]> Action { get; init; }
|
public Action<string[]> Action { get; init; }
|
||||||
}
|
}
|
||||||
@@ -5,7 +5,6 @@ using System.IO;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Threading;
|
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
using Discord.WebSocket;
|
using Discord.WebSocket;
|
||||||
@@ -13,40 +12,43 @@ using Discord.WebSocket;
|
|||||||
using PluginManager.Interfaces;
|
using PluginManager.Interfaces;
|
||||||
using PluginManager.Loaders;
|
using PluginManager.Loaders;
|
||||||
using PluginManager.Online;
|
using PluginManager.Online;
|
||||||
using PluginManager.Online.Helpers;
|
|
||||||
using PluginManager.Online.Updates;
|
|
||||||
using PluginManager.Others;
|
using PluginManager.Others;
|
||||||
|
|
||||||
|
using OperatingSystem = PluginManager.Others.OperatingSystem;
|
||||||
|
|
||||||
namespace PluginManager.Items;
|
namespace PluginManager.Items;
|
||||||
|
|
||||||
public class ConsoleCommandsHandler
|
public class ConsoleCommandsHandler
|
||||||
{
|
{
|
||||||
private static readonly PluginsManager manager = new("https://raw.githubusercontent.com/Wizzy69/installer/discord-bot-files/Plugins.txt");
|
private static readonly PluginsManager manager =
|
||||||
|
new("https://raw.githubusercontent.com/Wizzy69/installer/discord-bot-files/Plugins.txt");
|
||||||
|
|
||||||
private static readonly List<ConsoleCommand> commandList = new();
|
private static readonly List<ConsoleCommand> commandList = new();
|
||||||
|
|
||||||
|
|
||||||
|
private static bool isDownloading;
|
||||||
|
private static bool pluginsLoaded;
|
||||||
private readonly DiscordSocketClient? client;
|
private readonly DiscordSocketClient? client;
|
||||||
|
|
||||||
|
|
||||||
private static bool isDownloading = false;
|
|
||||||
private static bool pluginsLoaded = false;
|
|
||||||
|
|
||||||
public ConsoleCommandsHandler(DiscordSocketClient client)
|
public ConsoleCommandsHandler(DiscordSocketClient client)
|
||||||
{
|
{
|
||||||
this.client = client;
|
this.client = client;
|
||||||
InitializeBasicCommands();
|
InitializeBasicCommands();
|
||||||
//Console.WriteLine("Initialized console command handler !");
|
|
||||||
|
|
||||||
|
//Settings.Variables.outputStream.WriteLine("Initialized console command handler !");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void InitializeBasicCommands()
|
private void InitializeBasicCommands()
|
||||||
{
|
{
|
||||||
|
|
||||||
commandList.Clear();
|
commandList.Clear();
|
||||||
|
|
||||||
AddCommand("help", "Show help", "help <command>", args =>
|
AddCommand("help", "Show help", "help <command>", args =>
|
||||||
{
|
{
|
||||||
if (args.Length <= 1)
|
if (args.Length <= 1)
|
||||||
{
|
{
|
||||||
Console.WriteLine("Available commands:");
|
Settings.Variables.outputStream.WriteLine("Available commands:");
|
||||||
List<string[]> items = new List<string[]>();
|
var items = new List<string[]>();
|
||||||
items.Add(new[] { "-", "-", "-" });
|
items.Add(new[] { "-", "-", "-" });
|
||||||
items.Add(new[] { "Command", "Description", "Usage" });
|
items.Add(new[] { "Command", "Description", "Usage" });
|
||||||
items.Add(new[] { " ", " ", "Argument type: <optional> [required]" });
|
items.Add(new[] { " ", " ", "Argument type: <optional> [required]" });
|
||||||
@@ -54,24 +56,26 @@ public class ConsoleCommandsHandler
|
|||||||
|
|
||||||
foreach (var command in commandList)
|
foreach (var command in commandList)
|
||||||
{
|
{
|
||||||
var pa = from p in command.Action.Method.GetParameters() where p.Name != null select p.ParameterType.FullName;
|
var pa = from p in command.Action.Method.GetParameters()
|
||||||
|
where p.Name != null
|
||||||
|
select p.ParameterType.FullName;
|
||||||
items.Add(new[] { command.CommandName, command.Description, command.Usage });
|
items.Add(new[] { command.CommandName, command.Description, command.Usage });
|
||||||
}
|
}
|
||||||
|
|
||||||
items.Add(new[] { "-", "-", "-" });
|
items.Add(new[] { "-", "-", "-" });
|
||||||
Console_Utilities.FormatAndAlignTable(items, TableFormat.DEFAULT);
|
Utilities.FormatAndAlignTable(items, TableFormat.DEFAULT);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
foreach (var command in commandList)
|
foreach (var command in commandList)
|
||||||
if (command.CommandName == args[1])
|
if (command.CommandName == args[1])
|
||||||
{
|
{
|
||||||
Console.WriteLine("Command description: " + command.Description);
|
Settings.Variables.outputStream.WriteLine("Command description: " + command.Description);
|
||||||
Console.WriteLine("Command execution format:" + command.Usage);
|
Settings.Variables.outputStream.WriteLine("Command execution format:" + command.Usage);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Console.WriteLine("Command not found");
|
Settings.Variables.outputStream.WriteLine("Command not found");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
@@ -82,24 +86,26 @@ public class ConsoleCommandsHandler
|
|||||||
if (pluginsLoaded)
|
if (pluginsLoaded)
|
||||||
return;
|
return;
|
||||||
var loader = new PluginLoader(client!);
|
var loader = new PluginLoader(client!);
|
||||||
ConsoleColor cc = Console.ForegroundColor;
|
var cc = Console.ForegroundColor;
|
||||||
loader.onCMDLoad += (name, typeName, success, exception) =>
|
loader.onCMDLoad += (name, typeName, success, exception) =>
|
||||||
{
|
{
|
||||||
|
|
||||||
if (name == null || name.Length < 2)
|
if (name == null || name.Length < 2)
|
||||||
name = typeName;
|
name = typeName;
|
||||||
if (success)
|
if (success)
|
||||||
{
|
{
|
||||||
Console.ForegroundColor = ConsoleColor.Green;
|
Console.ForegroundColor = ConsoleColor.Green;
|
||||||
Console.WriteLine("[CMD] Successfully loaded command : " + name);
|
Settings.Variables.outputStream.WriteLine("[CMD] Successfully loaded command : " + name);
|
||||||
}
|
}
|
||||||
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Console.ForegroundColor = ConsoleColor.Red;
|
Console.ForegroundColor = ConsoleColor.Red;
|
||||||
|
if (exception is null)
|
||||||
Console.WriteLine("[CMD] Failed to load command : " + name + " because " + exception!.Message);
|
Settings.Variables.outputStream.WriteLine("An error occured while loading: " + name);
|
||||||
|
else
|
||||||
|
Settings.Variables.outputStream.WriteLine("[CMD] Failed to load command : " + name + " because " + exception!.Message);
|
||||||
}
|
}
|
||||||
|
|
||||||
Console.ForegroundColor = cc;
|
Console.ForegroundColor = cc;
|
||||||
};
|
};
|
||||||
loader.onEVELoad += (name, typeName, success, exception) =>
|
loader.onEVELoad += (name, typeName, success, exception) =>
|
||||||
@@ -110,20 +116,39 @@ public class ConsoleCommandsHandler
|
|||||||
if (success)
|
if (success)
|
||||||
{
|
{
|
||||||
Console.ForegroundColor = ConsoleColor.Green;
|
Console.ForegroundColor = ConsoleColor.Green;
|
||||||
Console.WriteLine("[EVENT] Successfully loaded event : " + name);
|
Settings.Variables.outputStream.WriteLine("[EVENT] Successfully loaded event : " + name);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Console.ForegroundColor = ConsoleColor.Red;
|
Console.ForegroundColor = ConsoleColor.Red;
|
||||||
Console.WriteLine("[EVENT] Failed to load event : " + name + " because " + exception!.Message);
|
Settings.Variables.outputStream.WriteLine("[EVENT] Failed to load event : " + name + " because " + exception!.Message);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Console.ForegroundColor = cc;
|
||||||
|
};
|
||||||
|
|
||||||
|
loader.onSLSHLoad += (name, typeName, success, exception) =>
|
||||||
|
{
|
||||||
|
if (name == null || name.Length < 2)
|
||||||
|
name = typeName;
|
||||||
|
|
||||||
|
if (success)
|
||||||
|
{
|
||||||
|
Console.ForegroundColor = ConsoleColor.Green;
|
||||||
|
Settings.Variables.outputStream.WriteLine("[SLASH] Successfully loaded command : " + name);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Console.ForegroundColor = ConsoleColor.Red;
|
||||||
|
Settings.Variables.outputStream.WriteLine("[SLASH] Failed to load command : " + name + " because " + exception!.Message);
|
||||||
|
}
|
||||||
|
|
||||||
Console.ForegroundColor = cc;
|
Console.ForegroundColor = cc;
|
||||||
};
|
};
|
||||||
|
|
||||||
loader.LoadPlugins();
|
loader.LoadPlugins();
|
||||||
Console.ForegroundColor = cc;
|
Console.ForegroundColor = cc;
|
||||||
pluginsLoaded = true;
|
pluginsLoaded = true;
|
||||||
|
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -135,11 +160,11 @@ public class ConsoleCommandsHandler
|
|||||||
if (args.Length == 1)
|
if (args.Length == 1)
|
||||||
{
|
{
|
||||||
isDownloading = false;
|
isDownloading = false;
|
||||||
Console.WriteLine("Please specify plugin name");
|
Settings.Variables.outputStream.WriteLine("Please specify plugin name");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var name = args.MergeStrings(1);
|
var name = string.Join(' ', args, 1, args.Length - 1);
|
||||||
// info[0] = plugin type
|
// info[0] = plugin type
|
||||||
// info[1] = plugin link
|
// info[1] = plugin link
|
||||||
// info[2] = if others are required, or string.Empty if none
|
// info[2] = if others are required, or string.Empty if none
|
||||||
@@ -149,34 +174,42 @@ public class ConsoleCommandsHandler
|
|||||||
if (name == "")
|
if (name == "")
|
||||||
{
|
{
|
||||||
isDownloading = false;
|
isDownloading = false;
|
||||||
Console_Utilities.WriteColorText("Name is invalid");
|
Utilities.WriteColorText("Name is invalid");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
isDownloading = false;
|
isDownloading = false;
|
||||||
Console_Utilities.WriteColorText($"Failed to find plugin &b{name} &c!" + " Use &glistplugs &ccommand to display all available plugins !");
|
Utilities.WriteColorText($"Failed to find plugin &b{name} &c!" +
|
||||||
|
" Use &glistplugs &ccommand to display all available plugins !");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
string path;
|
string path;
|
||||||
if (info[0] == "Command" || info[0] == "Event")
|
if (info[0] == "Plugin")
|
||||||
path = "./Data/Plugins/" + info[0] + "s/" + name + "." + (info[0] == "Command" ? PluginLoader.pluginCMDExtension : PluginLoader.pluginEVEExtension);
|
path = "./Data/Plugins/" + name + ".dll";
|
||||||
else
|
else
|
||||||
path = $"./{info[1].Split('/')[info[1].Split('/').Length - 1]}";
|
path = $"./{info[1].Split('/')[info[1].Split('/').Length - 1]}";
|
||||||
//Console.WriteLine("Downloading: " + path + " [" + info[1] + "]");
|
|
||||||
await ServerCom.DownloadFileAsync(info[1], path);
|
if (OperatingSystem.WINDOWS == Functions.GetOperatingSystem())
|
||||||
if (info[0] == "Event")
|
{
|
||||||
Config.PluginConfig.InstalledPlugins.Add(new(name, PluginType.Event));
|
await ServerCom.DownloadFileAsync(info[1], path);
|
||||||
else if (info[0] == "Command")
|
}
|
||||||
Config.PluginConfig.InstalledPlugins.Add(new(name, PluginType.Command));
|
else if (OperatingSystem.LINUX == Functions.GetOperatingSystem())
|
||||||
|
{
|
||||||
|
var bar = new Utilities.ProgressBar(ProgressBarType.NO_END);
|
||||||
|
bar.Start();
|
||||||
|
await ServerCom.DownloadFileNoProgressAsync(info[1], path);
|
||||||
|
bar.Stop("Plugin Downloaded !");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
Console.WriteLine("\n");
|
Settings.Variables.outputStream.WriteLine("\n");
|
||||||
|
|
||||||
// check requirements if any
|
// check requirements if any
|
||||||
|
|
||||||
if (info.Length == 3 && info[2] != string.Empty && info[2] != null)
|
if (info.Length == 3 && info[2] != string.Empty && info[2] != null)
|
||||||
{
|
{
|
||||||
Console.WriteLine($"Downloading requirements for plugin : {name}");
|
Settings.Variables.outputStream.WriteLine($"Downloading requirements for plugin : {name}");
|
||||||
|
|
||||||
var lines = await ServerCom.ReadTextFromURL(info[2]);
|
var lines = await ServerCom.ReadTextFromURL(info[2]);
|
||||||
|
|
||||||
@@ -185,30 +218,45 @@ public class ConsoleCommandsHandler
|
|||||||
if (!(line.Length > 0 && line.Contains(",")))
|
if (!(line.Length > 0 && line.Contains(",")))
|
||||||
continue;
|
continue;
|
||||||
var split = line.Split(',');
|
var split = line.Split(',');
|
||||||
Console.WriteLine($"\nDownloading item: {split[1]}");
|
Settings.Variables.outputStream.WriteLine($"\nDownloading item: {split[1]}");
|
||||||
if (File.Exists("./" + split[1])) File.Delete("./" + split[1]);
|
if (File.Exists("./" + split[1])) File.Delete("./" + split[1]);
|
||||||
await ServerCom.DownloadFileAsync(split[0], "./" + split[1]);
|
if (OperatingSystem.WINDOWS == Functions.GetOperatingSystem())
|
||||||
Console.WriteLine();
|
{
|
||||||
|
await ServerCom.DownloadFileAsync(split[0], "./" + split[1]);
|
||||||
|
}
|
||||||
|
else if (OperatingSystem.LINUX == Functions.GetOperatingSystem())
|
||||||
|
{
|
||||||
|
var bar = new Utilities.ProgressBar(ProgressBarType.NO_END);
|
||||||
|
bar.Start();
|
||||||
|
await ServerCom.DownloadFileNoProgressAsync(split[0], "./" + split[1]);
|
||||||
|
bar.Stop("Item downloaded !");
|
||||||
|
}
|
||||||
|
|
||||||
|
Settings.Variables.outputStream.WriteLine();
|
||||||
if (split[0].EndsWith(".pak"))
|
if (split[0].EndsWith(".pak"))
|
||||||
|
{
|
||||||
File.Move("./" + split[1], "./Data/PAKS/" + split[1], true);
|
File.Move("./" + split[1], "./Data/PAKS/" + split[1], true);
|
||||||
|
}
|
||||||
else if (split[0].EndsWith(".zip") || split[0].EndsWith(".pkg"))
|
else if (split[0].EndsWith(".zip") || split[0].EndsWith(".pkg"))
|
||||||
{
|
{
|
||||||
Console.WriteLine($"Extracting {split[1]} ...");
|
Settings.Variables.outputStream.WriteLine($"Extracting {split[1]} ...");
|
||||||
var bar = new Console_Utilities.ProgressBar(ProgressBarType.NO_END);// { Max = 100f, Color = ConsoleColor.Green };
|
var bar = new Utilities.ProgressBar(
|
||||||
|
ProgressBarType.NO_END);
|
||||||
bar.Start();
|
bar.Start();
|
||||||
await Functions.ExtractArchive("./" + split[1], "./", null, UnzipProgressType.PercentageFromTotalSize);
|
await Functions.ExtractArchive("./" + split[1], "./", null,
|
||||||
bar.Stop();
|
UnzipProgressType.PercentageFromTotalSize);
|
||||||
Console.WriteLine("\n");
|
bar.Stop("Extracted");
|
||||||
|
Settings.Variables.outputStream.WriteLine("\n");
|
||||||
File.Delete("./" + split[1]);
|
File.Delete("./" + split[1]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Console.WriteLine();
|
Settings.Variables.outputStream.WriteLine();
|
||||||
}
|
}
|
||||||
VersionString? ver = await VersionString.GetVersionOfPackageFromWeb(name);
|
|
||||||
|
var ver = await ServerCom.GetVersionOfPackageFromWeb(name);
|
||||||
if (ver is null) throw new Exception("Incorrect version");
|
if (ver is null) throw new Exception("Incorrect version");
|
||||||
Config.SetPluginVersion(name, $"{ver.PackageVersionID}.{ver.PackageMainVersion}.{ver.PackageCheckVersion}");
|
await Config.Plugins.SetVersionAsync(name, ver);
|
||||||
// Console.WriteLine();
|
|
||||||
|
|
||||||
isDownloading = false;
|
isDownloading = false;
|
||||||
}
|
}
|
||||||
@@ -219,11 +267,11 @@ public class ConsoleCommandsHandler
|
|||||||
{
|
{
|
||||||
if (args.Length != 2)
|
if (args.Length != 2)
|
||||||
return;
|
return;
|
||||||
if (!Config.ContainsKey(args[1]))
|
if (!Config.Variables.Exists(args[1]))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
var data = Config.GetValue<string>(args[1]);
|
var data = Config.Variables.GetValue(args[1]);
|
||||||
Console.WriteLine($"{args[1]} => {data}");
|
Settings.Variables.outputStream.WriteLine($"{args[1]} => {data}");
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -237,12 +285,12 @@ public class ConsoleCommandsHandler
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Config.GetAndAddValueToVariable(key, value, isReadOnly);
|
Config.Variables.Add(key, value, isReadOnly);
|
||||||
Console.WriteLine($"Updated config file with the following command: {args[1]} => {value}");
|
Settings.Variables.outputStream.WriteLine($"Updated config file with the following command: {args[1]} => {value}");
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
Console.WriteLine(ex.ToString());
|
Settings.Variables.outputStream.WriteLine(ex.ToString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
@@ -251,7 +299,7 @@ public class ConsoleCommandsHandler
|
|||||||
{
|
{
|
||||||
if (args.Length < 2)
|
if (args.Length < 2)
|
||||||
return;
|
return;
|
||||||
Config.RemoveKey(args[1]);
|
Config.Variables.RemoveKey(args[1]);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -259,59 +307,63 @@ public class ConsoleCommandsHandler
|
|||||||
{
|
{
|
||||||
if (client is null)
|
if (client is null)
|
||||||
return;
|
return;
|
||||||
Console_Utilities.ProgressBar bar = new Console_Utilities.ProgressBar(ProgressBarType.NO_END);
|
var bar = new Utilities.ProgressBar(ProgressBarType.NO_END);
|
||||||
|
|
||||||
bar.Start();
|
bar.Start();
|
||||||
await Config.SaveConfig(SaveType.NORMAL);
|
bar.Stop("Saved config !");
|
||||||
await Config.SaveConfig(SaveType.BACKUP);
|
Settings.Variables.outputStream.WriteLine();
|
||||||
await Task.Delay(4000);
|
Settings.sqlDatabase.Stop();
|
||||||
bar.Stop();
|
|
||||||
Console.WriteLine();
|
|
||||||
await client.StopAsync();
|
await client.StopAsync();
|
||||||
await client.DisposeAsync();
|
await client.DisposeAsync();
|
||||||
Environment.Exit(0);
|
|
||||||
|
|
||||||
|
await Task.Delay(1000);
|
||||||
|
Environment.Exit(0);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
AddCommand("import", "Load an external command", "import [pluginName]", async (args) =>
|
AddCommand("import", "Load an external command", "import [pluginName]", async args =>
|
||||||
{
|
{
|
||||||
if (args.Length <= 1) return;
|
if (args.Length <= 1) return;
|
||||||
string pName = Functions.MergeStrings(args, 1);
|
try
|
||||||
HttpClient client = new HttpClient();
|
|
||||||
string url = (await manager.GetPluginLinkByName(pName))[1];
|
|
||||||
Stream s = await client.GetStreamAsync(url);
|
|
||||||
MemoryStream str = new MemoryStream();
|
|
||||||
await s.CopyToAsync(str);
|
|
||||||
var asmb = Assembly.Load(str.ToArray());
|
|
||||||
|
|
||||||
var types = asmb.GetTypes();
|
|
||||||
foreach (var type in types)
|
|
||||||
{
|
{
|
||||||
if (type.IsClass && typeof(DBEvent).IsAssignableFrom(type))
|
var pName = string.Join(' ', args, 1, args.Length - 1);
|
||||||
{
|
var client = new HttpClient();
|
||||||
DBEvent instance = (DBEvent)Activator.CreateInstance(type);
|
var url = (await manager.GetPluginLinkByName(pName))[1];
|
||||||
instance.Start(this.client);
|
if (url is null) throw new Exception($"Invalid plugin name {pName}.");
|
||||||
Console.WriteLine($"Loaded external {type.FullName}!");
|
var s = await client.GetStreamAsync(url);
|
||||||
}
|
var str = new MemoryStream();
|
||||||
else if (type.IsClass && typeof(DBCommand).IsAssignableFrom(type))
|
await s.CopyToAsync(str);
|
||||||
{
|
var asmb = Assembly.Load(str.ToArray());
|
||||||
Console.WriteLine("Only events can be loaded from external sources !");
|
|
||||||
return;
|
var types = asmb.GetTypes();
|
||||||
}
|
foreach (var type in types)
|
||||||
|
if (type.IsClass && typeof(DBEvent).IsAssignableFrom(type))
|
||||||
|
{
|
||||||
|
var instance = (DBEvent)Activator.CreateInstance(type);
|
||||||
|
instance.Start(this.client);
|
||||||
|
Settings.Variables.outputStream.WriteLine($"[EVENT] Loaded external {type.FullName}!");
|
||||||
|
}
|
||||||
|
else if (type.IsClass && typeof(DBCommand).IsAssignableFrom(type))
|
||||||
|
{
|
||||||
|
var instance = (DBCommand)Activator.CreateInstance(type);
|
||||||
|
Settings.Variables.outputStream.WriteLine($"[CMD] Instance: {type.FullName} loaded !");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Settings.Variables.outputStream.WriteLine(ex.Message);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
AddCommand("remplug", "Remove a plugin", "remplug [plugName]", async args =>
|
AddCommand("remplug", "Remove a plugin", "remplug [plugName]", async args =>
|
||||||
{
|
{
|
||||||
|
|
||||||
if (args.Length <= 1) return;
|
if (args.Length <= 1) return;
|
||||||
|
|
||||||
isDownloading = true;
|
isDownloading = true;
|
||||||
string plugName = Functions.MergeStrings(args, 1);
|
var plugName = string.Join(' ', args, 1, args.Length - 1);
|
||||||
if (pluginsLoaded)
|
if (pluginsLoaded)
|
||||||
{
|
{
|
||||||
if (Functions.GetOperatingSystem() == Others.OperatingSystem.WINDOWS)
|
if (Functions.GetOperatingSystem() == OperatingSystem.WINDOWS)
|
||||||
{
|
{
|
||||||
Process.Start("DiscordBot.exe", $"/remplug {plugName}");
|
Process.Start("DiscordBot.exe", $"/remplug {plugName}");
|
||||||
await Task.Delay(100);
|
await Task.Delay(100);
|
||||||
@@ -323,37 +375,23 @@ public class ConsoleCommandsHandler
|
|||||||
await Task.Delay(100);
|
await Task.Delay(100);
|
||||||
Environment.Exit(0);
|
Environment.Exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
isDownloading = false;
|
isDownloading = false;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
string location = "./Data/Plugins/";
|
var location = $"./Data/Plugins/{plugName}.dll";
|
||||||
|
|
||||||
location = Config.PluginConfig.GetPluginType(plugName) switch
|
|
||||||
{
|
|
||||||
PluginType.Command => location + "Commands/" + plugName + "." + PluginLoader.pluginCMDExtension,
|
|
||||||
PluginType.Event => location + "Events/" + plugName + "." + PluginLoader.pluginEVEExtension,
|
|
||||||
PluginType.Unknown => "./",
|
|
||||||
_ => throw new NotImplementedException("Plugin type incorrect")
|
|
||||||
};
|
|
||||||
|
|
||||||
if (!File.Exists(location))
|
if (!File.Exists(location))
|
||||||
{
|
{
|
||||||
Console.WriteLine("The plugin does not exist");
|
Settings.Variables.outputStream.WriteLine("The plugin does not exist");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
File.Delete(location);
|
File.Delete(location);
|
||||||
if (Config.PluginConfig.Contains(plugName))
|
|
||||||
{
|
Settings.Variables.outputStream.WriteLine("Removed the plugin DLL. Checking for other files ...");
|
||||||
var tuple = Config.PluginConfig.InstalledPlugins.Where(t => t.Item1 == plugName).FirstOrDefault();
|
|
||||||
Console.WriteLine("Found: " + tuple.ToString());
|
|
||||||
Config.PluginConfig.InstalledPlugins.Remove(tuple);
|
|
||||||
Config.RemovePluginVersion(plugName);
|
|
||||||
await Config.SaveConfig(SaveType.NORMAL);
|
|
||||||
}
|
|
||||||
Console.WriteLine("Removed the plugin DLL. Checking for other files ...");
|
|
||||||
|
|
||||||
var info = await manager.GetPluginLinkByName(plugName);
|
var info = await manager.GetPluginLinkByName(plugName);
|
||||||
if (info[2] != string.Empty)
|
if (info[2] != string.Empty)
|
||||||
@@ -368,42 +406,46 @@ public class ConsoleCommandsHandler
|
|||||||
File.Delete("./" + split[1]);
|
File.Delete("./" + split[1]);
|
||||||
|
|
||||||
|
|
||||||
Console.WriteLine("Removed: " + split[1]);
|
Settings.Variables.outputStream.WriteLine("Removed: " + split[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (Directory.Exists($"./Data/Plugins/{plugName}"))
|
||||||
|
Directory.Delete($"./Data/Plugins/{plugName}", true);
|
||||||
|
|
||||||
if (Directory.Exists(plugName))
|
if (Directory.Exists(plugName))
|
||||||
Directory.Delete(plugName, true);
|
Directory.Delete(plugName, true);
|
||||||
}
|
}
|
||||||
isDownloading = false;
|
|
||||||
Console.WriteLine(plugName + " has been successfully deleted !");
|
|
||||||
|
|
||||||
|
isDownloading = false;
|
||||||
|
Settings.Variables.outputStream.WriteLine(plugName + " has been successfully deleted !");
|
||||||
});
|
});
|
||||||
|
|
||||||
AddCommand("reload", "Reload the bot with all plugins", () =>
|
AddCommand("reload", "Reload the bot with all plugins", () =>
|
||||||
{
|
{
|
||||||
if (Functions.GetOperatingSystem() == Others.OperatingSystem.WINDOWS)
|
if (Functions.GetOperatingSystem() == OperatingSystem.WINDOWS)
|
||||||
{
|
{
|
||||||
Process.Start("DiscordBot.exe", $"lp");
|
Process.Start("DiscordBot.exe", "lp");
|
||||||
HandleCommand("sd");
|
HandleCommand("sd");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Process.Start("./DiscordBot", "lp");
|
||||||
Process.Start("./DiscordBot", $"lp");
|
|
||||||
HandleCommand("sd");
|
HandleCommand("sd");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
//AddCommand("");
|
||||||
|
|
||||||
//Sort the commands by name
|
//Sort the commands by name
|
||||||
commandList.Sort((x, y) => x.CommandName.CompareTo(y.CommandName));
|
commandList.Sort((x, y) => x.CommandName.CompareTo(y.CommandName));
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void AddCommand(string command, string description, string usage, Action<string[]> action)
|
public static void AddCommand(string command, string description, string usage, Action<string[]> action)
|
||||||
{
|
{
|
||||||
commandList.Add(new ConsoleCommand { CommandName = command, Description = description, Action = action, Usage = usage });
|
commandList.Add(new ConsoleCommand
|
||||||
|
{ CommandName = command, Description = description, Action = action, Usage = usage });
|
||||||
Console.ForegroundColor = ConsoleColor.White;
|
Console.ForegroundColor = ConsoleColor.White;
|
||||||
Console_Utilities.WriteColorText($"Command &r{command} &cadded to the list of commands");
|
Utilities.WriteColorText($"Command &r{command} &cadded to the list of commands");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void AddCommand(string command, string description, Action action)
|
public static void AddCommand(string command, string description, Action action)
|
||||||
@@ -429,15 +471,11 @@ public class ConsoleCommandsHandler
|
|||||||
public static async Task ExecuteCommad(string command)
|
public static async Task ExecuteCommad(string command)
|
||||||
{
|
{
|
||||||
var args = command.Split(' ');
|
var args = command.Split(' ');
|
||||||
// Console.WriteLine(command);
|
|
||||||
foreach (var item in commandList.ToList())
|
foreach (var item in commandList.ToList())
|
||||||
if (item.CommandName == args[0])
|
if (item.CommandName == args[0])
|
||||||
{
|
{
|
||||||
item.Action.Invoke(args);
|
item.Action.Invoke(args);
|
||||||
Console.WriteLine();
|
|
||||||
|
|
||||||
while (isDownloading) await Task.Delay(1000);
|
while (isDownloading) await Task.Delay(1000);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -451,18 +489,18 @@ public class ConsoleCommandsHandler
|
|||||||
if (removeCommandExecution)
|
if (removeCommandExecution)
|
||||||
{
|
{
|
||||||
Console.SetCursorPosition(0, Console.CursorTop - 1);
|
Console.SetCursorPosition(0, Console.CursorTop - 1);
|
||||||
for (int i = 0; i < command.Length + 30; i++)
|
for (var i = 0; i < command.Length + 30; i++)
|
||||||
Console.Write(" ");
|
Settings.Variables.outputStream.Write(" ");
|
||||||
Console.SetCursorPosition(0, Console.CursorTop);
|
Console.SetCursorPosition(0, Console.CursorTop);
|
||||||
}
|
}
|
||||||
|
|
||||||
Console.WriteLine();
|
Settings.Variables.outputStream.WriteLine();
|
||||||
item.Action(args);
|
item.Action(args);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
//Console.WriteLine($"Executing: {args[0]} with the following parameters: {args.MergeStrings(1)}");
|
//Settings.Variables.outputStream.WriteLine($"Executing: {args[0]} with the following parameters: {args.MergeStrings(1)}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -3,9 +3,7 @@ using System.Collections.Generic;
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
using PluginManager.Online.Updates;
|
|
||||||
using PluginManager.Others;
|
using PluginManager.Others;
|
||||||
|
|
||||||
namespace PluginManager.Loaders;
|
namespace PluginManager.Loaders;
|
||||||
@@ -31,11 +29,6 @@ internal class Loader<T>
|
|||||||
private string path { get; }
|
private string path { get; }
|
||||||
private string extension { get; }
|
private string extension { get; }
|
||||||
|
|
||||||
|
|
||||||
internal delegate void FileLoadedEventHandler(LoaderArgs args);
|
|
||||||
|
|
||||||
internal delegate void PluginLoadedEventHandler(LoaderArgs args);
|
|
||||||
|
|
||||||
internal event FileLoadedEventHandler? FileLoaded;
|
internal event FileLoadedEventHandler? FileLoaded;
|
||||||
|
|
||||||
internal event PluginLoadedEventHandler? PluginLoaded;
|
internal event PluginLoadedEventHandler? PluginLoaded;
|
||||||
@@ -52,7 +45,6 @@ internal class Loader<T>
|
|||||||
var files = Directory.GetFiles(path, $"*.{extension}", SearchOption.AllDirectories);
|
var files = Directory.GetFiles(path, $"*.{extension}", SearchOption.AllDirectories);
|
||||||
foreach (var file in files)
|
foreach (var file in files)
|
||||||
{
|
{
|
||||||
|
|
||||||
Assembly.LoadFrom(file);
|
Assembly.LoadFrom(file);
|
||||||
if (FileLoaded != null)
|
if (FileLoaded != null)
|
||||||
{
|
{
|
||||||
@@ -98,7 +90,14 @@ internal class Loader<T>
|
|||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
if (PluginLoaded != null) PluginLoaded.Invoke(new LoaderArgs { Exception = ex, IsLoaded = false, PluginName = type.FullName, TypeName = nameof(T) });
|
if (PluginLoaded != null)
|
||||||
|
PluginLoaded.Invoke(new LoaderArgs
|
||||||
|
{
|
||||||
|
Exception = ex,
|
||||||
|
IsLoaded = false,
|
||||||
|
PluginName = type.FullName,
|
||||||
|
TypeName = nameof(T)
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
@@ -109,4 +108,9 @@ internal class Loader<T>
|
|||||||
|
|
||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
internal delegate void FileLoadedEventHandler(LoaderArgs args);
|
||||||
|
|
||||||
|
internal delegate void PluginLoadedEventHandler(LoaderArgs args);
|
||||||
}
|
}
|
||||||
127
PluginManager/Loaders/LoaderV2.cs
Normal file
127
PluginManager/Loaders/LoaderV2.cs
Normal file
@@ -0,0 +1,127 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
using PluginManager.Interfaces;
|
||||||
|
using PluginManager.Others;
|
||||||
|
|
||||||
|
namespace PluginManager.Loaders
|
||||||
|
{
|
||||||
|
internal class LoaderV2
|
||||||
|
{
|
||||||
|
internal LoaderV2(string path, string extension)
|
||||||
|
{
|
||||||
|
this.path = path;
|
||||||
|
this.extension = extension;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private string path { get; }
|
||||||
|
private string extension { get; }
|
||||||
|
|
||||||
|
internal event FileLoadedEventHandler? FileLoaded;
|
||||||
|
|
||||||
|
internal event PluginLoadedEventHandler? PluginLoaded;
|
||||||
|
|
||||||
|
|
||||||
|
internal delegate void FileLoadedEventHandler(LoaderArgs args);
|
||||||
|
|
||||||
|
internal delegate void PluginLoadedEventHandler(LoaderArgs args);
|
||||||
|
|
||||||
|
|
||||||
|
internal (List<DBEvent>?, List<DBCommand>?, List<DBSlashCommand>?) Load()
|
||||||
|
{
|
||||||
|
|
||||||
|
List<DBEvent> events = new();
|
||||||
|
List<DBSlashCommand> slashCommands = new();
|
||||||
|
List<DBCommand> commands = new();
|
||||||
|
|
||||||
|
if (!Directory.Exists(path))
|
||||||
|
{
|
||||||
|
Directory.CreateDirectory(path);
|
||||||
|
return (null, null, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
var files = Directory.GetFiles(path, $"*.{extension}", SearchOption.AllDirectories);
|
||||||
|
foreach (var file in files)
|
||||||
|
{
|
||||||
|
Assembly.LoadFrom(file);
|
||||||
|
if (FileLoaded != null)
|
||||||
|
{
|
||||||
|
var args = new LoaderArgs
|
||||||
|
{
|
||||||
|
Exception = null,
|
||||||
|
TypeName = null,
|
||||||
|
IsLoaded = false,
|
||||||
|
PluginName = new FileInfo(file).Name.Split('.')[0],
|
||||||
|
Plugin = null
|
||||||
|
};
|
||||||
|
FileLoaded.Invoke(args);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
return (LoadItems<DBEvent>(), LoadItems<DBCommand>(), LoadItems<DBSlashCommand>());
|
||||||
|
}
|
||||||
|
|
||||||
|
internal List<T> LoadItems<T>()
|
||||||
|
{
|
||||||
|
List<T> list = new();
|
||||||
|
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var interfaceType = typeof(T);
|
||||||
|
var types = AppDomain.CurrentDomain.GetAssemblies()
|
||||||
|
.SelectMany(a => a.GetTypes())
|
||||||
|
.Where(p => interfaceType.IsAssignableFrom(p) && p.IsClass)
|
||||||
|
.ToArray();
|
||||||
|
|
||||||
|
|
||||||
|
list.Clear();
|
||||||
|
foreach (var type in types)
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var plugin = (T)Activator.CreateInstance(type)!;
|
||||||
|
list.Add(plugin);
|
||||||
|
|
||||||
|
|
||||||
|
if (PluginLoaded != null)
|
||||||
|
PluginLoaded.Invoke(new LoaderArgs
|
||||||
|
{
|
||||||
|
Exception = null,
|
||||||
|
IsLoaded = true,
|
||||||
|
PluginName = type.FullName,
|
||||||
|
TypeName = typeof(T) == typeof(DBCommand) ? "DBCommand" : typeof(T) == typeof(DBEvent) ? "DBEvent" : "DBSlashCommand",
|
||||||
|
Plugin = plugin
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
if (PluginLoaded != null)
|
||||||
|
PluginLoaded.Invoke(new LoaderArgs
|
||||||
|
{
|
||||||
|
Exception = ex,
|
||||||
|
IsLoaded = false,
|
||||||
|
PluginName = type.FullName,
|
||||||
|
TypeName = nameof(T)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Functions.WriteErrFile(ex.ToString());
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,14 +1,13 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Runtime.CompilerServices;
|
|
||||||
using System.Threading;
|
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
using Discord;
|
||||||
using Discord.WebSocket;
|
using Discord.WebSocket;
|
||||||
|
|
||||||
using PluginManager.Interfaces;
|
using PluginManager.Interfaces;
|
||||||
using PluginManager.Online.Helpers;
|
using PluginManager.Online;
|
||||||
using PluginManager.Online.Updates;
|
using PluginManager.Online.Updates;
|
||||||
using PluginManager.Others;
|
using PluginManager.Others;
|
||||||
|
|
||||||
@@ -20,11 +19,11 @@ public class PluginLoader
|
|||||||
|
|
||||||
public delegate void EVELoaded(string name, string typeName, bool success, Exception? e = null);
|
public delegate void EVELoaded(string name, string typeName, bool success, Exception? e = null);
|
||||||
|
|
||||||
private const string pluginCMDFolder = @"./Data/Plugins/Commands/";
|
public delegate void SLSHLoaded(string name, string tyypename, bool success, Exception? e = null);
|
||||||
private const string pluginEVEFolder = @"./Data/Plugins/Events/";
|
|
||||||
|
|
||||||
internal const string pluginCMDExtension = "dll";
|
private const string pluginFolder = @"./Data/Plugins/";
|
||||||
internal const string pluginEVEExtension = "dll";
|
|
||||||
|
internal const string pluginExtension = "dll";
|
||||||
private readonly DiscordSocketClient _client;
|
private readonly DiscordSocketClient _client;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -37,6 +36,11 @@ public class PluginLoader
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public EVELoaded? onEVELoad;
|
public EVELoaded? onEVELoad;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Event that is fired when a <see cref="DBEvent" /> is successfully loaded into events list
|
||||||
|
/// </summary>
|
||||||
|
public SLSHLoaded? onSLSHLoad;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The Plugin Loader constructor
|
/// The Plugin Loader constructor
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -57,104 +61,91 @@ public class PluginLoader
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public static List<DBEvent>? Events { get; set; }
|
public static List<DBEvent>? Events { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A list of <see cref="DBSlashCommand"/> commands
|
||||||
|
/// </summary>
|
||||||
|
public static List<DBSlashCommand>? SlashCommands { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The main mathod that is called to load all events
|
/// The main mathod that is called to load all events
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public async void LoadPlugins()
|
public async void LoadPlugins()
|
||||||
{
|
{
|
||||||
//Check for updates in commands
|
//Check for updates in commands
|
||||||
foreach (var file in Directory.GetFiles("./Data/Plugins/Commands", $"*.{pluginCMDExtension}", SearchOption.AllDirectories))
|
foreach (var file in Directory.GetFiles("./Data/Plugins/", $"*.{pluginExtension}",
|
||||||
{
|
SearchOption.AllDirectories))
|
||||||
await Task.Run(async () =>
|
await Task.Run(async () =>
|
||||||
{
|
{
|
||||||
string name = new FileInfo(file).Name.Split('.')[0];
|
var name = new FileInfo(file).Name.Split('.')[0];
|
||||||
if (!Config.PluginVersionsContainsKey(name))
|
var version = await ServerCom.GetVersionOfPackageFromWeb(name);
|
||||||
Config.SetPluginVersion(name, (await VersionString.GetVersionOfPackageFromWeb(name))?.PackageVersionID + ".0.0");
|
if (version is null)
|
||||||
|
return;
|
||||||
|
if (Config.Plugins.GetVersion(name) is not null)
|
||||||
|
Config.Plugins.SetVersion(name, version);
|
||||||
|
|
||||||
if (await PluginUpdater.CheckForUpdates(name))
|
if (await PluginUpdater.CheckForUpdates(name))
|
||||||
await PluginUpdater.Download(name);
|
await PluginUpdater.Download(name);
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
//Check for updates in events
|
|
||||||
foreach (var file in Directory.GetFiles("./Data/Plugins/Events", $"*.{pluginEVEExtension}", SearchOption.AllDirectories))
|
|
||||||
{
|
|
||||||
await Task.Run(async () =>
|
|
||||||
{
|
|
||||||
string name = new FileInfo(file).Name.Split('.')[0];
|
|
||||||
if (!Config.PluginVersionsContainsKey(name))
|
|
||||||
Config.SetPluginVersion(name, (await VersionString.GetVersionOfPackageFromWeb(name))?.PackageVersionID + ".0.0");
|
|
||||||
|
|
||||||
if (await PluginUpdater.CheckForUpdates(name))
|
|
||||||
await PluginUpdater.Download(name);
|
|
||||||
});
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//Save the new config file (after the updates)
|
|
||||||
await Config.SaveConfig(SaveType.NORMAL);
|
|
||||||
|
|
||||||
|
|
||||||
//Load all plugins
|
//Load all plugins
|
||||||
|
|
||||||
Commands = new List<DBCommand>();
|
Commands = new List<DBCommand>();
|
||||||
Events = new List<DBEvent>();
|
Events = new List<DBEvent>();
|
||||||
|
SlashCommands = new List<DBSlashCommand>();
|
||||||
|
|
||||||
Functions.WriteLogFile("Starting plugin loader ... Client: " + _client.CurrentUser.Username);
|
Functions.WriteLogFile("Starting plugin loader ... Client: " + _client.CurrentUser.Username);
|
||||||
Console.WriteLine("Loading plugins");
|
Settings.Variables.outputStream.WriteLine("Loading plugins");
|
||||||
|
|
||||||
var commandsLoader = new Loader<DBCommand>(pluginCMDFolder, pluginCMDExtension);
|
|
||||||
var eventsLoader = new Loader<DBEvent>(pluginEVEFolder, pluginEVEExtension);
|
|
||||||
|
|
||||||
commandsLoader.FileLoaded += OnCommandFileLoaded;
|
|
||||||
commandsLoader.PluginLoaded += OnCommandLoaded;
|
|
||||||
|
|
||||||
eventsLoader.FileLoaded += EventFileLoaded;
|
|
||||||
eventsLoader.PluginLoaded += OnEventLoaded;
|
|
||||||
|
|
||||||
Commands = commandsLoader.Load();
|
|
||||||
Events = eventsLoader.Load();
|
|
||||||
|
|
||||||
|
var loader = new LoaderV2("./Data/Plugins", "dll");
|
||||||
|
loader.FileLoaded += (args) => Functions.WriteLogFile($"{args.PluginName} file Loaded");
|
||||||
|
loader.PluginLoaded += Loader_PluginLoaded;
|
||||||
|
var res = loader.Load();
|
||||||
|
Events = res.Item1;
|
||||||
|
Commands = res.Item2;
|
||||||
|
SlashCommands = res.Item3;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void EventFileLoaded(LoaderArgs e)
|
private async void Loader_PluginLoaded(LoaderArgs args)
|
||||||
{
|
{
|
||||||
if (!e.IsLoaded)
|
// Settings.Variables.outputStream.WriteLine(args.TypeName);
|
||||||
|
switch (args.TypeName)
|
||||||
{
|
{
|
||||||
Functions.WriteLogFile($"[EVENT] Event from file [{e.PluginName}] has been successfully created !");
|
case "DBCommand":
|
||||||
}
|
onCMDLoad?.Invoke(((DBCommand)args.Plugin!).Command, args.TypeName!, args.IsLoaded, args.Exception);
|
||||||
}
|
break;
|
||||||
|
case "DBEvent":
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (args.IsLoaded)
|
||||||
|
((DBEvent)args.Plugin!).Start(_client);
|
||||||
|
|
||||||
private void OnCommandFileLoaded(LoaderArgs e)
|
onEVELoad?.Invoke(((DBEvent)args.Plugin!).Name, args.TypeName!, args.IsLoaded, args.Exception);
|
||||||
{
|
}
|
||||||
if (!e.IsLoaded)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
Functions.WriteLogFile($"[CMD] Command from file [{e.PluginName}] has been successfully loaded !");
|
Settings.Variables.outputStream.WriteLine(ex.ToString());
|
||||||
}
|
Settings.Variables.outputStream.WriteLine("Plugin: " + args.PluginName);
|
||||||
}
|
Settings.Variables.outputStream.WriteLine("Type: " + args.TypeName);
|
||||||
|
Settings.Variables.outputStream.WriteLine("IsLoaded: " + args.IsLoaded);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case "DBSlashCommand":
|
||||||
|
if (args.IsLoaded)
|
||||||
|
{
|
||||||
|
var slash = (DBSlashCommand)args.Plugin;
|
||||||
|
SlashCommandBuilder builder = new SlashCommandBuilder();
|
||||||
|
builder.WithName(slash.Name);
|
||||||
|
builder.WithDescription(slash.Description);
|
||||||
|
builder.WithDMPermission(slash.canUseDM);
|
||||||
|
builder.Options = slash.Options;
|
||||||
|
//Settings.Variables.outputStream.WriteLine("Loaded " + slash.Name);
|
||||||
|
onSLSHLoad?.Invoke(((DBSlashCommand)args.Plugin!).Name, args.TypeName, args.IsLoaded, args.Exception);
|
||||||
|
await _client.CreateGlobalApplicationCommandAsync(builder.Build());
|
||||||
|
|
||||||
private void OnEventLoaded(LoaderArgs e)
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
if (e.IsLoaded)
|
|
||||||
((DBEvent)e.Plugin!).Start(_client);
|
|
||||||
|
|
||||||
onEVELoad?.Invoke(((DBEvent)e.Plugin!).name, e.TypeName!, e.IsLoaded, e.Exception);
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
Console.WriteLine(ex.ToString());
|
|
||||||
Console.WriteLine("Plugin: " + e.PluginName);
|
|
||||||
Console.WriteLine("Type: " + e.TypeName);
|
|
||||||
Console.WriteLine("IsLoaded: " + e.IsLoaded);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void OnCommandLoaded(LoaderArgs e)
|
|
||||||
{
|
|
||||||
onCMDLoad?.Invoke(((DBCommand)e.Plugin!).Command, e.TypeName!, e.IsLoaded, e.Exception);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,67 +1,66 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Net.Http;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
using System.Net.Http;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
|
using System.Threading.Tasks;
|
||||||
using PluginManager.Others;
|
using PluginManager.Others;
|
||||||
|
|
||||||
namespace PluginManager.Online.Helpers
|
namespace PluginManager.Online.Helpers;
|
||||||
|
|
||||||
|
internal static class OnlineFunctions
|
||||||
{
|
{
|
||||||
internal static class OnlineFunctions
|
/// <summary>
|
||||||
|
/// Downloads a <see cref="Stream" /> and saves it to another <see cref="Stream" />.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="client">The <see cref="HttpClient" /> that is used to download the file</param>
|
||||||
|
/// <param name="url">The url to the file</param>
|
||||||
|
/// <param name="destination">The <see cref="Stream" /> to save the downloaded data</param>
|
||||||
|
/// <param name="progress">The <see cref="IProgress{T}" /> that is used to track the download progress</param>
|
||||||
|
/// <param name="cancellation">The cancellation token</param>
|
||||||
|
/// <returns></returns>
|
||||||
|
internal static async Task DownloadFileAsync(this HttpClient client, string url, Stream destination,
|
||||||
|
IProgress<float>? progress = null,
|
||||||
|
IProgress<long>? downloadedBytes = null, int bufferSize = 81920,
|
||||||
|
CancellationToken cancellation = default)
|
||||||
{
|
{
|
||||||
/// <summary>
|
using (var response = await client.GetAsync(url, HttpCompletionOption.ResponseHeadersRead, cancellation))
|
||||||
/// Downloads a <see cref="Stream"/> and saves it to another <see cref="Stream"/>.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="client">The <see cref="HttpClient"/> that is used to download the file</param>
|
|
||||||
/// <param name="url">The url to the file</param>
|
|
||||||
/// <param name="destination">The <see cref="Stream"/> to save the downloaded data</param>
|
|
||||||
/// <param name="progress">The <see cref="IProgress{T}"/> that is used to track the download progress</param>
|
|
||||||
/// <param name="cancellation">The cancellation token</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
internal static async Task DownloadFileAsync(this HttpClient client, string url, Stream destination, IProgress<float>? progress = null, IProgress<long>? downloadedBytes = null, int bufferSize = 81920, CancellationToken cancellation = default)
|
|
||||||
{
|
{
|
||||||
using (var response = await client.GetAsync(url, HttpCompletionOption.ResponseHeadersRead, cancellation))
|
var contentLength = response.Content.Headers.ContentLength;
|
||||||
|
|
||||||
|
using (var download = await response.Content.ReadAsStreamAsync(cancellation))
|
||||||
{
|
{
|
||||||
var contentLength = response.Content.Headers.ContentLength;
|
// Ignore progress reporting when no progress reporter was
|
||||||
|
// passed or when the content length is unknown
|
||||||
using (var download = await response.Content.ReadAsStreamAsync(cancellation))
|
if (progress == null || !contentLength.HasValue)
|
||||||
{
|
{
|
||||||
// Ignore progress reporting when no progress reporter was
|
await download.CopyToAsync(destination, cancellation);
|
||||||
// passed or when the content length is unknown
|
return;
|
||||||
if (progress == null || !contentLength.HasValue)
|
|
||||||
{
|
|
||||||
await download.CopyToAsync(destination, cancellation);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Convert absolute progress (bytes downloaded) into relative progress (0% - 100%)
|
|
||||||
var relativeProgress = new Progress<long>(totalBytes =>
|
|
||||||
{
|
|
||||||
progress.Report((float)totalBytes / contentLength.Value * 100);
|
|
||||||
downloadedBytes?.Report(totalBytes);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
// Use extension method to report progress while downloading
|
|
||||||
await download.CopyToOtherStreamAsync(destination, bufferSize, relativeProgress, cancellation);
|
|
||||||
progress.Report(1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Convert absolute progress (bytes downloaded) into relative progress (0% - 100%)
|
||||||
|
var relativeProgress = new Progress<long>(totalBytes =>
|
||||||
|
{
|
||||||
|
progress.Report((float)totalBytes / contentLength.Value * 100);
|
||||||
|
downloadedBytes?.Report(totalBytes);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
// Use extension method to report progress while downloading
|
||||||
|
await download.CopyToOtherStreamAsync(destination, bufferSize, relativeProgress, cancellation);
|
||||||
|
progress.Report(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Read contents of a file as string from specified URL
|
/// Read contents of a file as string from specified URL
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="url">The URL to read from</param>
|
/// <param name="url">The URL to read from</param>
|
||||||
/// <param name="cancellation">The cancellation token</param>
|
/// <param name="cancellation">The cancellation token</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
internal static async Task<string> DownloadStringAsync(string url, CancellationToken cancellation = default)
|
internal static async Task<string> DownloadStringAsync(string url, CancellationToken cancellation = default)
|
||||||
{
|
{
|
||||||
using var client = new HttpClient();
|
using var client = new HttpClient();
|
||||||
return await client.GetStringAsync(url, cancellation);
|
return await client.GetStringAsync(url, cancellation);
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,91 +1,84 @@
|
|||||||
using PluginManager.Others;
|
using System;
|
||||||
|
|
||||||
using System;
|
namespace PluginManager.Online.Helpers;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using System.Linq;
|
|
||||||
|
|
||||||
namespace PluginManager.Online.Helpers
|
public class VersionString
|
||||||
{
|
{
|
||||||
public class VersionString
|
public int PackageCheckVersion;
|
||||||
|
public int PackageMainVersion;
|
||||||
|
public int PackageVersionID;
|
||||||
|
|
||||||
|
public VersionString(string version)
|
||||||
{
|
{
|
||||||
public int PackageVersionID;
|
var data = version.Split('.');
|
||||||
public int PackageMainVersion;
|
try
|
||||||
public int PackageCheckVersion;
|
|
||||||
|
|
||||||
public VersionString(string version)
|
|
||||||
{
|
{
|
||||||
string[] data = version.Split('.');
|
PackageVersionID = int.Parse(data[0]);
|
||||||
try
|
PackageMainVersion = int.Parse(data[1]);
|
||||||
{
|
PackageCheckVersion = int.Parse(data[2]);
|
||||||
PackageVersionID = int.Parse(data[0]);
|
|
||||||
PackageMainVersion = int.Parse(data[1]);
|
|
||||||
PackageCheckVersion = int.Parse(data[2]);
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
throw new Exception("Failed to write Version", ex);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
|
||||||
|
|
||||||
#region operators
|
|
||||||
public static bool operator >(VersionString s1, VersionString s2)
|
|
||||||
{
|
{
|
||||||
if (s1.PackageVersionID > s2.PackageVersionID) return true;
|
Console.WriteLine(version);
|
||||||
if (s1.PackageVersionID == s2.PackageVersionID)
|
throw new Exception("Failed to write Version", ex);
|
||||||
{
|
|
||||||
if (s1.PackageMainVersion > s2.PackageMainVersion) return true;
|
|
||||||
if (s1.PackageMainVersion == s2.PackageMainVersion && s1.PackageCheckVersion > s2.PackageCheckVersion) return true;
|
|
||||||
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
public static bool operator <(VersionString s1, VersionString s2) => !(s1 > s2) && s1 != s2;
|
|
||||||
|
|
||||||
public static bool operator ==(VersionString s1, VersionString s2)
|
|
||||||
{
|
|
||||||
if (s1.PackageVersionID == s2.PackageVersionID && s1.PackageMainVersion == s2.PackageMainVersion && s1.PackageCheckVersion == s2.PackageCheckVersion) return true;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static bool operator !=(VersionString s1, VersionString s2) => !(s1 == s2);
|
|
||||||
|
|
||||||
public static bool operator <=(VersionString s1, VersionString s2) => (s1 < s2 || s1 == s2);
|
|
||||||
public static bool operator >=(VersionString s1, VersionString s2) => (s1 > s2 || s1 == s2);
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
public override string ToString()
|
|
||||||
{
|
|
||||||
return "{PackageID: " + PackageVersionID + ", PackageVersion: " + PackageMainVersion + ", PackageCheckVersion: " + PackageCheckVersion + "}";
|
|
||||||
}
|
|
||||||
|
|
||||||
public string ToShortString()
|
|
||||||
{
|
|
||||||
if (PackageVersionID == 0 && PackageCheckVersion == 0 && PackageMainVersion == 0)
|
|
||||||
return "Unknown";
|
|
||||||
return $"{PackageVersionID}.{PackageMainVersion}.{PackageCheckVersion}";
|
|
||||||
}
|
|
||||||
|
|
||||||
public static VersionString? GetVersionOfPackage(string pakName)
|
|
||||||
{
|
|
||||||
if (!Config.PluginVersionsContainsKey(pakName))
|
|
||||||
return null;
|
|
||||||
return new VersionString(Config.GetPluginVersion(pakName));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static async Task<VersionString?> GetVersionOfPackageFromWeb(string pakName)
|
|
||||||
{
|
|
||||||
string url = "https://raw.githubusercontent.com/Wizzy69/installer/discord-bot-files/Versions";
|
|
||||||
List<string> data = await ServerCom.ReadTextFromURL(url);
|
|
||||||
string? version = (from item in data
|
|
||||||
where !item.StartsWith("#") && item.StartsWith(pakName)
|
|
||||||
select item.Split(',')[1]).FirstOrDefault();
|
|
||||||
if (version == default || version == null) return null;
|
|
||||||
return new VersionString(version);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override string ToString()
|
||||||
|
{
|
||||||
|
return "{PackageID: " + PackageVersionID + ", PackageVersion: " + PackageMainVersion +
|
||||||
|
", PackageCheckVersion: " + PackageCheckVersion + "}";
|
||||||
|
}
|
||||||
|
|
||||||
|
public string ToShortString()
|
||||||
|
{
|
||||||
|
if (PackageVersionID == 0 && PackageCheckVersion == 0 && PackageMainVersion == 0)
|
||||||
|
return "Unknown";
|
||||||
|
return $"{PackageVersionID}.{PackageMainVersion}.{PackageCheckVersion}";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#region operators
|
||||||
|
|
||||||
|
public static bool operator >(VersionString s1, VersionString s2)
|
||||||
|
{
|
||||||
|
if (s1.PackageVersionID > s2.PackageVersionID) return true;
|
||||||
|
if (s1.PackageVersionID == s2.PackageVersionID)
|
||||||
|
{
|
||||||
|
if (s1.PackageMainVersion > s2.PackageMainVersion) return true;
|
||||||
|
if (s1.PackageMainVersion == s2.PackageMainVersion &&
|
||||||
|
s1.PackageCheckVersion > s2.PackageCheckVersion) return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static bool operator <(VersionString s1, VersionString s2)
|
||||||
|
{
|
||||||
|
return !(s1 > s2) && s1 != s2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static bool operator ==(VersionString s1, VersionString s2)
|
||||||
|
{
|
||||||
|
if (s1.PackageVersionID == s2.PackageVersionID && s1.PackageMainVersion == s2.PackageMainVersion &&
|
||||||
|
s1.PackageCheckVersion == s2.PackageCheckVersion) return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static bool operator !=(VersionString s1, VersionString s2)
|
||||||
|
{
|
||||||
|
return !(s1 == s2);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static bool operator <=(VersionString s1, VersionString s2)
|
||||||
|
{
|
||||||
|
return s1 < s2 || s1 == s2;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static bool operator >=(VersionString s1, VersionString s2)
|
||||||
|
{
|
||||||
|
return s1 > s2 || s1 == s2;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
}
|
}
|
||||||
@@ -40,10 +40,10 @@ public class PluginsManager
|
|||||||
var op = Functions.GetOperatingSystem();
|
var op = Functions.GetOperatingSystem();
|
||||||
|
|
||||||
var len = lines.Length;
|
var len = lines.Length;
|
||||||
string[] titles = { "Name", "Description", "Type", "Version", "Installed" };
|
string[] titles = { "Name", "Description", "Type", "Version" };
|
||||||
data.Add(new[] { "-", "-", "-", "-", "-" });
|
data.Add(new[] { "-", "-", "-", "-" });
|
||||||
data.Add(titles);
|
data.Add(titles);
|
||||||
data.Add(new[] { "-", "-", "-", "-", "-" });
|
data.Add(new[] { "-", "-", "-", "-" });
|
||||||
for (var i = 0; i < len; i++)
|
for (var i = 0; i < len; i++)
|
||||||
{
|
{
|
||||||
if (lines[i].Length <= 2)
|
if (lines[i].Length <= 2)
|
||||||
@@ -57,11 +57,9 @@ public class PluginsManager
|
|||||||
display[0] = content[0];
|
display[0] = content[0];
|
||||||
display[1] = content[1];
|
display[1] = content[1];
|
||||||
display[2] = content[2];
|
display[2] = content[2];
|
||||||
display[3] = (await VersionString.GetVersionOfPackageFromWeb(content[0]) ?? new VersionString("0.0.0")).ToShortString();
|
display[3] =
|
||||||
if (Config.PluginConfig.Contains(content[0]) || Config.PluginConfig.Contains(content[0]))
|
(await ServerCom.GetVersionOfPackageFromWeb(content[0]) ?? new VersionString("0.0.0"))
|
||||||
display[4] = "✓";
|
.ToShortString();
|
||||||
else
|
|
||||||
display[4] = "X";
|
|
||||||
data.Add(display);
|
data.Add(display);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -72,23 +70,21 @@ public class PluginsManager
|
|||||||
display[0] = content[0];
|
display[0] = content[0];
|
||||||
display[1] = content[1];
|
display[1] = content[1];
|
||||||
display[2] = content[2];
|
display[2] = content[2];
|
||||||
display[3] = (await VersionString.GetVersionOfPackageFromWeb(content[0]) ?? new VersionString("0.0.0")).ToShortString();
|
display[3] =
|
||||||
if (Config.PluginConfig.Contains(content[0]) || Config.PluginConfig.Contains(content[0]))
|
(await ServerCom.GetVersionOfPackageFromWeb(content[0]) ?? new VersionString("0.0.0"))
|
||||||
display[4] = "✓";
|
.ToShortString();
|
||||||
else
|
|
||||||
display[4] = "X";
|
|
||||||
data.Add(display);
|
data.Add(display);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
data.Add(new[] { "-", "-", "-", "-", "-" });
|
data.Add(new[] { "-", "-", "-", "-" });
|
||||||
|
|
||||||
Console_Utilities.FormatAndAlignTable(data, TableFormat.CENTER_EACH_COLUMN_BASED);
|
Utilities.FormatAndAlignTable(data, TableFormat.CENTER_EACH_COLUMN_BASED);
|
||||||
}
|
}
|
||||||
catch (Exception exception)
|
catch (Exception exception)
|
||||||
{
|
{
|
||||||
Console.WriteLine("Failed to execute command: listplugs\nReason: " + exception.Message);
|
Settings.Variables.outputStream.WriteLine("Failed to execute command: listplugs\nReason: " + exception.Message);
|
||||||
Functions.WriteErrFile(exception.ToString());
|
Functions.WriteErrFile(exception.ToString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -120,7 +116,7 @@ public class PluginsManager
|
|||||||
}
|
}
|
||||||
catch (Exception exception)
|
catch (Exception exception)
|
||||||
{
|
{
|
||||||
Console.WriteLine("Failed to execute command: listplugs\nReason: " + exception.Message);
|
Settings.Variables.outputStream.WriteLine("Failed to execute command: listplugs\nReason: " + exception.Message);
|
||||||
Functions.WriteErrFile(exception.ToString());
|
Functions.WriteErrFile(exception.ToString());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,89 +1,114 @@
|
|||||||
using PluginManager.Online.Helpers;
|
using System;
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Net.Http;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
using PluginManager.Online.Helpers;
|
||||||
using PluginManager.Others;
|
using PluginManager.Others;
|
||||||
|
|
||||||
namespace PluginManager.Online
|
namespace PluginManager.Online;
|
||||||
|
|
||||||
|
public static class ServerCom
|
||||||
{
|
{
|
||||||
public static class ServerCom
|
/// <summary>
|
||||||
|
/// Read all lines from a file async
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="link">The link of the file</param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static async Task<List<string>> ReadTextFromURL(string link)
|
||||||
{
|
{
|
||||||
/// <summary>
|
var response = await OnlineFunctions.DownloadStringAsync(link);
|
||||||
/// Read all lines from a file async
|
var lines = response.Split('\n');
|
||||||
/// </summary>
|
return lines.ToList();
|
||||||
/// <param name="link">The link of the file</param>
|
}
|
||||||
/// <returns></returns>
|
|
||||||
public static async Task<List<string>> ReadTextFromURL(string link)
|
|
||||||
{
|
|
||||||
string response = await OnlineFunctions.DownloadStringAsync(link);
|
|
||||||
string[] lines = response.Split('\n');
|
|
||||||
return lines.ToList();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Download file from url
|
/// Download file from url
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="URL">The url to the file</param>
|
/// <param name="URL">The url to the file</param>
|
||||||
/// <param name="location">The location where to store the downloaded data</param>
|
/// <param name="location">The location where to store the downloaded data</param>
|
||||||
/// <param name="progress">The <see cref="IProgress{T}"/> to track the download</param>
|
/// <param name="progress">The <see cref="IProgress{T}" /> to track the download</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public static async Task DownloadFileAsync(string URL, string location, IProgress<float> progress, IProgress<long>? downloadedBytes = null)
|
public static async Task DownloadFileAsync(string URL, string location, IProgress<float> progress,
|
||||||
|
IProgress<long>? downloadedBytes = null)
|
||||||
|
{
|
||||||
|
using (var client = new HttpClient())
|
||||||
{
|
{
|
||||||
using (var client = new System.Net.Http.HttpClient())
|
client.Timeout = TimeSpan.FromMinutes(5);
|
||||||
|
|
||||||
|
using (var file = new FileStream(location, FileMode.Create, FileAccess.Write, FileShare.None))
|
||||||
{
|
{
|
||||||
client.Timeout = TimeSpan.FromMinutes(5);
|
await client.DownloadFileAsync(URL, file, progress, downloadedBytes);
|
||||||
|
|
||||||
using (var file = new FileStream(location, FileMode.Create, FileAccess.Write, FileShare.None))
|
|
||||||
{
|
|
||||||
await client.DownloadFileAsync(URL, file, progress, downloadedBytes);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Download file from url
|
/// Download file from url
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="URL">The url to the file</param>
|
/// <param name="URL">The url to the file</param>
|
||||||
/// <param name="location">The location where to store the downloaded data</param>
|
/// <param name="location">The location where to store the downloaded data</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public static async Task DownloadFileAsync(string URL, string location)
|
public static async Task DownloadFileAsync(string URL, string location)
|
||||||
{
|
{
|
||||||
bool isDownloading = true;
|
var isDownloading = true;
|
||||||
float c_progress = 0;
|
float c_progress = 0;
|
||||||
|
|
||||||
Console_Utilities.ProgressBar pbar = new Console_Utilities.ProgressBar(ProgressBarType.NORMAL) { Max = 100f, NoColor = true };
|
var pbar = new Utilities.ProgressBar(ProgressBarType.NORMAL) { Max = 100f, NoColor = true };
|
||||||
|
|
||||||
IProgress<float> progress = new Progress<float>(percent => { c_progress = percent; });
|
IProgress<float> progress = new Progress<float>(percent => { c_progress = percent; });
|
||||||
|
|
||||||
|
|
||||||
Task updateProgressBarTask = new Task(() =>
|
var updateProgressBarTask = new Task(() =>
|
||||||
|
{
|
||||||
|
while (isDownloading)
|
||||||
{
|
{
|
||||||
while (isDownloading)
|
pbar.Update(c_progress);
|
||||||
{
|
if (c_progress == 100f)
|
||||||
pbar.Update(c_progress);
|
break;
|
||||||
if (c_progress == 100f)
|
Thread.Sleep(500);
|
||||||
break;
|
|
||||||
Thread.Sleep(500);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
);
|
}
|
||||||
|
);
|
||||||
|
|
||||||
new Thread(updateProgressBarTask.Start).Start();
|
new Thread(updateProgressBarTask.Start).Start();
|
||||||
await DownloadFileAsync(URL, location, progress);
|
await DownloadFileAsync(URL, location, progress);
|
||||||
|
|
||||||
|
|
||||||
c_progress = pbar.Max;
|
c_progress = pbar.Max;
|
||||||
pbar.Update(100f);
|
pbar.Update(100f);
|
||||||
isDownloading = false;
|
isDownloading = false;
|
||||||
}
|
}
|
||||||
public static async Task DownloadFileNoProgressAsync(string URL, string location)
|
|
||||||
|
public static async Task DownloadFileNoProgressAsync(string URL, string location)
|
||||||
|
{
|
||||||
|
IProgress<float> progress = new Progress<float>();
|
||||||
|
await DownloadFileAsync(URL, location, progress);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static VersionString? GetVersionOfPackage(string pakName)
|
||||||
|
{
|
||||||
|
if (Config.Plugins.GetVersion(pakName) is null)
|
||||||
|
return null;
|
||||||
|
return new VersionString(Config.Plugins.GetVersion(pakName));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static async Task<VersionString?> GetVersionOfPackageFromWeb(string pakName)
|
||||||
|
{
|
||||||
|
var url = "https://raw.githubusercontent.com/Wizzy69/installer/discord-bot-files/Versions";
|
||||||
|
var data = await ReadTextFromURL(url);
|
||||||
|
foreach (var item in data)
|
||||||
{
|
{
|
||||||
IProgress<float> progress = new Progress<float>();
|
if (item.StartsWith("#"))
|
||||||
await DownloadFileAsync(URL, location, progress);
|
continue;
|
||||||
}
|
|
||||||
|
|
||||||
|
string[] split = item.Split(',');
|
||||||
|
if (split[0] == pakName)
|
||||||
|
return new VersionString(split[1]);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,51 +1,51 @@
|
|||||||
using PluginManager.Items;
|
using System;
|
||||||
using PluginManager.Online.Helpers;
|
using System.Threading.Tasks;
|
||||||
|
using PluginManager.Items;
|
||||||
using PluginManager.Others;
|
using PluginManager.Others;
|
||||||
|
|
||||||
using System;
|
namespace PluginManager.Online.Updates;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace PluginManager.Online.Updates
|
public class PluginUpdater
|
||||||
{
|
{
|
||||||
public class PluginUpdater
|
public static async Task<bool> CheckForUpdates(string pakName)
|
||||||
{
|
{
|
||||||
public static async Task<bool> CheckForUpdates(string pakName)
|
try
|
||||||
{
|
{
|
||||||
try
|
var webV = await ServerCom.GetVersionOfPackageFromWeb(pakName);
|
||||||
{
|
var local = ServerCom.GetVersionOfPackage(pakName);
|
||||||
var webV = await VersionString.GetVersionOfPackageFromWeb(pakName);
|
|
||||||
var local = VersionString.GetVersionOfPackage(pakName);
|
|
||||||
|
|
||||||
if (local is null) return true;
|
if (local is null) return true;
|
||||||
if (webV is null) return false;
|
if (webV is null) return false;
|
||||||
|
|
||||||
if (webV == local) return false;
|
if (webV == local) return false;
|
||||||
if (webV > local) return true;
|
if (webV > local) return true;
|
||||||
}
|
|
||||||
catch (Exception ex) { Console.WriteLine(ex.Message); }
|
|
||||||
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
public static async Task<Update> DownloadUpdateInfo(string pakName)
|
|
||||||
{
|
{
|
||||||
string url = "https://raw.githubusercontent.com/Wizzy69/installer/discord-bot-files/Versions";
|
Console.WriteLine(ex.Message);
|
||||||
List<string> info = await ServerCom.ReadTextFromURL(url);
|
|
||||||
VersionString? version = await VersionString.GetVersionOfPackageFromWeb(pakName);
|
|
||||||
|
|
||||||
if (version is null) return Update.Empty;
|
|
||||||
Update update = new Update(pakName, string.Join('\n', info), version);
|
|
||||||
return update;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static async Task Download(string pakName)
|
|
||||||
{
|
|
||||||
Console_Utilities.WriteColorText("An update was found for &g" + pakName + "&c. Version: &r" + (await VersionString.GetVersionOfPackageFromWeb(pakName))?.ToShortString() + "&c. Current Version: &y" + VersionString.GetVersionOfPackage(pakName)?.ToShortString());
|
|
||||||
await ConsoleCommandsHandler.ExecuteCommad("dwplug " + pakName);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static async Task<Update> DownloadUpdateInfo(string pakName)
|
||||||
|
{
|
||||||
|
var url = "https://raw.githubusercontent.com/Wizzy69/installer/discord-bot-files/Versions";
|
||||||
|
var info = await ServerCom.ReadTextFromURL(url);
|
||||||
|
var version = await ServerCom.GetVersionOfPackageFromWeb(pakName);
|
||||||
|
|
||||||
|
if (version is null) return Update.Empty;
|
||||||
|
var update = new Update(pakName, string.Join('\n', info), version);
|
||||||
|
return update;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static async Task Download(string pakName)
|
||||||
|
{
|
||||||
|
Utilities.WriteColorText("An update was found for &g" + pakName + "&c. Version: &r" +
|
||||||
|
(await ServerCom.GetVersionOfPackageFromWeb(pakName))?.ToShortString() +
|
||||||
|
"&c. Current Version: &y" +
|
||||||
|
ServerCom.GetVersionOfPackage(pakName)?.ToShortString());
|
||||||
|
await ConsoleCommandsHandler.ExecuteCommad("dwplug " + pakName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,36 +1,34 @@
|
|||||||
using PluginManager.Online.Helpers;
|
using System;
|
||||||
|
using PluginManager.Online.Helpers;
|
||||||
|
|
||||||
namespace PluginManager.Online.Updates
|
namespace PluginManager.Online.Updates;
|
||||||
|
|
||||||
|
public class Update
|
||||||
{
|
{
|
||||||
public class Update
|
public static Update Empty = new(null, null, null);
|
||||||
|
|
||||||
|
private readonly bool isEmpty;
|
||||||
|
|
||||||
|
public VersionString newVersion;
|
||||||
|
public string pakName;
|
||||||
|
public string UpdateMessage;
|
||||||
|
|
||||||
|
public Update(string pakName, string updateMessage, VersionString newVersion)
|
||||||
{
|
{
|
||||||
public static Update Empty = new Update(null, null, null);
|
this.pakName = pakName;
|
||||||
public string pakName;
|
UpdateMessage = updateMessage;
|
||||||
public string UpdateMessage;
|
this.newVersion = newVersion;
|
||||||
|
|
||||||
public VersionString newVersion;
|
if (pakName is null && updateMessage is null && newVersion is null)
|
||||||
|
isEmpty = true;
|
||||||
private bool isEmpty;
|
}
|
||||||
|
|
||||||
public Update(string pakName, string updateMessage, VersionString newVersion)
|
|
||||||
{
|
|
||||||
this.pakName = pakName;
|
|
||||||
UpdateMessage = updateMessage;
|
|
||||||
this.newVersion = newVersion;
|
|
||||||
|
|
||||||
if (pakName is null && updateMessage is null && newVersion is null)
|
|
||||||
isEmpty = true;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public override string ToString()
|
|
||||||
{
|
|
||||||
if (isEmpty)
|
|
||||||
throw new System.Exception("The update is EMPTY. Can not print information about an empty update !");
|
|
||||||
return $"Package Name: {this.pakName}\n" +
|
|
||||||
$"Update Message: {UpdateMessage}\n" +
|
|
||||||
$"Version: {newVersion.ToString()}";
|
|
||||||
}
|
|
||||||
|
|
||||||
|
public override string ToString()
|
||||||
|
{
|
||||||
|
if (isEmpty)
|
||||||
|
throw new Exception("The update is EMPTY. Can not print information about an empty update !");
|
||||||
|
return $"Package Name: {pakName}\n" +
|
||||||
|
$"Update Message: {UpdateMessage}\n" +
|
||||||
|
$"Version: {newVersion}";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,324 +1,365 @@
|
|||||||
using Discord;
|
using System;
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace PluginManager.Others
|
namespace PluginManager.Others;
|
||||||
|
|
||||||
|
public static class Utilities
|
||||||
{
|
{
|
||||||
public static class Console_Utilities
|
private static Dictionary<char, ConsoleColor> Colors = new()
|
||||||
{
|
{
|
||||||
public static void Initialize()
|
{ 'g', ConsoleColor.Green },
|
||||||
|
{ 'b', ConsoleColor.Blue },
|
||||||
|
{ 'r', ConsoleColor.Red },
|
||||||
|
{ 'm', ConsoleColor.Magenta },
|
||||||
|
{ 'y', ConsoleColor.Yellow }
|
||||||
|
};
|
||||||
|
|
||||||
|
private static char ColorPrefix = '&';
|
||||||
|
|
||||||
|
|
||||||
|
private static bool CanAproximateTo(this float f, float y)
|
||||||
|
{
|
||||||
|
return MathF.Abs(f - y) < 0.000001;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A way to create a table based on input data
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="data">The List of arrays of strings that represent the rows.</param>
|
||||||
|
public static void FormatAndAlignTable(List<string[]> data, TableFormat format)
|
||||||
|
{
|
||||||
|
if (format == TableFormat.CENTER_EACH_COLUMN_BASED)
|
||||||
{
|
{
|
||||||
if (!Config.ContainsKey("TableVariables"))
|
var tableLine = '-';
|
||||||
Config.AddValueToVariables("TableVariables", new Dictionary<string, string> { { "DefaultSpace", "3" } }, false);
|
var tableCross = '+';
|
||||||
if (!Config.ContainsKey("ColorDataBase"))
|
var tableWall = '|';
|
||||||
Config.AddValueToVariables("ColorDataBase", new Dictionary<char, ConsoleColor>()
|
|
||||||
{
|
|
||||||
{ 'g', ConsoleColor.Green },
|
|
||||||
{ 'b', ConsoleColor.Blue },
|
|
||||||
{ 'r', ConsoleColor.Red },
|
|
||||||
{ 'm', ConsoleColor.Magenta },
|
|
||||||
{ 'y', ConsoleColor.Yellow },
|
|
||||||
}, false
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!Config.ContainsKey("ColorPrefix"))
|
var len = new int[data[0].Length];
|
||||||
Config.AddValueToVariables("ColorPrefix", '&', false);
|
foreach (var line in data)
|
||||||
}
|
for (var i = 0; i < line.Length; i++)
|
||||||
|
if (line[i].Length > len[i])
|
||||||
|
len[i] = line[i].Length;
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
foreach (var row in data)
|
||||||
/// Progress bar object
|
|
||||||
/// </summary>
|
|
||||||
public class ProgressBar
|
|
||||||
{
|
|
||||||
public ProgressBar(ProgressBarType type)
|
|
||||||
{
|
{
|
||||||
this.type = type;
|
if (row[0][0] == tableLine)
|
||||||
}
|
Settings.Variables.outputStream.Write(tableCross);
|
||||||
|
|
||||||
public float Max { get; init; }
|
|
||||||
public ConsoleColor Color { get; init; }
|
|
||||||
public bool NoColor { get; init; }
|
|
||||||
public ProgressBarType type { get; set; }
|
|
||||||
|
|
||||||
private int BarLength = 32;
|
|
||||||
private int position = 1;
|
|
||||||
private bool positive = true;
|
|
||||||
|
|
||||||
private bool isRunning;
|
|
||||||
|
|
||||||
public async void Start()
|
|
||||||
{
|
|
||||||
if (type != ProgressBarType.NO_END)
|
|
||||||
throw new Exception("Only NO_END progress bar can use this method");
|
|
||||||
if (isRunning)
|
|
||||||
throw new Exception("This progress bar is already running");
|
|
||||||
|
|
||||||
isRunning = true;
|
|
||||||
while (isRunning)
|
|
||||||
{
|
|
||||||
UpdateNoEnd();
|
|
||||||
await System.Threading.Tasks.Task.Delay(100);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Stop()
|
|
||||||
{
|
|
||||||
if (type != ProgressBarType.NO_END)
|
|
||||||
throw new Exception("Only NO_END progress bar can use this method");
|
|
||||||
if (!isRunning)
|
|
||||||
throw new Exception("Can not stop a progressbar that did not start");
|
|
||||||
isRunning = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Update(float progress)
|
|
||||||
{
|
|
||||||
switch (type)
|
|
||||||
{
|
|
||||||
case ProgressBarType.NORMAL:
|
|
||||||
UpdateNormal(progress);
|
|
||||||
return;
|
|
||||||
case ProgressBarType.NO_END:
|
|
||||||
if (progress <= 99.9f)
|
|
||||||
UpdateNoEnd();
|
|
||||||
return;
|
|
||||||
default:
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void UpdateNoEnd()
|
|
||||||
{
|
|
||||||
Console.CursorLeft = 0;
|
|
||||||
Console.Write("[");
|
|
||||||
for (int i = 1; i <= position; i++)
|
|
||||||
Console.Write(" ");
|
|
||||||
Console.Write("<==()==>");
|
|
||||||
position += positive ? 1 : -1;
|
|
||||||
for (int i = position; i <= BarLength - 1 - (positive ? 0 : 2); i++)
|
|
||||||
Console.Write(" ");
|
|
||||||
Console.Write("]");
|
|
||||||
|
|
||||||
|
|
||||||
if (position == BarLength - 1 || position == 1)
|
|
||||||
positive = !positive;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void UpdateNormal(float progress)
|
|
||||||
{
|
|
||||||
Console.CursorLeft = 0;
|
|
||||||
Console.Write("[");
|
|
||||||
Console.CursorLeft = BarLength;
|
|
||||||
Console.Write("]");
|
|
||||||
Console.CursorLeft = 1;
|
|
||||||
float onechunk = 30.0f / Max;
|
|
||||||
|
|
||||||
int position = 1;
|
|
||||||
|
|
||||||
for (int i = 0; i < onechunk * progress; i++)
|
|
||||||
{
|
|
||||||
Console.BackgroundColor = NoColor ? ConsoleColor.Black : this.Color;
|
|
||||||
Console.CursorLeft = position++;
|
|
||||||
Console.Write("#");
|
|
||||||
}
|
|
||||||
|
|
||||||
for (int i = position; i < BarLength; i++)
|
|
||||||
{
|
|
||||||
Console.BackgroundColor = NoColor ? ConsoleColor.Black : ConsoleColor.DarkGray;
|
|
||||||
Console.CursorLeft = position++;
|
|
||||||
Console.Write(" ");
|
|
||||||
}
|
|
||||||
|
|
||||||
Console.CursorLeft = BarLength + 4;
|
|
||||||
Console.BackgroundColor = ConsoleColor.Black;
|
|
||||||
if (progress.CanAproximateTo(Max))
|
|
||||||
Console.Write(progress + " % ✓");
|
|
||||||
else
|
else
|
||||||
Console.Write(MathF.Round(progress, 2) + " % ");
|
Settings.Variables.outputStream.Write(tableWall);
|
||||||
|
for (var l = 0; l < row.Length; l++)
|
||||||
|
{
|
||||||
|
if (row[l][0] == tableLine)
|
||||||
|
{
|
||||||
|
for (var i = 0; i < len[l] + 4; ++i)
|
||||||
|
Settings.Variables.outputStream.Write(tableLine);
|
||||||
|
}
|
||||||
|
else if (row[l].Length == len[l])
|
||||||
|
{
|
||||||
|
Settings.Variables.outputStream.Write(" ");
|
||||||
|
Settings.Variables.outputStream.Write(row[l]);
|
||||||
|
Settings.Variables.outputStream.Write(" ");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var lenHalf = row[l].Length / 2;
|
||||||
|
for (var i = 0; i < (len[l] + 4) / 2 - lenHalf; ++i)
|
||||||
|
Settings.Variables.outputStream.Write(" ");
|
||||||
|
Settings.Variables.outputStream.Write(row[l]);
|
||||||
|
for (var i = (len[l] + 4) / 2 + lenHalf + 1; i < len[l] + 4; ++i)
|
||||||
|
Settings.Variables.outputStream.Write(" ");
|
||||||
|
if (row[l].Length % 2 == 0)
|
||||||
|
Settings.Variables.outputStream.Write(" ");
|
||||||
|
}
|
||||||
|
|
||||||
|
Settings.Variables.outputStream.Write(row[l][0] == tableLine ? tableCross : tableWall);
|
||||||
|
}
|
||||||
|
|
||||||
|
Settings.Variables.outputStream.WriteLine(); //end line
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (format == TableFormat.CENTER_OVERALL_LENGTH)
|
||||||
private static bool CanAproximateTo(this float f, float y) => (MathF.Abs(f - y) < 0.000001);
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// A way to create a table based on input data
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="data">The List of arrays of strings that represent the rows.</param>
|
|
||||||
public static void FormatAndAlignTable(List<string[]> data, TableFormat format)
|
|
||||||
{
|
{
|
||||||
if (format == TableFormat.CENTER_EACH_COLUMN_BASED)
|
var maxLen = 0;
|
||||||
|
foreach (var row in data)
|
||||||
|
foreach (var s in row)
|
||||||
|
if (s.Length > maxLen)
|
||||||
|
maxLen = s.Length;
|
||||||
|
|
||||||
|
var div = (maxLen + 4) / 2;
|
||||||
|
|
||||||
|
foreach (var row in data)
|
||||||
{
|
{
|
||||||
char tableLine = '-';
|
Settings.Variables.outputStream.Write("\t");
|
||||||
char tableCross = '+';
|
if (row[0] == "-")
|
||||||
char tableWall = '|';
|
Settings.Variables.outputStream.Write("+");
|
||||||
|
|
||||||
int[] len = new int[data[0].Length];
|
|
||||||
foreach (var line in data)
|
|
||||||
for (int i = 0; i < line.Length; i++)
|
|
||||||
if (line[i].Length > len[i])
|
|
||||||
len[i] = line[i].Length;
|
|
||||||
|
|
||||||
|
|
||||||
foreach (string[] row in data)
|
|
||||||
{
|
|
||||||
if (row[0][0] == tableLine)
|
|
||||||
Console.Write(tableCross);
|
|
||||||
else
|
|
||||||
Console.Write(tableWall);
|
|
||||||
for (int l = 0; l < row.Length; l++)
|
|
||||||
{
|
|
||||||
if (row[l][0] == tableLine)
|
|
||||||
{
|
|
||||||
for (int i = 0; i < len[l] + 4; ++i)
|
|
||||||
Console.Write(tableLine);
|
|
||||||
}
|
|
||||||
else if (row[l].Length == len[l])
|
|
||||||
{
|
|
||||||
Console.Write(" ");
|
|
||||||
Console.Write(row[l]);
|
|
||||||
Console.Write(" ");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
int lenHalf = row[l].Length / 2;
|
|
||||||
for (int i = 0; i < ((len[l] + 4) / 2 - lenHalf); ++i)
|
|
||||||
Console.Write(" ");
|
|
||||||
Console.Write(row[l]);
|
|
||||||
for (int i = (len[l] + 4) / 2 + lenHalf + 1; i < len[l] + 4; ++i)
|
|
||||||
Console.Write(" ");
|
|
||||||
if (row[l].Length % 2 == 0)
|
|
||||||
Console.Write(" ");
|
|
||||||
}
|
|
||||||
|
|
||||||
Console.Write(row[l][0] == tableLine ? tableCross : tableWall);
|
|
||||||
}
|
|
||||||
|
|
||||||
Console.WriteLine(); //end line
|
|
||||||
}
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (format == TableFormat.CENTER_OVERALL_LENGTH)
|
|
||||||
{
|
|
||||||
int maxLen = 0;
|
|
||||||
foreach (string[] row in data)
|
|
||||||
foreach (string s in row)
|
|
||||||
if (s.Length > maxLen)
|
|
||||||
maxLen = s.Length;
|
|
||||||
|
|
||||||
int div = (maxLen + 4) / 2;
|
|
||||||
|
|
||||||
foreach (string[] row in data)
|
|
||||||
{
|
|
||||||
Console.Write("\t");
|
|
||||||
if (row[0] == "-")
|
|
||||||
Console.Write("+");
|
|
||||||
else
|
|
||||||
Console.Write("|");
|
|
||||||
|
|
||||||
foreach (string s in row)
|
|
||||||
{
|
|
||||||
if (s == "-")
|
|
||||||
{
|
|
||||||
for (int i = 0; i < maxLen + 4; ++i)
|
|
||||||
Console.Write("-");
|
|
||||||
}
|
|
||||||
else if (s.Length == maxLen)
|
|
||||||
{
|
|
||||||
Console.Write(" ");
|
|
||||||
Console.Write(s);
|
|
||||||
Console.Write(" ");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
int lenHalf = s.Length / 2;
|
|
||||||
for (int i = 0; i < div - lenHalf; ++i)
|
|
||||||
Console.Write(" ");
|
|
||||||
Console.Write(s);
|
|
||||||
for (int i = div + lenHalf + 1; i < maxLen + 4; ++i)
|
|
||||||
Console.Write(" ");
|
|
||||||
if (s.Length % 2 == 0)
|
|
||||||
Console.Write(" ");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (s == "-")
|
|
||||||
Console.Write("+");
|
|
||||||
else
|
|
||||||
Console.Write("|");
|
|
||||||
}
|
|
||||||
|
|
||||||
Console.WriteLine(); //end line
|
|
||||||
}
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (format == TableFormat.DEFAULT)
|
|
||||||
{
|
|
||||||
int[] widths = new int[data[0].Length];
|
|
||||||
int space_between_columns = int.Parse(Config.GetValue<Dictionary<string, string>>("TableVariables")?["DefaultSpace"]!);
|
|
||||||
for (int i = 0; i < data.Count; i++)
|
|
||||||
{
|
|
||||||
for (int j = 0; j < data[i].Length; j++)
|
|
||||||
{
|
|
||||||
if (data[i][j].Length > widths[j])
|
|
||||||
widths[j] = data[i][j].Length;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
for (int i = 0; i < data.Count; i++)
|
|
||||||
{
|
|
||||||
for (int j = 0; j < data[i].Length; j++)
|
|
||||||
{
|
|
||||||
if (data[i][j] == "-")
|
|
||||||
data[i][j] = " ";
|
|
||||||
Console.Write(data[i][j]);
|
|
||||||
for (int k = 0; k < widths[j] - data[i][j].Length + 1 + space_between_columns; k++)
|
|
||||||
Console.Write(" ");
|
|
||||||
}
|
|
||||||
|
|
||||||
Console.WriteLine();
|
|
||||||
}
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new Exception("Unknown type of table");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void WriteColorText(string text, bool appendNewLineAtEnd = true)
|
|
||||||
{
|
|
||||||
ConsoleColor initialForeGround = Console.ForegroundColor;
|
|
||||||
char[] input = text.ToCharArray();
|
|
||||||
for (int i = 0; i < input.Length; i++)
|
|
||||||
{
|
|
||||||
if (input[i] == Config.GetValue<char>("ColorPrefix"))
|
|
||||||
{
|
|
||||||
if (i + 1 < input.Length)
|
|
||||||
{
|
|
||||||
if (Config.GetValue<Dictionary<char, ConsoleColor>>("ColorDataBase")!.ContainsKey(input[i + 1]))
|
|
||||||
{
|
|
||||||
Console.ForegroundColor = Config.GetValue<Dictionary<char, ConsoleColor>>("ColorDataBase")![input[i + 1]];
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
else if (input[i + 1] == 'c')
|
|
||||||
{
|
|
||||||
Console.ForegroundColor = initialForeGround;
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
else
|
||||||
Console.Write(input[i]);
|
Settings.Variables.outputStream.Write("|");
|
||||||
|
|
||||||
|
foreach (var s in row)
|
||||||
|
{
|
||||||
|
if (s == "-")
|
||||||
|
{
|
||||||
|
for (var i = 0; i < maxLen + 4; ++i)
|
||||||
|
Settings.Variables.outputStream.Write("-");
|
||||||
|
}
|
||||||
|
else if (s.Length == maxLen)
|
||||||
|
{
|
||||||
|
Settings.Variables.outputStream.Write(" ");
|
||||||
|
Settings.Variables.outputStream.Write(s);
|
||||||
|
Settings.Variables.outputStream.Write(" ");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var lenHalf = s.Length / 2;
|
||||||
|
for (var i = 0; i < div - lenHalf; ++i)
|
||||||
|
Settings.Variables.outputStream.Write(" ");
|
||||||
|
Settings.Variables.outputStream.Write(s);
|
||||||
|
for (var i = div + lenHalf + 1; i < maxLen + 4; ++i)
|
||||||
|
Settings.Variables.outputStream.Write(" ");
|
||||||
|
if (s.Length % 2 == 0)
|
||||||
|
Settings.Variables.outputStream.Write(" ");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (s == "-")
|
||||||
|
Settings.Variables.outputStream.Write("+");
|
||||||
|
else
|
||||||
|
Settings.Variables.outputStream.Write("|");
|
||||||
|
}
|
||||||
|
|
||||||
|
Settings.Variables.outputStream.WriteLine(); //end line
|
||||||
}
|
}
|
||||||
|
|
||||||
Console.ForegroundColor = initialForeGround;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (format == TableFormat.DEFAULT)
|
||||||
|
{
|
||||||
|
var widths = new int[data[0].Length];
|
||||||
|
var space_between_columns = 3;
|
||||||
|
for (var i = 0; i < data.Count; i++)
|
||||||
|
for (var j = 0; j < data[i].Length; j++)
|
||||||
|
if (data[i][j].Length > widths[j])
|
||||||
|
widths[j] = data[i][j].Length;
|
||||||
|
|
||||||
|
for (var i = 0; i < data.Count; i++)
|
||||||
|
{
|
||||||
|
for (var j = 0; j < data[i].Length; j++)
|
||||||
|
{
|
||||||
|
if (data[i][j] == "-")
|
||||||
|
data[i][j] = " ";
|
||||||
|
Settings.Variables.outputStream.Write(data[i][j]);
|
||||||
|
for (var k = 0; k < widths[j] - data[i][j].Length + 1 + space_between_columns; k++)
|
||||||
|
Settings.Variables.outputStream.Write(" ");
|
||||||
|
}
|
||||||
|
|
||||||
|
Settings.Variables.outputStream.WriteLine();
|
||||||
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new Exception("Unknown type of table");
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void WriteColorText(string text, bool appendNewLineAtEnd = true)
|
||||||
|
{
|
||||||
|
if (Console.Out != Settings.Variables.outputStream)
|
||||||
|
{
|
||||||
|
Settings.Variables.outputStream.Write(text);
|
||||||
if (appendNewLineAtEnd)
|
if (appendNewLineAtEnd)
|
||||||
Console.WriteLine();
|
Settings.Variables.outputStream.WriteLine();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var initialForeGround = Console.ForegroundColor;
|
||||||
|
var input = text.ToCharArray();
|
||||||
|
for (var i = 0; i < input.Length; i++)
|
||||||
|
if (input[i] == ColorPrefix)
|
||||||
|
{
|
||||||
|
if (i + 1 < input.Length)
|
||||||
|
{
|
||||||
|
if (Colors.ContainsKey(input[i + 1]))
|
||||||
|
{
|
||||||
|
Console.ForegroundColor = Colors[input[i + 1]];
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
else if (input[i + 1] == 'c')
|
||||||
|
{
|
||||||
|
Console.ForegroundColor = initialForeGround;
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Settings.Variables.outputStream.Write(input[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
Console.ForegroundColor = initialForeGround;
|
||||||
|
if (appendNewLineAtEnd)
|
||||||
|
Settings.Variables.outputStream.WriteLine();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Progress bar object
|
||||||
|
/// </summary>
|
||||||
|
public class ProgressBar
|
||||||
|
{
|
||||||
|
private readonly int BarLength = 32;
|
||||||
|
|
||||||
|
private bool isRunning;
|
||||||
|
private int position = 1;
|
||||||
|
private bool positive = true;
|
||||||
|
|
||||||
|
public ProgressBar(ProgressBarType type)
|
||||||
|
{
|
||||||
|
if (Settings.Variables.outputStream != Console.Out)
|
||||||
|
throw new Exception("This class (or function) can be used with console only. For UI please use another approach.");
|
||||||
|
this.type = type;
|
||||||
|
}
|
||||||
|
|
||||||
|
public float Max { get; init; }
|
||||||
|
public ConsoleColor Color { get; init; }
|
||||||
|
public bool NoColor { get; init; }
|
||||||
|
public ProgressBarType type { get; set; }
|
||||||
|
|
||||||
|
public int TotalLength { get; private set; }
|
||||||
|
|
||||||
|
|
||||||
|
public async void Start()
|
||||||
|
{
|
||||||
|
if (type != ProgressBarType.NO_END)
|
||||||
|
throw new Exception("Only NO_END progress bar can use this method");
|
||||||
|
if (isRunning)
|
||||||
|
throw new Exception("This progress bar is already running");
|
||||||
|
|
||||||
|
isRunning = true;
|
||||||
|
while (isRunning)
|
||||||
|
{
|
||||||
|
UpdateNoEnd();
|
||||||
|
await Task.Delay(100);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public async void Start(string message)
|
||||||
|
{
|
||||||
|
if (type != ProgressBarType.NO_END)
|
||||||
|
throw new Exception("Only NO_END progress bar can use this method");
|
||||||
|
if (isRunning)
|
||||||
|
throw new Exception("This progress bar is already running");
|
||||||
|
|
||||||
|
isRunning = true;
|
||||||
|
|
||||||
|
TotalLength = message.Length + BarLength + 5;
|
||||||
|
while (isRunning)
|
||||||
|
{
|
||||||
|
UpdateNoEnd(message);
|
||||||
|
await Task.Delay(100);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Stop()
|
||||||
|
{
|
||||||
|
if (type != ProgressBarType.NO_END)
|
||||||
|
throw new Exception("Only NO_END progress bar can use this method");
|
||||||
|
if (!isRunning)
|
||||||
|
throw new Exception("Can not stop a progressbar that did not start");
|
||||||
|
isRunning = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Stop(string message)
|
||||||
|
{
|
||||||
|
Stop();
|
||||||
|
|
||||||
|
if (message is not null)
|
||||||
|
{
|
||||||
|
Console.CursorLeft = 0;
|
||||||
|
for (var i = 0; i < BarLength + message.Length + 1; i++)
|
||||||
|
Settings.Variables.outputStream.Write(" ");
|
||||||
|
Console.CursorLeft = 0;
|
||||||
|
Settings.Variables.outputStream.WriteLine(message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Update(float progress)
|
||||||
|
{
|
||||||
|
if (type == ProgressBarType.NO_END)
|
||||||
|
throw new Exception("This function is for progress bars with end");
|
||||||
|
|
||||||
|
UpdateNormal(progress);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void UpdateNoEnd(string message)
|
||||||
|
{
|
||||||
|
Console.CursorLeft = 0;
|
||||||
|
Settings.Variables.outputStream.Write("[");
|
||||||
|
for (var i = 1; i <= position; i++)
|
||||||
|
Settings.Variables.outputStream.Write(" ");
|
||||||
|
Settings.Variables.outputStream.Write("<==()==>");
|
||||||
|
position += positive ? 1 : -1;
|
||||||
|
for (var i = position; i <= BarLength - 1 - (positive ? 0 : 2); i++)
|
||||||
|
Settings.Variables.outputStream.Write(" ");
|
||||||
|
Settings.Variables.outputStream.Write("] " + message);
|
||||||
|
|
||||||
|
|
||||||
|
if (position == BarLength - 1 || position == 1)
|
||||||
|
positive = !positive;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void UpdateNoEnd()
|
||||||
|
{
|
||||||
|
Console.CursorLeft = 0;
|
||||||
|
Settings.Variables.outputStream.Write("[");
|
||||||
|
for (var i = 1; i <= position; i++)
|
||||||
|
Settings.Variables.outputStream.Write(" ");
|
||||||
|
Settings.Variables.outputStream.Write("<==()==>");
|
||||||
|
position += positive ? 1 : -1;
|
||||||
|
for (var i = position; i <= BarLength - 1 - (positive ? 0 : 2); i++)
|
||||||
|
Settings.Variables.outputStream.Write(" ");
|
||||||
|
Settings.Variables.outputStream.Write("]");
|
||||||
|
|
||||||
|
|
||||||
|
if (position == BarLength - 1 || position == 1)
|
||||||
|
positive = !positive;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void UpdateNormal(float progress)
|
||||||
|
{
|
||||||
|
Console.CursorLeft = 0;
|
||||||
|
Settings.Variables.outputStream.Write("[");
|
||||||
|
Console.CursorLeft = BarLength;
|
||||||
|
Settings.Variables.outputStream.Write("]");
|
||||||
|
Console.CursorLeft = 1;
|
||||||
|
var onechunk = 30.0f / Max;
|
||||||
|
|
||||||
|
var position = 1;
|
||||||
|
|
||||||
|
for (var i = 0; i < onechunk * progress; i++)
|
||||||
|
{
|
||||||
|
Console.BackgroundColor = NoColor ? ConsoleColor.Black : Color;
|
||||||
|
Console.CursorLeft = position++;
|
||||||
|
Settings.Variables.outputStream.Write("#");
|
||||||
|
}
|
||||||
|
|
||||||
|
for (var i = position; i < BarLength; i++)
|
||||||
|
{
|
||||||
|
Console.BackgroundColor = NoColor ? ConsoleColor.Black : ConsoleColor.DarkGray;
|
||||||
|
Console.CursorLeft = position++;
|
||||||
|
Settings.Variables.outputStream.Write(" ");
|
||||||
|
}
|
||||||
|
|
||||||
|
Console.CursorLeft = BarLength + 4;
|
||||||
|
Console.BackgroundColor = ConsoleColor.Black;
|
||||||
|
if (progress.CanAproximateTo(Max))
|
||||||
|
Settings.Variables.outputStream.Write(progress + " % ✓");
|
||||||
|
else
|
||||||
|
Settings.Variables.outputStream.Write(MathF.Round(progress, 2) + " % ");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,13 +1,14 @@
|
|||||||
using PluginManager.Interfaces;
|
namespace PluginManager.Others;
|
||||||
|
|
||||||
namespace PluginManager.Others;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A list of operating systems
|
/// A list of operating systems
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum OperatingSystem
|
public enum OperatingSystem
|
||||||
{
|
{
|
||||||
WINDOWS, LINUX, MAC_OS, UNKNOWN
|
WINDOWS,
|
||||||
|
LINUX,
|
||||||
|
MAC_OS,
|
||||||
|
UNKNOWN
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -15,22 +16,47 @@ public enum OperatingSystem
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public enum Error
|
public enum Error
|
||||||
{
|
{
|
||||||
UNKNOWN_ERROR, GUILD_NOT_FOUND, STREAM_NOT_FOUND, INVALID_USER, INVALID_CHANNEL, INVALID_PERMISSIONS
|
UNKNOWN_ERROR,
|
||||||
|
GUILD_NOT_FOUND,
|
||||||
|
STREAM_NOT_FOUND,
|
||||||
|
INVALID_USER,
|
||||||
|
INVALID_CHANNEL,
|
||||||
|
INVALID_PERMISSIONS
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The output log type
|
/// The output log type
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum OutputLogLevel { NONE, INFO, WARNING, ERROR, CRITICAL }
|
public enum OutputLogLevel
|
||||||
|
{
|
||||||
|
NONE,
|
||||||
|
INFO,
|
||||||
|
WARNING,
|
||||||
|
ERROR,
|
||||||
|
CRITICAL
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
public enum UnzipProgressType
|
||||||
/// Plugin Type
|
{
|
||||||
/// </summary>
|
PercentageFromNumberOfFiles,
|
||||||
public enum PluginType { Command, Event, Unknown }
|
PercentageFromTotalSize
|
||||||
|
}
|
||||||
|
|
||||||
public enum UnzipProgressType { PercentageFromNumberOfFiles, PercentageFromTotalSize }
|
public enum TableFormat
|
||||||
|
{
|
||||||
|
CENTER_EACH_COLUMN_BASED,
|
||||||
|
CENTER_OVERALL_LENGTH,
|
||||||
|
DEFAULT
|
||||||
|
}
|
||||||
|
|
||||||
public enum TableFormat { CENTER_EACH_COLUMN_BASED, CENTER_OVERALL_LENGTH, DEFAULT }
|
public enum SaveType
|
||||||
|
{
|
||||||
|
NORMAL,
|
||||||
|
BACKUP
|
||||||
|
}
|
||||||
|
|
||||||
public enum SaveType { NORMAL, BACKUP }
|
public enum ProgressBarType
|
||||||
public enum ProgressBarType { NORMAL, NO_END }
|
{
|
||||||
|
NORMAL,
|
||||||
|
NO_END
|
||||||
|
}
|
||||||
@@ -1,372 +1,300 @@
|
|||||||
using System.IO.Compression;
|
using System;
|
||||||
using System.IO;
|
|
||||||
using System;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.IO;
|
||||||
|
using System.IO.Compression;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
using Discord.WebSocket;
|
|
||||||
using PluginManager.Items;
|
|
||||||
using System.Threading;
|
|
||||||
using System.Text.Json;
|
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
using System.Text.Json;
|
||||||
|
using System.Threading;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace PluginManager.Others
|
using Discord.WebSocket;
|
||||||
|
|
||||||
|
using PluginManager.Items;
|
||||||
|
|
||||||
|
namespace PluginManager.Others;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A special class with functions
|
||||||
|
/// </summary>
|
||||||
|
public static class Functions
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A special class with functions
|
/// The location for the Resources folder
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static class Functions
|
public static readonly string dataFolder = @"./Data/Resources/";
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The location for all logs
|
||||||
|
/// </summary>
|
||||||
|
public static readonly string logFolder = @"./Data/Output/Logs/";
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The location for all errors
|
||||||
|
/// </summary>
|
||||||
|
public static readonly string errFolder = @"./Data/Output/Errors/";
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Archives folder
|
||||||
|
/// </summary>
|
||||||
|
public static readonly string pakFolder = @"./Data/PAKS/";
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Beta testing folder
|
||||||
|
/// </summary>
|
||||||
|
public static readonly string betaFolder = @"./Data/BetaTest/";
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Read data from a file that is inside an archive (ZIP format)
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="FileName">The file name that is inside the archive or its full path</param>
|
||||||
|
/// <param name="archFile">The archive location from the PAKs folder</param>
|
||||||
|
/// <returns>A string that represents the content of the file or null if the file does not exists or it has no content</returns>
|
||||||
|
public static async Task<string> ReadFromPakAsync(string FileName, string archFile)
|
||||||
{
|
{
|
||||||
/// <summary>
|
archFile = pakFolder + archFile;
|
||||||
/// The location for the Resources folder
|
if (!File.Exists(archFile))
|
||||||
/// </summary>
|
throw new Exception("Failed to load file !");
|
||||||
public static readonly string dataFolder = @"./Data/Resources/";
|
|
||||||
|
|
||||||
/// <summary>
|
try
|
||||||
/// The location for all logs
|
|
||||||
/// </summary>
|
|
||||||
public static readonly string logFolder = @"./Data/Output/Logs/";
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The location for all errors
|
|
||||||
/// </summary>
|
|
||||||
public static readonly string errFolder = @"./Data/Output/Errors/";
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Archives folder
|
|
||||||
/// </summary>
|
|
||||||
public static readonly string pakFolder = @"./Data/PAKS/";
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Beta testing folder
|
|
||||||
/// </summary>
|
|
||||||
public static readonly string betaFolder = @"./Data/BetaTest/";
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Read data from a file that is inside an archive (ZIP format)
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="FileName">The file name that is inside the archive or its full path</param>
|
|
||||||
/// <param name="archFile">The archive location from the PAKs folder</param>
|
|
||||||
/// <returns>A string that represents the content of the file or null if the file does not exists or it has no content</returns>
|
|
||||||
public static async Task<string> ReadFromPakAsync(string FileName, string archFile)
|
|
||||||
{
|
{
|
||||||
archFile = pakFolder + archFile;
|
string textValue = null;
|
||||||
if (!File.Exists(archFile))
|
using (var fs = new FileStream(archFile, FileMode.Open))
|
||||||
throw new Exception("Failed to load file !");
|
using (var zip = new ZipArchive(fs, ZipArchiveMode.Read))
|
||||||
|
|
||||||
try
|
|
||||||
{
|
{
|
||||||
string textValue = null;
|
foreach (var entry in zip.Entries)
|
||||||
using (var fs = new FileStream(archFile, FileMode.Open))
|
if (entry.Name == FileName || entry.FullName == FileName)
|
||||||
using (var zip = new ZipArchive(fs, ZipArchiveMode.Read))
|
using (var s = entry.Open())
|
||||||
foreach (var entry in zip.Entries)
|
using (var reader = new StreamReader(s))
|
||||||
{
|
|
||||||
if (entry.Name == FileName || entry.FullName == FileName)
|
|
||||||
{
|
{
|
||||||
using (Stream s = entry.Open())
|
textValue = await reader.ReadToEndAsync();
|
||||||
using (StreamReader reader = new StreamReader(s))
|
reader.Close();
|
||||||
{
|
s.Close();
|
||||||
textValue = await reader.ReadToEndAsync();
|
fs.Close();
|
||||||
reader.Close();
|
|
||||||
s.Close();
|
|
||||||
fs.Close();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
return textValue;
|
|
||||||
}
|
|
||||||
catch
|
|
||||||
{
|
|
||||||
await Task.Delay(100);
|
|
||||||
return await ReadFromPakAsync(FileName, archFile);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return textValue;
|
||||||
}
|
}
|
||||||
|
catch
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Write logs to file
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="LogMessage">The message to be wrote</param>
|
|
||||||
public static void WriteLogFile(string LogMessage)
|
|
||||||
{
|
{
|
||||||
string logsPath = logFolder + $"{DateTime.Today.ToShortDateString().Replace("/", "-").Replace("\\", "-")} Log.txt";
|
await Task.Delay(100);
|
||||||
Directory.CreateDirectory(logFolder);
|
return await ReadFromPakAsync(FileName, archFile);
|
||||||
File.AppendAllText(logsPath, LogMessage + " \n");
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Write error to file
|
/// <summary>
|
||||||
/// </summary>
|
/// Write logs to file
|
||||||
/// <param name="ErrMessage">The message to be wrote</param>
|
/// </summary>
|
||||||
public static void WriteErrFile(string ErrMessage)
|
/// <param name="LogMessage">The message to be wrote</param>
|
||||||
|
public static void WriteLogFile(string LogMessage)
|
||||||
|
{
|
||||||
|
var logsPath = logFolder + $"{DateTime.Today.ToShortDateString().Replace("/", "-").Replace("\\", "-")} Log.txt";
|
||||||
|
Directory.CreateDirectory(logFolder);
|
||||||
|
File.AppendAllText(logsPath, LogMessage + " \n");
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Write error to file
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="ErrMessage">The message to be wrote</param>
|
||||||
|
public static void WriteErrFile(string ErrMessage)
|
||||||
|
{
|
||||||
|
var errPath = errFolder +
|
||||||
|
$"{DateTime.Today.ToShortDateString().Replace("/", "-").Replace("\\", "-")} Error.txt";
|
||||||
|
Directory.CreateDirectory(errFolder);
|
||||||
|
File.AppendAllText(errPath, ErrMessage + " \n");
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void WriteErrFile(this Exception ex)
|
||||||
|
{
|
||||||
|
WriteErrFile(ex.ToString());
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Get the Operating system you are runnin on
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>An Operating system</returns>
|
||||||
|
public static OperatingSystem GetOperatingSystem()
|
||||||
|
{
|
||||||
|
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) return OperatingSystem.WINDOWS;
|
||||||
|
if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) return OperatingSystem.LINUX;
|
||||||
|
if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) return OperatingSystem.MAC_OS;
|
||||||
|
return OperatingSystem.UNKNOWN;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static List<string> GetArguments(SocketMessage message)
|
||||||
|
{
|
||||||
|
var command = new Command(message);
|
||||||
|
return command.Arguments;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Copy one Stream to another <see langword="async" />
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="stream">The base stream</param>
|
||||||
|
/// <param name="destination">The destination stream</param>
|
||||||
|
/// <param name="bufferSize">The buffer to read</param>
|
||||||
|
/// <param name="progress">The progress</param>
|
||||||
|
/// <param name="cancellationToken">The cancellation token</param>
|
||||||
|
/// <exception cref="ArgumentNullException">Triggered if any <see cref="Stream" /> is empty</exception>
|
||||||
|
/// <exception cref="ArgumentOutOfRangeException">Triggered if <paramref name="bufferSize" /> is less then or equal to 0</exception>
|
||||||
|
/// <exception cref="InvalidOperationException">Triggered if <paramref name="stream" /> is not readable</exception>
|
||||||
|
/// <exception cref="ArgumentException">Triggered in <paramref name="destination" /> is not writable</exception>
|
||||||
|
public static async Task CopyToOtherStreamAsync(this Stream stream, Stream destination, int bufferSize,
|
||||||
|
IProgress<long>? progress = null,
|
||||||
|
CancellationToken cancellationToken = default)
|
||||||
|
{
|
||||||
|
if (stream == null) throw new ArgumentNullException(nameof(stream));
|
||||||
|
if (destination == null) throw new ArgumentNullException(nameof(destination));
|
||||||
|
if (bufferSize <= 0) throw new ArgumentOutOfRangeException(nameof(bufferSize));
|
||||||
|
if (!stream.CanRead) throw new InvalidOperationException("The stream is not readable.");
|
||||||
|
if (!destination.CanWrite)
|
||||||
|
throw new ArgumentException("Destination stream is not writable", nameof(destination));
|
||||||
|
|
||||||
|
var buffer = new byte[bufferSize];
|
||||||
|
long totalBytesRead = 0;
|
||||||
|
int bytesRead;
|
||||||
|
while ((bytesRead = await stream.ReadAsync(buffer, 0, buffer.Length, cancellationToken).ConfigureAwait(false)) != 0)
|
||||||
{
|
{
|
||||||
string errPath = errFolder + $"{DateTime.Today.ToShortDateString().Replace("/", "-").Replace("\\", "-")} Error.txt";
|
await destination.WriteAsync(buffer, 0, bytesRead, cancellationToken).ConfigureAwait(false);
|
||||||
Directory.CreateDirectory(errFolder);
|
totalBytesRead += bytesRead;
|
||||||
File.AppendAllText(errPath, ErrMessage + " \n");
|
progress?.Report(totalBytesRead);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static void WriteErrFile(this Exception ex)
|
/// <summary>
|
||||||
|
/// Extract zip to location
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="zip">The zip location</param>
|
||||||
|
/// <param name="folder">The target location</param>
|
||||||
|
/// <param name="progress">The progress that is updated as a file is processed</param>
|
||||||
|
/// <param name="type">The type of progress</param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static async Task ExtractArchive(string zip, string folder, IProgress<float> progress,
|
||||||
|
UnzipProgressType type)
|
||||||
|
{
|
||||||
|
Directory.CreateDirectory(folder);
|
||||||
|
using (var archive = ZipFile.OpenRead(zip))
|
||||||
{
|
{
|
||||||
WriteErrFile(ex.ToString());
|
if (type == UnzipProgressType.PercentageFromNumberOfFiles)
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Merge one array of strings into one string
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="s">The array of strings</param>
|
|
||||||
/// <param name="indexToStart">The index from where the merge should start (included)</param>
|
|
||||||
/// <returns>A string built based on the array</returns>
|
|
||||||
public static string MergeStrings(this string[] s, int indexToStart)
|
|
||||||
{
|
|
||||||
string r = "";
|
|
||||||
int len = s.Length;
|
|
||||||
if (len <= indexToStart) return "";
|
|
||||||
for (int i = indexToStart; i < len - 1; ++i)
|
|
||||||
{
|
{
|
||||||
r += s[i] + " ";
|
var totalZIPFiles = archive.Entries.Count();
|
||||||
}
|
var currentZIPFile = 0;
|
||||||
|
foreach (var entry in archive.Entries)
|
||||||
r += s[len - 1];
|
|
||||||
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Get the Operating system you are runnin on
|
|
||||||
/// </summary>
|
|
||||||
/// <returns>An Operating system</returns>
|
|
||||||
public static OperatingSystem GetOperatingSystem()
|
|
||||||
{
|
|
||||||
if (System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(System.Runtime.InteropServices.OSPlatform.Windows)) return OperatingSystem.WINDOWS;
|
|
||||||
if (System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(System.Runtime.InteropServices.OSPlatform.Linux)) return OperatingSystem.LINUX;
|
|
||||||
if (System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(System.Runtime.InteropServices.OSPlatform.OSX)) return OperatingSystem.MAC_OS;
|
|
||||||
return OperatingSystem.UNKNOWN;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static List<string> GetArguments(SocketMessage message)
|
|
||||||
{
|
|
||||||
Command command = new Command(message);
|
|
||||||
return command.Arguments;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Copy one Stream to another <see langword="async"/>
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="stream">The base stream</param>
|
|
||||||
/// <param name="destination">The destination stream</param>
|
|
||||||
/// <param name="bufferSize">The buffer to read</param>
|
|
||||||
/// <param name="progress">The progress</param>
|
|
||||||
/// <param name="cancellationToken">The cancellation token</param>
|
|
||||||
/// <exception cref="ArgumentNullException">Triggered if any <see cref="Stream"/> is empty</exception>
|
|
||||||
/// <exception cref="ArgumentOutOfRangeException">Triggered if <paramref name="bufferSize"/> is less then or equal to 0</exception>
|
|
||||||
/// <exception cref="InvalidOperationException">Triggered if <paramref name="stream"/> is not readable</exception>
|
|
||||||
/// <exception cref="ArgumentException">Triggered in <paramref name="destination"/> is not writable</exception>
|
|
||||||
public static async Task CopyToOtherStreamAsync(this Stream stream, Stream destination, int bufferSize, IProgress<long>? progress = null, CancellationToken cancellationToken = default)
|
|
||||||
{
|
|
||||||
if (stream == null) throw new ArgumentNullException(nameof(stream));
|
|
||||||
if (destination == null) throw new ArgumentNullException(nameof(destination));
|
|
||||||
if (bufferSize <= 0) throw new ArgumentOutOfRangeException(nameof(bufferSize));
|
|
||||||
if (!stream.CanRead) throw new InvalidOperationException("The stream is not readable.");
|
|
||||||
if (!destination.CanWrite) throw new ArgumentException("Destination stream is not writable", nameof(destination));
|
|
||||||
|
|
||||||
byte[] buffer = new byte[bufferSize];
|
|
||||||
long totalBytesRead = 0;
|
|
||||||
int bytesRead;
|
|
||||||
while ((bytesRead = await stream.ReadAsync(buffer, 0, buffer.Length, cancellationToken).ConfigureAwait(false)) != 0)
|
|
||||||
{
|
|
||||||
await destination.WriteAsync(buffer, 0, bytesRead, cancellationToken).ConfigureAwait(false);
|
|
||||||
totalBytesRead += bytesRead;
|
|
||||||
progress?.Report(totalBytesRead);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Extract zip to location
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="zip">The zip location</param>
|
|
||||||
/// <param name="folder">The target location</param>
|
|
||||||
/// <param name="progress">The progress that is updated as a file is processed</param>
|
|
||||||
/// <param name="type">The type of progress</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static async Task ExtractArchive(string zip, string folder, IProgress<float> progress, UnzipProgressType type)
|
|
||||||
{
|
|
||||||
Directory.CreateDirectory(folder);
|
|
||||||
using (ZipArchive archive = ZipFile.OpenRead(zip))
|
|
||||||
{
|
|
||||||
if (type == UnzipProgressType.PercentageFromNumberOfFiles)
|
|
||||||
{
|
{
|
||||||
int totalZIPFiles = archive.Entries.Count();
|
if (entry.FullName.EndsWith("/")) // it is a folder
|
||||||
int currentZIPFile = 0;
|
Directory.CreateDirectory(Path.Combine(folder, entry.FullName));
|
||||||
foreach (ZipArchiveEntry entry in archive.Entries)
|
|
||||||
{
|
|
||||||
if (entry.FullName.EndsWith("/")) // it is a folder
|
|
||||||
Directory.CreateDirectory(Path.Combine(folder, entry.FullName));
|
|
||||||
|
|
||||||
else
|
|
||||||
try
|
|
||||||
{
|
|
||||||
entry.ExtractToFile(Path.Combine(folder, entry.FullName), true);
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
Console.WriteLine($"Failed to extract {entry.Name}. Exception: {ex.Message}");
|
|
||||||
}
|
|
||||||
|
|
||||||
currentZIPFile++;
|
|
||||||
await Task.Delay(10);
|
|
||||||
if (progress != null)
|
|
||||||
progress.Report((float)currentZIPFile / totalZIPFiles * 100);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (type == UnzipProgressType.PercentageFromTotalSize)
|
|
||||||
{
|
|
||||||
ulong zipSize = 0;
|
|
||||||
|
|
||||||
foreach (ZipArchiveEntry entry in archive.Entries)
|
|
||||||
zipSize += (ulong)entry.CompressedLength;
|
|
||||||
|
|
||||||
ulong currentSize = 0;
|
|
||||||
foreach (ZipArchiveEntry entry in archive.Entries)
|
|
||||||
{
|
|
||||||
if (entry.FullName.EndsWith("/"))
|
|
||||||
{
|
|
||||||
Directory.CreateDirectory(Path.Combine(folder, entry.FullName));
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
else
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
entry.ExtractToFile(Path.Combine(folder, entry.FullName), true);
|
entry.ExtractToFile(Path.Combine(folder, entry.FullName), true);
|
||||||
currentSize += (ulong)entry.CompressedLength;
|
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
Console.WriteLine($"Failed to extract {entry.Name}. Exception: {ex.Message}");
|
Settings.Variables.outputStream.WriteLine($"Failed to extract {entry.Name}. Exception: {ex.Message}");
|
||||||
}
|
}
|
||||||
|
|
||||||
await Task.Delay(10);
|
currentZIPFile++;
|
||||||
if (progress != null)
|
await Task.Delay(10);
|
||||||
progress.Report((float)currentSize / zipSize * 100);
|
if (progress != null)
|
||||||
|
progress.Report((float)currentZIPFile / totalZIPFiles * 100);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (type == UnzipProgressType.PercentageFromTotalSize)
|
||||||
|
{
|
||||||
|
ulong zipSize = 0;
|
||||||
|
|
||||||
|
foreach (var entry in archive.Entries)
|
||||||
|
zipSize += (ulong)entry.CompressedLength;
|
||||||
|
|
||||||
|
ulong currentSize = 0;
|
||||||
|
foreach (var entry in archive.Entries)
|
||||||
|
{
|
||||||
|
if (entry.FullName.EndsWith("/"))
|
||||||
|
{
|
||||||
|
Directory.CreateDirectory(Path.Combine(folder, entry.FullName));
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
entry.ExtractToFile(Path.Combine(folder, entry.FullName), true);
|
||||||
|
currentSize += (ulong)entry.CompressedLength;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Settings.Variables.outputStream.WriteLine($"Failed to extract {entry.Name}. Exception: {ex.Message}");
|
||||||
|
}
|
||||||
|
|
||||||
|
await Task.Delay(10);
|
||||||
|
if (progress != null)
|
||||||
|
progress.Report((float)currentSize / zipSize * 100);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Save to JSON file
|
||||||
|
/// </summary>
|
||||||
|
/// <typeparam name="T">The class type</typeparam>
|
||||||
|
/// <param name="file">The file path</param>
|
||||||
|
/// <param name="Data">The values</param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static async Task SaveToJsonFile<T>(string file, T Data)
|
||||||
|
{
|
||||||
|
var str = new MemoryStream();
|
||||||
|
await JsonSerializer.SerializeAsync(str, Data, typeof(T), new JsonSerializerOptions { WriteIndented = true });
|
||||||
|
await File.WriteAllBytesAsync(file, str.ToArray());
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Convert Bytes to highest measurement unit possible
|
/// Convert json text or file to some kind of data
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="bytes">The amount of bytes</param>
|
/// <typeparam name="T">The data type</typeparam>
|
||||||
/// <returns></returns>
|
/// <param name="input">The file or json text</param>
|
||||||
public static (double, string) ConvertBytes(long bytes)
|
/// <returns></returns>
|
||||||
|
public static async Task<T> ConvertFromJson<T>(string input)
|
||||||
|
{
|
||||||
|
Stream text;
|
||||||
|
if (File.Exists(input))
|
||||||
|
text = new MemoryStream(await File.ReadAllBytesAsync(input));
|
||||||
|
else
|
||||||
|
text = new MemoryStream(Encoding.ASCII.GetBytes(input));
|
||||||
|
text.Position = 0;
|
||||||
|
var obj = await JsonSerializer.DeserializeAsync<T>(text);
|
||||||
|
text.Close();
|
||||||
|
return (obj ?? default)!;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static bool TryReadValueFromJson(string input, string codeName, out JsonElement element)
|
||||||
|
{
|
||||||
|
Stream text;
|
||||||
|
if (File.Exists(input))
|
||||||
|
text = File.OpenRead(input);
|
||||||
|
|
||||||
|
else
|
||||||
|
text = new MemoryStream(Encoding.ASCII.GetBytes(input));
|
||||||
|
|
||||||
|
var jsonObject = JsonDocument.Parse(text);
|
||||||
|
|
||||||
|
var data = jsonObject.RootElement.TryGetProperty(codeName, out element);
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static string CreateMD5(string input)
|
||||||
|
{
|
||||||
|
using (var md5 = MD5.Create())
|
||||||
{
|
{
|
||||||
List<string> units = new List<string>()
|
var inputBytes = Encoding.ASCII.GetBytes(input);
|
||||||
{
|
var hashBytes = md5.ComputeHash(inputBytes);
|
||||||
"B",
|
return Convert.ToHexString(hashBytes);
|
||||||
"KB",
|
|
||||||
"MB",
|
|
||||||
"GB",
|
|
||||||
"TB"
|
|
||||||
};
|
|
||||||
int i = 0;
|
|
||||||
while (bytes >= 1024)
|
|
||||||
{
|
|
||||||
i++;
|
|
||||||
bytes /= 1024;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (bytes, units[i]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Save to JSON file
|
|
||||||
/// </summary>
|
|
||||||
/// <typeparam name="T">The class type</typeparam>
|
|
||||||
/// <param name="file">The file path</param>
|
|
||||||
/// <param name="Data">The values</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static async Task SaveToJsonFile<T>(string file, T Data)
|
|
||||||
{
|
|
||||||
MemoryStream str = new MemoryStream();
|
|
||||||
await JsonSerializer.SerializeAsync(str, Data, typeof(T), new JsonSerializerOptions { WriteIndented = true });
|
|
||||||
await File.WriteAllBytesAsync(file, str.ToArray());
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Convert json text or file to some kind of data
|
|
||||||
/// </summary>
|
|
||||||
/// <typeparam name="T">The data type</typeparam>
|
|
||||||
/// <param name="input">The file or json text</param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static async Task<T> ConvertFromJson<T>(string input)
|
|
||||||
{
|
|
||||||
Stream text;
|
|
||||||
if (File.Exists(input))
|
|
||||||
text = new MemoryStream(await File.ReadAllBytesAsync(input));
|
|
||||||
else
|
|
||||||
text = new MemoryStream(Encoding.ASCII.GetBytes(input));
|
|
||||||
text.Position = 0;
|
|
||||||
var obj = await JsonSerializer.DeserializeAsync<T>(text);
|
|
||||||
text.Close();
|
|
||||||
return (obj ?? default)!;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Check if all words from <paramref name="str"/> are in <paramref name="baseString"/><br/>
|
|
||||||
/// This function returns true if<br/>
|
|
||||||
/// 1. The <paramref name="str"/> is part of <paramref name="baseString"/><br/>
|
|
||||||
/// 2. The words (split by a space) of <paramref name="str"/> are located (separately) in <paramref name="baseString"/> <br/>
|
|
||||||
/// <example>
|
|
||||||
/// The following example will return <see langword="TRUE"/><br/>
|
|
||||||
/// <c>STRContains("Hello World !", "I type word Hello and then i typed word World !")</c><br/>
|
|
||||||
/// The following example will return <see langword="TRUE"/><br/>
|
|
||||||
/// <c>STRContains("Hello World !", "I typed Hello World !" </c><br/>
|
|
||||||
/// The following example will return <see langword="TRUE"/><br/>
|
|
||||||
/// <c>STRContains("Hello World", "I type World then Hello")</c><br/>
|
|
||||||
/// The following example will return <see langword="FALSE"/><br/>
|
|
||||||
/// <c>STRContains("Hello World !", "I typed Hello World")</c><br/>
|
|
||||||
/// </example>
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="str">The string you are checking</param>
|
|
||||||
/// <param name="baseString">The main string that should contain <paramref name="str"/></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static bool STRContains(this string str, string baseString)
|
|
||||||
{
|
|
||||||
if (baseString.Contains(str)) return true;
|
|
||||||
string[] array = str.Split(' ');
|
|
||||||
foreach (var s in array)
|
|
||||||
if (!baseString.Contains(s))
|
|
||||||
return false;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static bool TryReadValueFromJson(string input, string codeName, out JsonElement element)
|
|
||||||
{
|
|
||||||
Stream text;
|
|
||||||
if (File.Exists(input))
|
|
||||||
text = File.OpenRead(input);
|
|
||||||
|
|
||||||
else
|
|
||||||
text = new MemoryStream(Encoding.ASCII.GetBytes(input));
|
|
||||||
|
|
||||||
var jsonObject = JsonDocument.Parse(text);
|
|
||||||
|
|
||||||
var data = jsonObject.RootElement.TryGetProperty(codeName, out element);
|
|
||||||
return data;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static string CreateMD5(string input)
|
|
||||||
{
|
|
||||||
using (MD5 md5 = MD5.Create())
|
|
||||||
{
|
|
||||||
byte[] inputBytes = Encoding.ASCII.GetBytes(input);
|
|
||||||
byte[] hashBytes = md5.ComputeHash(inputBytes);
|
|
||||||
return Convert.ToHexString(hashBytes);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net6.0</TargetFramework>
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
@@ -17,6 +17,8 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Discord.Net" Version="3.7.2" />
|
<PackageReference Include="Discord.Net" Version="3.7.2" />
|
||||||
|
<PackageReference Include="System.Data.SQLite" Version="1.0.116" />
|
||||||
|
<PackageReference Include="Terminal.Gui" Version="1.8.2" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
21
PluginManager/Variables.cs
Normal file
21
PluginManager/Variables.cs
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
using System.IO;
|
||||||
|
|
||||||
|
using PluginManager.Database;
|
||||||
|
|
||||||
|
namespace PluginManager
|
||||||
|
{
|
||||||
|
public class Settings
|
||||||
|
{
|
||||||
|
|
||||||
|
public static class Variables
|
||||||
|
{
|
||||||
|
public static string WebsiteURL = "https://wizzy69.github.io/SethDiscordBot";
|
||||||
|
public static string UpdaterURL = "https://github.com/Wizzy69/installer/releases/download/release-1-discordbot/Updater.zip";
|
||||||
|
|
||||||
|
public static TextWriter outputStream;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static SqlDatabase sqlDatabase;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -7,6 +7,12 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DiscordBot", "DiscordBot\Di
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PluginManager", "PluginManager\PluginManager.csproj", "{EDD4D9B3-98DD-4367-A09F-D1C5ACB61132}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PluginManager", "PluginManager\PluginManager.csproj", "{EDD4D9B3-98DD-4367-A09F-D1C5ACB61132}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MusicLibrary", "..\DiscordBotItems\Plugins\MusicLibrary\MusicLibrary.csproj", "{878DFE01-4596-4EBC-9651-0679598CE794}"
|
||||||
|
EndProject
|
||||||
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SlashCommands", "..\DiscordBotItems\Plugins\SlashCommands\SlashCommands.csproj", "{C2D73BE8-997B-4A4A-8EA5-989BE33EE1DD}"
|
||||||
|
EndProject
|
||||||
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LevelingSystem", "..\DiscordBotItems\Plugins\LevelingSystem\LevelingSystem.csproj", "{0138F343-BBB9-4D5F-B499-D9C2978BE9AA}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
@@ -21,6 +27,18 @@ Global
|
|||||||
{EDD4D9B3-98DD-4367-A09F-D1C5ACB61132}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{EDD4D9B3-98DD-4367-A09F-D1C5ACB61132}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{EDD4D9B3-98DD-4367-A09F-D1C5ACB61132}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{EDD4D9B3-98DD-4367-A09F-D1C5ACB61132}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{EDD4D9B3-98DD-4367-A09F-D1C5ACB61132}.Release|Any CPU.Build.0 = Release|Any CPU
|
{EDD4D9B3-98DD-4367-A09F-D1C5ACB61132}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{878DFE01-4596-4EBC-9651-0679598CE794}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{878DFE01-4596-4EBC-9651-0679598CE794}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{878DFE01-4596-4EBC-9651-0679598CE794}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{878DFE01-4596-4EBC-9651-0679598CE794}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{C2D73BE8-997B-4A4A-8EA5-989BE33EE1DD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{C2D73BE8-997B-4A4A-8EA5-989BE33EE1DD}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{C2D73BE8-997B-4A4A-8EA5-989BE33EE1DD}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{C2D73BE8-997B-4A4A-8EA5-989BE33EE1DD}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{0138F343-BBB9-4D5F-B499-D9C2978BE9AA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{0138F343-BBB9-4D5F-B499-D9C2978BE9AA}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{0138F343-BBB9-4D5F-B499-D9C2978BE9AA}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{0138F343-BBB9-4D5F-B499-D9C2978BE9AA}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
|||||||
Reference in New Issue
Block a user