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.Services.Interfaces; using Oqtane.Shared; using Oqtane.UI; namespace Oqtane.Services { public class ModuleDefinitionService : ServiceBase, IModuleDefinitionService { private readonly HttpClient _http; private readonly SiteState _siteState; private readonly NavigationManager _navigationManager; public ModuleDefinitionService(HttpClient http, SiteState siteState, NavigationManager navigationManager) { _http = http; _siteState = siteState; _navigationManager = navigationManager; } private string Apiurl { get { return CreateApiUrl(_siteState.Alias, _navigationManager.Uri, EntityNames.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, Runtime runtime) { // get list of modules from the server List moduledefinitions = await GetModuleDefinitionsAsync(siteId); // download assemblies to browser when running client-side Blazor if (runtime == Runtime.WebAssembly) { // 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); } } } } public async Task CreateModuleDefinitionAsync(ModuleDefinition moduleDefinition, int moduleId) { await _http.PostJsonAsync($"{Apiurl}?moduleid={moduleId.ToString()}", moduleDefinition); } } }