Files
Umbraco-CMS/tools/Umbraco.JsonSchema/UmbracoJsonSchemaGenerator.cs
Ronald Barendse ad82fe89cf v14: JSON schema tool improvements (#16035)
* Use require modifier instead of setting null-suppressed default values

* Only remove read-only properties when IgnoreReadOnlyProperties is set

* Obsolete UmbracoPath property and remove work-around for obsolete setter
2024-04-15 08:58:52 +02:00

53 lines
2.0 KiB
C#

using System.Text.Json;
using System.Text.Json.Serialization;
using Namotion.Reflection;
using NJsonSchema;
using NJsonSchema.Generation;
/// <inheritdoc />
internal class UmbracoJsonSchemaGenerator : JsonSchemaGenerator
{
/// <summary>
/// Initializes a new instance of the <see cref="UmbracoJsonSchemaGenerator" /> class.
/// </summary>
public UmbracoJsonSchemaGenerator()
: base(new SystemTextJsonSchemaGeneratorSettings()
{
AlwaysAllowAdditionalObjectProperties = true,
FlattenInheritanceHierarchy = true,
IgnoreObsoleteProperties = true,
ReflectionService = new UmbracoSystemTextJsonReflectionService(),
SerializerOptions = new JsonSerializerOptions()
{
Converters = { new JsonStringEnumConverter() },
IgnoreReadOnlyProperties = true,
},
})
{ }
/// <inheritdoc />
private class UmbracoSystemTextJsonReflectionService : SystemTextJsonReflectionService
{
/// <inheritdoc />
public override void GenerateProperties(JsonSchema schema, ContextualType contextualType, SystemTextJsonSchemaGeneratorSettings settings, JsonSchemaGenerator schemaGenerator, JsonSchemaResolver schemaResolver)
{
// Populate schema properties
base.GenerateProperties(schema, contextualType, settings, schemaGenerator, schemaResolver);
if (settings.SerializerOptions.IgnoreReadOnlyProperties)
{
// Remove read-only properties (because this is not implemented by the base class)
foreach (ContextualPropertyInfo property in contextualType.Properties)
{
if (property.CanWrite is false)
{
string propertyName = GetPropertyName(property, settings);
schema.Properties.Remove(propertyName);
}
}
}
}
}
}