mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.7 KiB
78 lines
2.7 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Namotion.Reflection;
|
|
using NJsonSchema;
|
|
using NSwag.Generation.Processors;
|
|
using NSwag.Generation.Processors.Contexts;
|
|
using Squidex.Domain.Apps.Core.HandleRules;
|
|
using Squidex.Domain.Apps.Core.Rules;
|
|
using Squidex.Infrastructure;
|
|
|
|
namespace Squidex.Areas.Api.Controllers.Rules.Models
|
|
{
|
|
public sealed class RuleActionProcessor : IDocumentProcessor
|
|
{
|
|
private readonly RuleRegistry ruleRegistry;
|
|
|
|
public RuleActionProcessor(RuleRegistry ruleRegistry)
|
|
{
|
|
Guard.NotNull(ruleRegistry, nameof(ruleRegistry));
|
|
|
|
this.ruleRegistry = ruleRegistry;
|
|
}
|
|
|
|
public void Process(DocumentProcessorContext context)
|
|
{
|
|
try
|
|
{
|
|
var schema = context.SchemaResolver.GetSchema(typeof(RuleAction), false);
|
|
|
|
if (schema != null)
|
|
{
|
|
schema.DiscriminatorObject = new OpenApiDiscriminator
|
|
{
|
|
JsonInheritanceConverter = new RuleActionConverter(), PropertyName = "actionType"
|
|
};
|
|
|
|
schema.Properties["actionType"] = new JsonSchemaProperty
|
|
{
|
|
Type = JsonObjectType.String, IsRequired = true
|
|
};
|
|
|
|
foreach (var (key, value) in ruleRegistry.Actions)
|
|
{
|
|
var derivedSchema = context.SchemaGenerator.Generate<JsonSchema>(value.Type.ToContextualType(), context.SchemaResolver);
|
|
|
|
var oldName = context.Document.Definitions.FirstOrDefault(x => x.Value == derivedSchema).Key;
|
|
|
|
if (oldName != null)
|
|
{
|
|
context.Document.Definitions.Remove(oldName);
|
|
context.Document.Definitions.Add($"{key}RuleActionDto", derivedSchema);
|
|
}
|
|
}
|
|
|
|
RemoveFreezable(context, schema);
|
|
}
|
|
}
|
|
catch (KeyNotFoundException)
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
|
|
private static void RemoveFreezable(DocumentProcessorContext context, JsonSchema schema)
|
|
{
|
|
context.Document.Definitions.Remove("Freezable");
|
|
|
|
schema.AllOf.Clear();
|
|
}
|
|
}
|
|
}
|
|
|