Files
Umbraco-CMS/src/Umbraco.Core/Manifest/ValueValidatorConverter.cs
2018-03-16 09:11:59 +01:00

35 lines
1.2 KiB
C#

using System;
using Newtonsoft.Json.Linq;
using Umbraco.Core.PropertyEditors;
using Umbraco.Core.Serialization;
namespace Umbraco.Core.Manifest
{
/// <summary>
/// Implements a json read converter for <see cref="IValueValidator"/>.
/// </summary>
internal class ValueValidatorConverter : JsonReadConverter<IValueValidator>
{
private readonly ManifestValueValidatorCollection _validators;
/// <summary>
/// Initializes a new instance of the <see cref="ValueValidatorConverter"/> class.
/// </summary>
public ValueValidatorConverter(ManifestValueValidatorCollection validators)
{
_validators = validators;
}
protected override IValueValidator Create(Type objectType, string path, JObject jObject)
{
var type = jObject["type"].Value<string>();
if (string.IsNullOrWhiteSpace(type))
throw new InvalidOperationException("Could not get the type of the validator.");
return _validators.Create(type);
// jObject["configuration"] is going to be deserialized in a Configuration property, if any
}
}
}