using System; using System.IO; using System.Collections.Generic; using System.Reflection; using SharedLibraryCore.Interfaces; using System.Linq; using SharedLibraryCore; using IW4MAdmin.Application.API.Master; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using SharedLibraryCore.Configuration; using ILogger = Microsoft.Extensions.Logging.ILogger; namespace IW4MAdmin.Application.Misc { /// /// implementation of IPluginImporter /// discovers plugins and script plugins /// public class PluginImporter : IPluginImporter { private IEnumerable _pluginSubscription; private static readonly string PLUGIN_DIR = "Plugins"; private readonly ILogger _logger; private readonly IRemoteAssemblyHandler _remoteAssemblyHandler; private readonly IMasterApi _masterApi; private readonly ApplicationConfiguration _appConfig; public PluginImporter(ILogger logger, ApplicationConfiguration appConfig, IMasterApi masterApi, IRemoteAssemblyHandler remoteAssemblyHandler) { _logger = logger; _masterApi = masterApi; _remoteAssemblyHandler = remoteAssemblyHandler; _appConfig = appConfig; } /// /// discovers all the script plugins in the plugins dir /// /// public IEnumerable DiscoverScriptPlugins() { var pluginDir = $"{Utilities.OperatingDirectory}{PLUGIN_DIR}{Path.DirectorySeparatorChar}"; if (!Directory.Exists(pluginDir)) { return Enumerable.Empty(); } var scriptPluginFiles = Directory.GetFiles(pluginDir, "*.js").AsEnumerable().Union(GetRemoteScripts()).ToList(); _logger.LogDebug("Discovered {count} potential script plugins", scriptPluginFiles.Count); return scriptPluginFiles.Select(fileName => { _logger.LogDebug("Discovered script plugin {fileName}", fileName); return new ScriptPlugin(_logger, fileName); }).ToList(); } /// /// discovers all the C# assembly plugins and commands /// /// public (IEnumerable, IEnumerable, IEnumerable) DiscoverAssemblyPluginImplementations() { var pluginDir = $"{Utilities.OperatingDirectory}{PLUGIN_DIR}{Path.DirectorySeparatorChar}"; var pluginTypes = Enumerable.Empty(); var commandTypes = Enumerable.Empty(); var configurationTypes = Enumerable.Empty(); if (Directory.Exists(pluginDir)) { var dllFileNames = Directory.GetFiles(pluginDir, "*.dll"); _logger.LogDebug("Discovered {count} potential plugin assemblies", dllFileNames.Length); if (dllFileNames.Length > 0) { // we only want to load the most recent assembly in case of duplicates var assemblies = dllFileNames.Select(_name => Assembly.LoadFrom(_name)) .Union(GetRemoteAssemblies()) .GroupBy(_assembly => _assembly.FullName).Select(_assembly => _assembly.OrderByDescending(_assembly => _assembly.GetName().Version).First()); pluginTypes = assemblies .SelectMany(_asm => { try { return _asm.GetTypes(); } catch { return Enumerable.Empty(); } }) .Where(_assemblyType => _assemblyType.GetInterface(nameof(IPlugin), false) != null); _logger.LogDebug("Discovered {count} plugin implementations", pluginTypes.Count()); commandTypes = assemblies .SelectMany(_asm =>{ try { return _asm.GetTypes(); } catch { return Enumerable.Empty(); } }) .Where(_assemblyType => _assemblyType.IsClass && _assemblyType.BaseType == typeof(Command)); _logger.LogDebug("Discovered {count} plugin commands", commandTypes.Count()); configurationTypes = assemblies .SelectMany(asm => { try { return asm.GetTypes(); } catch { return Enumerable.Empty(); } }) .Where(asmType => asmType.IsClass && asmType.GetInterface(nameof(IBaseConfiguration), false) != null); _logger.LogDebug("Discovered {count} configuration implementations", configurationTypes.Count()); } } return (pluginTypes, commandTypes, configurationTypes); } private IEnumerable GetRemoteAssemblies() { try { if (_pluginSubscription == null) _pluginSubscription = _masterApi.GetPluginSubscription(Guid.Parse(_appConfig.Id), _appConfig.SubscriptionId).Result; return _remoteAssemblyHandler.DecryptAssemblies(_pluginSubscription.Where(sub => sub.Type == PluginType.Binary).Select(sub => sub.Content).ToArray()); } catch (Exception ex) { _logger.LogWarning(ex, "Could not load remote assemblies"); return Enumerable.Empty(); } } private IEnumerable GetRemoteScripts() { try { if (_pluginSubscription == null) _pluginSubscription = _masterApi.GetPluginSubscription(Guid.Parse(_appConfig.Id), _appConfig.SubscriptionId).Result; return _remoteAssemblyHandler.DecryptScripts(_pluginSubscription.Where(sub => sub.Type == PluginType.Script).Select(sub => sub.Content).ToArray()); } catch (Exception ex) { _logger.LogWarning(ex,"Could not load remote scripts"); return Enumerable.Empty(); } } } public enum PluginType { Binary, Script } }