@namespace Oqtane.Modules.Admin.ModuleCreator @inherits ModuleBase @inject NavigationManager NavigationManager @inject IModuleDefinitionService ModuleDefinitionService @inject IModuleService ModuleService @inject ISystemService SystemService @inject ISettingService SettingService @inject IStringLocalizer Localizer @using System.Text.RegularExpressions @if (string.IsNullOrEmpty(_moduledefinitionname)) { @if (!string.IsNullOrEmpty(_location)) { }
} else { } @code { private string _moduledefinitionname = ""; private string _owner = string.Empty; private string _module = string.Empty; private string _description = string.Empty; private string _template = "-"; public string _reference = Constants.Version; private string _location = string.Empty; public override SecurityAccessLevel SecurityAccessLevel => SecurityAccessLevel.Host; protected override void OnInitialized() { _moduledefinitionname = SettingService.GetSetting(ModuleState.Settings, "ModuleDefinitionName", ""); if (string.IsNullOrEmpty(_moduledefinitionname)) { _owner = ModuleState.Title; _module = ModuleState.Title; _description = ModuleState.Title; } else { AddModuleMessage("Once You Have Compiled The Module And Restarted The Application You Can Activate The Module Below", MessageType.Info); } } private async Task CreateModule() { try { if (IsValid(_owner) && IsValid(_module) && _template != "-") { var moduleDefinition = new ModuleDefinition { Owner = _owner, Name = _module, Description = _description, Template = _template, Version = _reference }; moduleDefinition = await ModuleDefinitionService.CreateModuleDefinitionAsync(moduleDefinition); var settings = ModuleState.Settings; SettingService.SetSetting(settings, "ModuleDefinitionName", moduleDefinition.ModuleDefinitionName); await SettingService.UpdateModuleSettingsAsync(settings, ModuleState.ModuleId); AddModuleMessage("The Source Code For Your Module Has Been Created At The Location Specified Below And Must Be Compiled In Order To Make It Functional. Once It Has Been Compiled You Must Restart Your Application To Apply These Changes.", MessageType.Success); } else { AddModuleMessage("You Must Provide A Valid Owner Name, Module Name, And Template", MessageType.Warning); } } catch (Exception ex) { await logger.LogError(ex, "Error Creating Module"); } } private async Task ActivateModule() { try { if (!string.IsNullOrEmpty(_moduledefinitionname)) { Module module = await ModuleService.GetModuleAsync(ModuleState.ModuleId); module.ModuleDefinitionName = _moduledefinitionname; await ModuleService.UpdateModuleAsync(module); StateHasChanged(); NavigationManager.NavigateTo(NavigateUrl()); } } catch (Exception ex) { await logger.LogError(ex, "Error Activating Module"); } } private bool IsValid(string name) { // must contain letters, underscores and digits and first character must be letter or underscore return !string.IsNullOrEmpty(name) && Regex.IsMatch(name, "^[A-Za-z_][A-Za-z0-9_]*$"); } private async void TemplateChanged(ChangeEventArgs e) { try { _location = string.Empty; _template = (string)e.Value; if (_template != "-") { Dictionary systeminfo = await SystemService.GetSystemInfoAsync(); if (systeminfo != null) { string[] path = systeminfo["serverpath"].Split('\\'); if (_template == "internal") { _location = string.Join("\\", path, 0, path.Length - 1) + "\\Oqtane.Client\\Modules\\" + _owner + "." + _module; } else { _location = string.Join("\\", path, 0, path.Length - 2) + "\\" + _owner + "." + _module; } } } StateHasChanged(); } catch (Exception ex) { await logger.LogError(ex, "Error Getting System Info {Error}", ex.Message); AddModuleMessage("Error Getting System Info", MessageType.Error); } } }