BotSharp/src/Infrastructure/BotSharp.Core/Plugins/PluginLoader.cs

193 lines
6.4 KiB
C#
Raw Normal View History

2023-10-11 04:11:06 +00:00
using BotSharp.Abstraction.Plugins.Models;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.Configuration;
using System.Drawing;
using System.IO;
using System.Reflection;
using System.Xml;
2024-01-12 22:20:22 +00:00
using BotSharp.Abstraction.Repositories;
2023-10-11 04:11:06 +00:00
namespace BotSharp.Core.Plugins;
public class PluginLoader
{
private readonly IServiceCollection _services;
private readonly IConfiguration _config;
private readonly PluginSettings _settings;
private static List<IBotSharpPlugin> _modules = new List<IBotSharpPlugin>();
private static List<PluginDef> _plugins = new List<PluginDef>();
private static string _executingDir;
public PluginLoader(IServiceCollection services,
IConfiguration config,
PluginSettings settings)
{
_services = services;
_config = config;
_settings = settings;
}
public void Load(Action<Assembly> loaded)
{
_executingDir = Directory.GetParent(Assembly.GetEntryAssembly().Location).FullName;
_settings.Assemblies.ToList().ForEach(assemblyName =>
{
var assemblyPath = Path.Combine(_executingDir, assemblyName + ".dll");
if (File.Exists(assemblyPath))
{
var assembly = Assembly.Load(assemblyName);
var modules = assembly.GetTypes()
.Where(x => x.GetInterface(nameof(IBotSharpPlugin)) != null)
.Select(x => Activator.CreateInstance(x) as IBotSharpPlugin)
.ToList();
foreach (var module in modules)
{
module.RegisterDI(_services, _config);
2023-10-12 11:36:36 +00:00
// string classSummary = GetSummaryComment(module.GetType());
var name = string.IsNullOrEmpty(module.Name) ? module.GetType().Name : module.Name;
2023-10-11 04:11:06 +00:00
_modules.Add(module);
_plugins.Add(new PluginDef
{
2024-01-12 22:20:22 +00:00
Id = module.Id,
2023-10-12 11:36:36 +00:00
Name = name,
Module = module,
2023-10-12 11:36:36 +00:00
Description = module.Description,
2023-12-26 03:16:41 +00:00
Assembly = assemblyName,
2024-01-06 22:24:22 +00:00
IconUrl = module.IconUrl,
2024-01-15 21:35:01 +00:00
AgentIds = module.AgentIds
2023-10-11 04:11:06 +00:00
});
Console.Write($"Loaded plugin ");
2023-10-12 11:36:36 +00:00
Console.Write(name, Color.Green);
2023-10-11 04:11:06 +00:00
Console.WriteLine($" from {assemblyName}.");
2023-10-12 11:36:36 +00:00
if (!string.IsNullOrEmpty(module.Description))
2023-10-11 04:11:06 +00:00
{
2023-10-12 11:36:36 +00:00
Console.WriteLine(module.Description);
2023-10-11 04:11:06 +00:00
}
}
loaded(assembly);
}
else
{
Console.WriteLine($"Can't find assemble {assemblyPath}.");
}
});
}
2024-01-12 22:20:22 +00:00
public List<PluginDef> GetPlugins(IServiceProvider services)
2023-10-11 04:11:06 +00:00
{
2024-01-12 22:20:22 +00:00
// Apply user configurations
var db = services.GetRequiredService<IBotSharpRepository>();
var config = db.GetPluginConfig();
foreach (var plugin in _plugins)
{
2024-01-15 21:35:01 +00:00
plugin.Enabled = plugin.IsCore || config.EnabledPlugins.Contains(plugin.Id);
2024-01-12 22:20:22 +00:00
}
2023-10-11 04:11:06 +00:00
return _plugins;
}
2024-01-22 23:26:48 +00:00
public PagedItems<PluginDef> GetPagedPlugins(IServiceProvider services, PluginFilter filter)
{
var plugins = GetPlugins(services);
var pager = filter?.Pager ?? new Pagination();
return new PagedItems<PluginDef>
{
Items = plugins.Skip(pager.Offset).Take(pager.Size),
Count = plugins.Count()
};
}
2024-01-12 22:20:22 +00:00
public PluginDef UpdatePluginStatus(IServiceProvider services, string id, bool enable)
{
var plugin = _plugins.First(x => x.Id == id);
plugin.Enabled = enable;
// save to config
var db = services.GetRequiredService<IBotSharpRepository>();
var config = db.GetPluginConfig();
if (enable)
{
if (!config.EnabledPlugins.Exists(x => x == id))
{
config.EnabledPlugins.Add(id);
db.SavePluginConfig(config);
}
2024-01-13 00:31:25 +00:00
// enable agents
var agentService = services.GetRequiredService<IAgentService>();
foreach (var agentId in plugin.AgentIds)
{
var agent = agentService.LoadAgent(agentId).Result;
agent.Disabled = false;
agentService.UpdateAgent(agent, AgentField.Disabled);
}
2024-01-12 22:20:22 +00:00
}
else
{
if (config.EnabledPlugins.Exists(x => x == id))
{
config.EnabledPlugins.Remove(id);
db.SavePluginConfig(config);
}
2024-01-13 00:31:25 +00:00
// disable agents
var agentService = services.GetRequiredService<IAgentService>();
foreach (var agentId in plugin.AgentIds)
{
var agent = agentService.LoadAgent(agentId).Result;
agent.Disabled = true;
agentService.UpdateAgent(agent, AgentField.Disabled);
}
2024-01-12 22:20:22 +00:00
}
return plugin;
}
2023-10-11 04:11:06 +00:00
public string GetSummaryComment(Type member)
{
string summary = string.Empty;
XmlDocument xmlDoc = new XmlDocument();
// Load the XML documentation file
var xmlFile = Path.Combine(_executingDir, $"{member.Module.Assembly.FullName.Split(',')[0]}.xml");
if (!File.Exists(xmlFile))
{
return "";
}
xmlDoc.Load(xmlFile); // Replace with your actual XML documentation file name
// Construct the XPath query to find the summary comment
string memberName = $"T:{member.FullName}";
string xpath = $"/doc/members/member[@name='{memberName}']/summary";
// Find the summary comment using the XPath query
XmlNode summaryNode = xmlDoc.SelectSingleNode(xpath);
if (summaryNode != null)
{
summary = summaryNode.InnerXml.Trim();
}
return summary;
}
public void Configure(IApplicationBuilder app)
{
if (_modules.Count == 0)
{
Console.WriteLine($"No plugin loaded. Please check whether the Load() method is called.", Color.Yellow);
}
_modules.ForEach(module =>
{
if (module.GetType().GetInterface(nameof(IBotSharpAppPlugin)) != null)
{
(module as IBotSharpAppPlugin).Configure(app);
}
});
}
}