using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Reflection; using System.Runtime.Loader; using Microsoft.Extensions.Hosting; using Oqtane.Infrastructure; using Oqtane.Modules; // ReSharper disable once CheckNamespace namespace Microsoft.Extensions.DependencyInjection { public static class OqtaneServiceCollectionExtensions { private static readonly IList OqtaneModuleAssemblies = new List(); private static Assembly[] Assemblies => AppDomain.CurrentDomain.GetAssemblies(); internal static IEnumerable GetOqtaneModuleAssemblies() => OqtaneModuleAssemblies; public static IServiceCollection AddOqtaneModules(this IServiceCollection services) { if (services is null) { throw new ArgumentNullException(nameof(services)); } LoadAssemblies("Module"); return services; } public static IServiceCollection AddOqtaneThemes(this IServiceCollection services) { if (services is null) { throw new ArgumentNullException(nameof(services)); } LoadAssemblies("Theme"); return services; } public static IServiceCollection AddOqtaneServices(this IServiceCollection services) { if (services is null) { throw new ArgumentNullException(nameof(services)); } // dynamically register module services, contexts, and repository classes var assemblies = Assemblies.Where(item => item.FullName != null && (item.FullName.StartsWith("Oqtane.") || item.FullName.Contains(".Module."))).ToArray(); foreach (var assembly in assemblies) { var implementationTypes = assembly.GetInterfaces(); foreach (var implementationType in implementationTypes) { if (implementationType.AssemblyQualifiedName != null) { var serviceType = Type.GetType(implementationType.AssemblyQualifiedName.Replace(implementationType.Name, $"I{implementationType.Name}")); services.AddScoped(serviceType ?? implementationType, implementationType); } } } return services; } public static IServiceCollection AddOqtaneHostedServices(this IServiceCollection services) { if (services is null) { throw new ArgumentNullException(nameof(services)); } // dynamically register hosted services var hostedServiceType = typeof(IHostedService); foreach (var assembly in Assemblies) { var serviceTypes = assembly.GetTypes(hostedServiceType); foreach (var serviceType in serviceTypes) { if (serviceType.IsSubclassOf(typeof(HostedServiceBase))) { services.AddSingleton(hostedServiceType, serviceType); } } } return services; } private static void LoadAssemblies(string pattern) { var assemblyPath = Path.GetDirectoryName(Assembly.GetEntryAssembly()?.Location); if (assemblyPath == null) return; var assembliesFolder = new DirectoryInfo(assemblyPath); // iterate through Oqtane theme assemblies in /bin ( filter is narrow to optimize loading process ) foreach (var file in assembliesFolder.EnumerateFiles($"*.{pattern}.*.dll")) { // check if assembly is already loaded var assembly = Assemblies.FirstOrDefault(a => a.Location == file.FullName); if (assembly == null) { // load assembly from stream to prevent locking file ( as long as dependencies are in /bin they will load as well ) assembly = AssemblyLoadContext.Default.LoadFromStream(new MemoryStream(File.ReadAllBytes(file.FullName))); if (pattern == "Module") { // build a list of module assemblies OqtaneModuleAssemblies.Add(assembly); } } } } } }