using Lua; namespace AIStudio.Settings.DataModel; public sealed record DataMandatoryInfo { private static readonly ILogger LOG = Program.LOGGER_FACTORY.CreateLogger(); /// /// The stable ID of the mandatory info. /// public string Id { get; private init; } = string.Empty; /// /// The ID of the enterprise configuration plugin that provides this info. /// public Guid EnterpriseConfigurationPluginId { get; private init; } = Guid.Empty; /// /// The title shown to the user. /// public string Title { get; private init; } = string.Empty; /// /// The configured version string. When it changes, the user must accept the text again. /// public string VersionText { get; private init; } = string.Empty; /// /// The Markdown content shown to the user. /// public string Markdown { get; private init; } = string.Empty; /// /// The label of the acceptance button. /// public string AcceptButtonText { get; private init; } = string.Empty; /// /// The label of the reject button. /// public string RejectButtonText { get; private init; } = string.Empty; public static bool TryParseConfiguration(int idx, LuaTable table, Guid configPluginId, out DataMandatoryInfo mandatoryInfo) { mandatoryInfo = new DataMandatoryInfo(); if (!table.TryGetValue("Id", out var idValue) || !idValue.TryRead(out var idText) || !Guid.TryParse(idText, out var id)) { LOG.LogWarning("The configured mandatory info {InfoIndex} does not contain a valid ID. The ID must be a valid GUID.", idx); return false; } if (!table.TryGetValue("Title", out var titleValue) || !titleValue.TryRead(out var title) || string.IsNullOrWhiteSpace(title)) { LOG.LogWarning("The configured mandatory info {InfoIndex} does not contain a valid Title field.", idx); return false; } if (!table.TryGetValue("Version", out var versionValue) || !versionValue.TryRead(out var versionText) || string.IsNullOrWhiteSpace(versionText)) { LOG.LogWarning("The configured mandatory info {InfoIndex} does not contain a valid Version field.", idx); return false; } if (!table.TryGetValue("Markdown", out var markdownValue) || !markdownValue.TryRead(out var markdown) || string.IsNullOrWhiteSpace(markdown)) { LOG.LogWarning("The configured mandatory info {InfoIndex} does not contain a valid Markdown field.", idx); return false; } if (!table.TryGetValue("AcceptButtonText", out var acceptButtonValue) || !acceptButtonValue.TryRead(out var acceptButtonText) || string.IsNullOrWhiteSpace(acceptButtonText)) { LOG.LogWarning("The configured mandatory info {InfoIndex} does not contain a valid AcceptButtonText field.", idx); return false; } if (!table.TryGetValue("RejectButtonText", out var rejectButtonValue) || !rejectButtonValue.TryRead(out var rejectButtonText) || string.IsNullOrWhiteSpace(rejectButtonText)) { LOG.LogWarning("The configured mandatory info {InfoIndex} does not contain a valid RejectButtonText field.", idx); return false; } mandatoryInfo = new DataMandatoryInfo { Id = id.ToString(), Title = title, VersionText = versionText, Markdown = markdown, AcceptButtonText = acceptButtonText, RejectButtonText = rejectButtonText, EnterpriseConfigurationPluginId = configPluginId, }; return true; } }