2017-07-20 11:21:28 +02:00
using System ;
2019-10-12 19:38:44 +02:00
using System.Collections.Generic ;
using System.ComponentModel.DataAnnotations ;
2013-10-27 15:22:04 +01:00
using System.Linq ;
using Newtonsoft.Json.Linq ;
using Umbraco.Core ;
2019-07-30 22:40:15 +10:00
using Umbraco.Core.Exceptions ;
2013-10-27 15:22:04 +01:00
using Umbraco.Core.Logging ;
using Umbraco.Core.Models ;
using Umbraco.Core.Models.Editors ;
using Umbraco.Core.PropertyEditors ;
2019-10-12 19:38:44 +02:00
using Umbraco.Core.PropertyEditors.Validators ;
2013-11-19 11:51:01 +11:00
using Umbraco.Core.Services ;
2013-10-27 15:22:04 +01:00
namespace Umbraco.Web.PropertyEditors
{
2018-02-15 14:49:32 +01:00
/// <summary>
/// Represents a multiple text string property editor.
/// </summary>
2019-06-07 17:59:38 +01:00
[DataEditor(
Constants.PropertyEditors.Aliases.MultipleTextstring,
"Repeatable textstrings",
"multipletextbox",
ValueType = ValueTypes.Text,
Group = Constants.PropertyEditors.Groups.Lists,
Icon = "icon-ordered-list")]
2018-02-25 10:43:16 +01:00
public class MultipleTextStringPropertyEditor : DataEditor
2013-10-27 15:22:04 +01:00
{
2015-01-23 20:00:44 +11:00
/// <summary>
2018-02-15 14:49:32 +01:00
/// Initializes a new instance of the <see cref="MultipleTextStringPropertyEditor"/> class.
2015-01-23 20:00:44 +11:00
/// </summary>
2018-02-15 14:49:32 +01:00
public MultipleTextStringPropertyEditor ( ILogger logger )
: base ( logger )
2016-09-11 19:57:33 +02:00
{ }
2015-01-23 20:00:44 +11:00
2018-02-15 14:49:32 +01:00
/// <inheritdoc />
protected override IDataValueEditor CreateValueEditor () => new MultipleTextStringPropertyValueEditor ( Attribute );
2013-10-27 15:22:04 +01:00
2018-02-15 14:49:32 +01:00
/// <inheritdoc />
protected override IConfigurationEditor CreateConfigurationEditor () => new MultipleTextStringConfigurationEditor ();
2013-10-27 15:22:04 +01:00
/// <summary>
/// Custom value editor so we can format the value for the editor and the database
/// </summary>
2018-02-15 14:49:32 +01:00
internal class MultipleTextStringPropertyValueEditor : DataValueEditor
2013-10-27 15:22:04 +01:00
{
2018-02-15 14:49:32 +01:00
public MultipleTextStringPropertyValueEditor ( DataEditorAttribute attribute )
2018-01-24 13:37:14 +01:00
: base ( attribute )
{ }
2017-07-20 11:21:28 +02:00
2013-10-27 15:22:04 +01:00
/// <summary>
/// The value passed in from the editor will be an array of simple objects so we'll need to parse them to get the string
/// </summary>
/// <param name="editorValue"></param>
/// <param name="currentValue"></param>
/// <returns></returns>
/// <remarks>
/// We will also check the pre-values here, if there are more items than what is allowed we'll just trim the end
/// </remarks>
2018-03-16 09:06:44 +01:00
public override object FromEditor ( ContentPropertyData editorValue , object currentValue )
2013-10-27 15:22:04 +01:00
{
var asArray = editorValue . Value as JArray ;
if ( asArray == null )
{
return null ;
}
2018-05-20 18:14:31 +01:00
if (!( editorValue . DataTypeConfiguration is MultipleTextStringConfiguration config ))
2019-07-30 22:40:15 +10:00
throw new PanicException ( $"editorValue.DataTypeConfiguration is {editorValue.DataTypeConfiguration.GetType()} but must be {typeof(MultipleTextStringConfiguration)}" );
2018-01-26 17:55:20 +01:00
var max = config . Maximum ;
2013-10-27 15:22:04 +01:00
//The legacy property editor saved this data as new line delimited! strange but we have to maintain that.
var array = asArray . OfType < JObject >()
. Where ( x => x [ "value" ] != null )
. Select ( x => x [ "value" ]. Value < string >());
2017-07-20 11:21:28 +02:00
2013-11-25 17:36:56 +11:00
//only allow the max if over 0
if ( max > 0 )
{
2017-07-20 11:21:28 +02:00
return string . Join ( Environment . NewLine , array . Take ( max ));
2013-11-25 17:36:56 +11:00
}
2017-07-20 11:21:28 +02:00
2013-11-25 17:36:56 +11:00
return string . Join ( Environment . NewLine , array );
2013-10-27 15:22:04 +01:00
}
/// <summary>
/// We are actually passing back an array of simple objects instead of an array of strings because in angular a primitive (string) value
/// cannot have 2 way binding, so to get around that each item in the array needs to be an object with a string.
/// </summary>
2013-11-19 11:51:01 +11:00
/// <param name="property"></param>
/// <param name="dataTypeService"></param>
2019-10-12 19:38:44 +02:00
/// <param name="culture"></param>
2018-04-04 01:59:51 +10:00
/// <param name="segment"></param>
2013-10-27 15:22:04 +01:00
/// <returns></returns>
/// <remarks>
/// The legacy property editor saved this data as new line delimited! strange but we have to maintain that.
/// </remarks>
2019-11-08 14:27:27 +01:00
public override object ToEditor ( IProperty property , IDataTypeService dataTypeService , string culture = null , string segment = null )
2013-10-27 15:22:04 +01:00
{
2018-04-21 09:57:28 +02:00
var val = property . GetValue ( culture , segment );
2018-04-04 01:59:51 +10:00
return val ?. ToString (). Split ( new [] { Environment . NewLine }, StringSplitOptions . RemoveEmptyEntries )
. Select ( x => JObject . FromObject ( new { value = x })) ?? new JObject [] { };
2013-10-27 15:22:04 +01:00
}
2019-10-12 19:38:44 +02:00
/// <summary>
/// A custom FormatValidator is used as for multiple text strings, each string should individually be checked
/// against the configured regular expression, rather than the JSON representing all the strings as a whole.
/// </summary>
public override IValueFormatValidator FormatValidator => new MultipleTextStringFormatValidator ();
}
internal class MultipleTextStringFormatValidator : IValueFormatValidator
{
public IEnumerable < ValidationResult > ValidateFormat ( object value , string valueType , string format )
{
var asArray = value as JArray ;
if ( asArray == null )
{
return Enumerable . Empty < ValidationResult >();
}
var textStrings = asArray . OfType < JObject >()
. Where ( x => x [ "value" ] != null )
. Select ( x => x [ "value" ]. Value < string >());
var textStringValidator = new RegexValidator ();
foreach ( var textString in textStrings )
{
var validationResults = textStringValidator . ValidateFormat ( textString , valueType , format ). ToList ();
if ( validationResults . Any ())
{
return validationResults ;
}
}
return Enumerable . Empty < ValidationResult >();
}
2013-10-27 15:22:04 +01:00
}
}
}