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.
69 lines
2.3 KiB
69 lines
2.3 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Squidex.Infrastructure;
|
|
|
|
namespace Squidex.Domain.Apps.Core.Schemas
|
|
{
|
|
public sealed class FieldRegistry
|
|
{
|
|
private readonly TypeNameRegistry typeNameRegistry;
|
|
private readonly HashSet<Type> supportedFields = new HashSet<Type>();
|
|
|
|
public FieldRegistry(TypeNameRegistry typeNameRegistry)
|
|
{
|
|
Guard.NotNull(typeNameRegistry, nameof(typeNameRegistry));
|
|
|
|
this.typeNameRegistry = typeNameRegistry;
|
|
|
|
var types = typeof(FieldRegistry).Assembly.GetTypes().Where(x => x.BaseType == typeof(FieldProperties));
|
|
|
|
foreach (var type in types)
|
|
{
|
|
RegisterField(type);
|
|
}
|
|
|
|
typeNameRegistry.MapObsolete(typeof(ReferencesFieldProperties), "DateTime");
|
|
typeNameRegistry.MapObsolete(typeof(DateTimeFieldProperties), "References");
|
|
}
|
|
|
|
private void RegisterField(Type type)
|
|
{
|
|
if (supportedFields.Add(type))
|
|
{
|
|
typeNameRegistry.Map(type);
|
|
}
|
|
}
|
|
|
|
public RootField CreateRootField(long id, string name, Partitioning partitioning, FieldProperties properties)
|
|
{
|
|
CheckProperties(properties);
|
|
|
|
return properties.CreateRootField(id, name, partitioning);
|
|
}
|
|
|
|
public NestedField CreateNestedField(long id, string name, Partitioning partitioning, FieldProperties properties)
|
|
{
|
|
CheckProperties(properties);
|
|
|
|
return properties.CreateNestedField(id, name);
|
|
}
|
|
|
|
private void CheckProperties(FieldProperties properties)
|
|
{
|
|
Guard.NotNull(properties, nameof(properties));
|
|
|
|
if (!supportedFields.Contains(properties.GetType()))
|
|
{
|
|
throw new InvalidOperationException($"The field property '{properties.GetType()}' is not supported.");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|