2017-06-12 17:47:31 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2023-04-04 19:24:13 -04:00
|
|
|
|
using System.IO;
|
2018-08-23 17:16:30 -04:00
|
|
|
|
using System.Linq;
|
2023-04-04 19:24:13 -04:00
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Text.RegularExpressions;
|
2020-10-24 16:02:38 -04:00
|
|
|
|
using IW4MAdmin.Application.API.Master;
|
2020-11-11 18:31:26 -05:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
2023-04-04 19:24:13 -04:00
|
|
|
|
using SharedLibraryCore;
|
2020-10-24 16:02:38 -04:00
|
|
|
|
using SharedLibraryCore.Configuration;
|
2023-04-04 19:24:13 -04:00
|
|
|
|
using SharedLibraryCore.Interfaces;
|
2020-11-11 18:31:26 -05:00
|
|
|
|
using ILogger = Microsoft.Extensions.Logging.ILogger;
|
2017-06-12 17:47:31 -04:00
|
|
|
|
|
2023-04-04 19:24:13 -04:00
|
|
|
|
namespace IW4MAdmin.Application.Plugin
|
2017-06-12 17:47:31 -04:00
|
|
|
|
{
|
2020-02-11 17:44:06 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// implementation of IPluginImporter
|
|
|
|
|
/// discovers plugins and script plugins
|
|
|
|
|
/// </summary>
|
2020-01-31 21:15:07 -05:00
|
|
|
|
public class PluginImporter : IPluginImporter
|
2017-06-12 17:47:31 -04:00
|
|
|
|
{
|
2020-10-24 16:02:38 -04:00
|
|
|
|
private IEnumerable<PluginSubscriptionContent> _pluginSubscription;
|
2023-05-27 13:15:22 -04:00
|
|
|
|
private const string PluginDir = "Plugins";
|
2023-04-04 19:24:13 -04:00
|
|
|
|
private const string PluginV2Match = "^ *((?:var|const|let) +init)|function init";
|
2020-01-31 21:15:07 -05:00
|
|
|
|
private readonly ILogger _logger;
|
2020-10-24 16:02:38 -04:00
|
|
|
|
private readonly IRemoteAssemblyHandler _remoteAssemblyHandler;
|
|
|
|
|
private readonly IMasterApi _masterApi;
|
|
|
|
|
private readonly ApplicationConfiguration _appConfig;
|
2020-01-31 21:15:07 -05:00
|
|
|
|
|
2023-05-27 13:15:22 -04:00
|
|
|
|
private static readonly Type[] FilterTypes =
|
|
|
|
|
{
|
|
|
|
|
typeof(IPlugin),
|
|
|
|
|
typeof(IPluginV2),
|
|
|
|
|
typeof(Command),
|
|
|
|
|
typeof(IBaseConfiguration)
|
|
|
|
|
};
|
|
|
|
|
|
2023-04-04 19:24:13 -04:00
|
|
|
|
public PluginImporter(ILogger<PluginImporter> logger, ApplicationConfiguration appConfig, IMasterApi masterApi,
|
|
|
|
|
IRemoteAssemblyHandler remoteAssemblyHandler)
|
2020-01-31 21:15:07 -05:00
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
2020-10-24 16:02:38 -04:00
|
|
|
|
_masterApi = masterApi;
|
|
|
|
|
_remoteAssemblyHandler = remoteAssemblyHandler;
|
|
|
|
|
_appConfig = appConfig;
|
2020-01-31 21:15:07 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2020-02-11 17:44:06 -05:00
|
|
|
|
/// discovers all the script plugins in the plugins dir
|
2020-01-31 21:15:07 -05:00
|
|
|
|
/// </summary>
|
2020-02-11 17:44:06 -05:00
|
|
|
|
/// <returns></returns>
|
2023-04-04 19:24:13 -04:00
|
|
|
|
public IEnumerable<(Type, string)> DiscoverScriptPlugins()
|
2017-06-12 17:47:31 -04:00
|
|
|
|
{
|
2023-04-04 19:24:13 -04:00
|
|
|
|
var pluginDir = $"{Utilities.OperatingDirectory}{PluginDir}{Path.DirectorySeparatorChar}";
|
2018-08-28 17:32:59 -04:00
|
|
|
|
|
2022-02-07 19:43:36 -05:00
|
|
|
|
if (!Directory.Exists(pluginDir))
|
2018-08-28 17:32:59 -04:00
|
|
|
|
{
|
2023-04-04 19:24:13 -04:00
|
|
|
|
return Enumerable.Empty<(Type, string)>();
|
2022-02-07 19:43:36 -05:00
|
|
|
|
}
|
2018-08-28 17:32:59 -04:00
|
|
|
|
|
2022-02-07 19:43:36 -05:00
|
|
|
|
var scriptPluginFiles =
|
|
|
|
|
Directory.GetFiles(pluginDir, "*.js").AsEnumerable().Union(GetRemoteScripts()).ToList();
|
2017-06-12 17:47:31 -04:00
|
|
|
|
|
2023-04-04 19:24:13 -04:00
|
|
|
|
var bothVersionPlugins = scriptPluginFiles.Select(fileName =>
|
2022-02-07 19:43:36 -05:00
|
|
|
|
{
|
2023-04-04 19:24:13 -04:00
|
|
|
|
_logger.LogDebug("Discovered script plugin {FileName}", fileName);
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var fileContents = File.ReadAllLines(fileName);
|
|
|
|
|
var isValidV2 = fileContents.Any(line => Regex.IsMatch(line, PluginV2Match));
|
|
|
|
|
return isValidV2 ? (typeof(IPluginV2), fileName) : (typeof(IPlugin), fileName);
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
return (typeof(IPlugin), fileName);
|
|
|
|
|
}
|
2022-02-07 19:43:36 -05:00
|
|
|
|
}).ToList();
|
2023-04-04 19:24:13 -04:00
|
|
|
|
|
|
|
|
|
return bothVersionPlugins;
|
2020-02-11 17:44:06 -05:00
|
|
|
|
}
|
2017-06-12 17:47:31 -04:00
|
|
|
|
|
2020-02-11 17:44:06 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// discovers all the C# assembly plugins and commands
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
2021-03-22 12:09:25 -04:00
|
|
|
|
public (IEnumerable<Type>, IEnumerable<Type>, IEnumerable<Type>) DiscoverAssemblyPluginImplementations()
|
2020-02-11 17:44:06 -05:00
|
|
|
|
{
|
2023-04-04 19:24:13 -04:00
|
|
|
|
var pluginDir = $"{Utilities.OperatingDirectory}{PluginDir}{Path.DirectorySeparatorChar}";
|
2023-05-27 13:15:22 -04:00
|
|
|
|
var pluginTypes = new List<Type>();
|
|
|
|
|
var commandTypes = new List<Type>();
|
|
|
|
|
var configurationTypes = new List<Type>();
|
2018-08-26 20:20:47 -04:00
|
|
|
|
|
2023-05-27 13:15:22 -04:00
|
|
|
|
if (!Directory.Exists(pluginDir))
|
2017-06-12 17:47:31 -04:00
|
|
|
|
{
|
2023-05-27 13:15:22 -04:00
|
|
|
|
return (pluginTypes, commandTypes, configurationTypes);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var dllFileNames = Directory.GetFiles(pluginDir, "*.dll");
|
|
|
|
|
_logger.LogDebug("Discovered {Count} potential plugin assemblies", dllFileNames.Length);
|
2017-06-12 17:47:31 -04:00
|
|
|
|
|
2023-05-27 13:15:22 -04:00
|
|
|
|
if (!dllFileNames.Any())
|
|
|
|
|
{
|
|
|
|
|
return (pluginTypes, commandTypes, configurationTypes);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// we only want to load the most recent assembly in case of duplicates
|
|
|
|
|
var assemblies = dllFileNames.Select(Assembly.LoadFrom)
|
|
|
|
|
.Union(GetRemoteAssemblies())
|
|
|
|
|
.GroupBy(assembly => assembly.FullName).Select(assembly =>
|
|
|
|
|
assembly.OrderByDescending(asm => asm.GetName().Version).First());
|
|
|
|
|
|
|
|
|
|
var eligibleAssemblyTypes = assemblies
|
|
|
|
|
.SelectMany(asm =>
|
2017-06-12 17:47:31 -04:00
|
|
|
|
{
|
2023-05-27 13:15:22 -04:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
return asm.GetTypes();
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
return Enumerable.Empty<Type>();
|
|
|
|
|
}
|
|
|
|
|
}).Where(type =>
|
|
|
|
|
FilterTypes.Any(filterType => type.GetInterface(filterType.Name, false) != null) ||
|
|
|
|
|
(type.IsClass && FilterTypes.Contains(type.BaseType)));
|
|
|
|
|
|
|
|
|
|
foreach (var assemblyType in eligibleAssemblyTypes)
|
|
|
|
|
{
|
|
|
|
|
var isPlugin =
|
|
|
|
|
(assemblyType.GetInterface(nameof(IPlugin), false) ??
|
|
|
|
|
assemblyType.GetInterface(nameof(IPluginV2), false)) != null &&
|
|
|
|
|
(!assemblyType.Namespace?.StartsWith(nameof(SharedLibraryCore)) ?? false);
|
|
|
|
|
|
|
|
|
|
if (isPlugin)
|
|
|
|
|
{
|
|
|
|
|
pluginTypes.Add(assemblyType);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var isCommand = assemblyType.IsClass && assemblyType.BaseType == typeof(Command) &&
|
|
|
|
|
(!assemblyType.Namespace?.StartsWith(nameof(SharedLibraryCore)) ?? false);
|
|
|
|
|
|
|
|
|
|
if (isCommand)
|
|
|
|
|
{
|
|
|
|
|
commandTypes.Add(assemblyType);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var isConfiguration = assemblyType.IsClass &&
|
|
|
|
|
assemblyType.GetInterface(nameof(IBaseConfiguration), false) != null &&
|
|
|
|
|
(!assemblyType.Namespace?.StartsWith(nameof(SharedLibraryCore)) ?? false);
|
|
|
|
|
|
|
|
|
|
if (isConfiguration)
|
|
|
|
|
{
|
|
|
|
|
configurationTypes.Add(assemblyType);
|
2017-06-12 17:47:31 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-31 21:15:07 -05:00
|
|
|
|
|
2023-05-27 13:15:22 -04:00
|
|
|
|
_logger.LogDebug("Discovered {Count} plugin implementations", pluginTypes.Count);
|
2023-05-31 12:28:51 -04:00
|
|
|
|
_logger.LogDebug("Discovered {Count} plugin command implementations", commandTypes.Count);
|
|
|
|
|
_logger.LogDebug("Discovered {Count} plugin configuration implementations", configurationTypes.Count);
|
2023-05-27 13:15:22 -04:00
|
|
|
|
|
2021-03-22 12:09:25 -04:00
|
|
|
|
return (pluginTypes, commandTypes, configurationTypes);
|
2017-06-12 17:47:31 -04:00
|
|
|
|
}
|
2020-10-24 16:02:38 -04:00
|
|
|
|
|
|
|
|
|
private IEnumerable<Assembly> GetRemoteAssemblies()
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2023-05-27 13:15:22 -04:00
|
|
|
|
_pluginSubscription ??= _masterApi
|
|
|
|
|
.GetPluginSubscription(Guid.Parse(_appConfig.Id), _appConfig.SubscriptionId).Result;
|
2020-10-24 16:02:38 -04:00
|
|
|
|
|
2023-05-27 13:15:22 -04:00
|
|
|
|
return _remoteAssemblyHandler.DecryptAssemblies(_pluginSubscription
|
|
|
|
|
.Where(sub => sub.Type == PluginType.Binary).Select(sub => sub.Content).ToArray());
|
2020-10-24 16:02:38 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2020-11-11 18:31:26 -05:00
|
|
|
|
_logger.LogWarning(ex, "Could not load remote assemblies");
|
2020-10-24 16:02:38 -04:00
|
|
|
|
return Enumerable.Empty<Assembly>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private IEnumerable<string> GetRemoteScripts()
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2023-05-27 13:15:22 -04:00
|
|
|
|
_pluginSubscription ??= _masterApi
|
|
|
|
|
.GetPluginSubscription(Guid.Parse(_appConfig.Id), _appConfig.SubscriptionId).Result;
|
2020-10-24 16:02:38 -04:00
|
|
|
|
|
2023-05-27 13:15:22 -04:00
|
|
|
|
return _remoteAssemblyHandler.DecryptScripts(_pluginSubscription
|
|
|
|
|
.Where(sub => sub.Type == PluginType.Script).Select(sub => sub.Content).ToArray());
|
2020-10-24 16:02:38 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2020-11-11 18:31:26 -05:00
|
|
|
|
_logger.LogWarning(ex,"Could not load remote scripts");
|
2020-10-24 16:02:38 -04:00
|
|
|
|
return Enumerable.Empty<string>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum PluginType
|
|
|
|
|
{
|
|
|
|
|
Binary,
|
|
|
|
|
Script
|
2017-06-12 17:47:31 -04:00
|
|
|
|
}
|
|
|
|
|
}
|