using Oqtane.Models; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Threading.Tasks; using Microsoft.AspNetCore.Components; using System; using System.Reflection; using Oqtane.Shared; using Oqtane.Providers; namespace Oqtane.Services { public class ModuleDefinitionService : ServiceBase, IModuleDefinitionService { private readonly HttpClient _http; private readonly SiteState _siteState; private readonly NavigationManager _navigationManager; private readonly IServiceProvider _serviceProvider; public ModuleDefinitionService(HttpClient http, SiteState siteState, NavigationManager navigationManager, IServiceProvider serviceProvider) { _http = http; _siteState = siteState; _navigationManager = navigationManager; _serviceProvider = serviceProvider; } private string Apiurl { get { return CreateApiUrl(_siteState.Alias, _navigationManager.Uri, "ModuleDefinition"); } } public async Task> GetModuleDefinitionsAsync(int siteId) { List moduledefinitions = await _http.GetJsonAsync>(Apiurl + "?siteid=" + siteId.ToString()); return moduledefinitions.OrderBy(item => item.Name).ToList(); } public async Task GetModuleDefinitionAsync(int moduleDefinitionId, int siteId) { return await _http.GetJsonAsync(Apiurl + "/" + moduleDefinitionId.ToString() + "?siteid=" + siteId.ToString()); } public async Task UpdateModuleDefinitionAsync(ModuleDefinition moduleDefinition) { await _http.PutJsonAsync(Apiurl + "/" + moduleDefinition.ModuleDefinitionId.ToString(), moduleDefinition); } public async Task InstallModuleDefinitionsAsync() { await _http.GetJsonAsync>(Apiurl + "/install"); } public async Task DeleteModuleDefinitionAsync(int moduleDefinitionId, int siteId) { await _http.DeleteAsync(Apiurl + "/" + moduleDefinitionId.ToString() + "?siteid=" + siteId.ToString()); } public async Task LoadModuleDefinitionsAsync(int siteId) { // get list of modules from the server List moduledefinitions = await GetModuleDefinitionsAsync(siteId); // download assemblies to browser when running client-side Blazor var authstateprovider = (IdentityAuthenticationStateProvider)_serviceProvider.GetService(typeof(IdentityAuthenticationStateProvider)); if (authstateprovider != null) { // get list of loaded assemblies on the client ( in the client-side hosting module the browser client has its own app domain ) Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies(); foreach (ModuleDefinition moduledefinition in moduledefinitions) { // if a module has dependencies, check if they are loaded if (moduledefinition.Dependencies != "") { foreach (string dependency in moduledefinition.Dependencies.Split(new char[] { ';' }, StringSplitOptions.RemoveEmptyEntries)) { string assemblyname = dependency.Replace(".dll", ""); if (assemblies.Where(item => item.FullName.StartsWith(assemblyname + ",")).FirstOrDefault() == null) { // download assembly from server and load var bytes = await _http.GetByteArrayAsync(Apiurl + "/load/" + assemblyname + ".dll"); Assembly.Load(bytes); } } } // check if the module assembly is loaded if (assemblies.Where(item => item.FullName.StartsWith(moduledefinition.AssemblyName + ",")).FirstOrDefault() == null) { // download assembly from server and load var bytes = await _http.GetByteArrayAsync(Apiurl + "/load/" + moduledefinition.AssemblyName + ".dll"); Assembly.Load(bytes); } } } } } }