62 lines
2.3 KiB
C#
62 lines
2.3 KiB
C#
using Umbraco.Core;
|
|
using Umbraco.Core.Models;
|
|
using Umbraco.Web.PropertyEditors;
|
|
|
|
namespace Umbraco.Web
|
|
{
|
|
/// <summary>
|
|
/// Provides extension methods for <c>IPublishedProperty</c>.
|
|
/// </summary>
|
|
public static class PublishedPropertyExtension
|
|
{
|
|
#region GetValue<T>
|
|
|
|
public static T GetValue<T>(this IPublishedProperty property)
|
|
{
|
|
return property.GetValue(false, default(T));
|
|
}
|
|
|
|
public static T GetValue<T>(this IPublishedProperty property, T defaultValue)
|
|
{
|
|
return property.GetValue(true, defaultValue);
|
|
}
|
|
|
|
internal static T GetValue<T>(this IPublishedProperty property, bool withDefaultValue, T defaultValue)
|
|
{
|
|
if (property.HasValue == false && withDefaultValue) return defaultValue;
|
|
|
|
// else we use .Value so we give the converter a chance to handle the default value differently
|
|
// eg for IEnumerable<T> it may return Enumerable<T>.Empty instead of null
|
|
|
|
var value = property.Value;
|
|
|
|
// if value is null (strange but why not) it still is OK to call TryConvertTo
|
|
// because it's an extension method (hence no NullRef) which will return a
|
|
// failed attempt. So, no need to care for value being null here.
|
|
|
|
// if already the requested type, return
|
|
if (value is T) return (T)value;
|
|
|
|
// if can convert to requested type, return
|
|
var convert = value.TryConvertTo<T>();
|
|
if (convert.Success) return convert.Result;
|
|
|
|
// at that point, the code tried with the raw value
|
|
// that makes no sense because it sort of is unpredictable,
|
|
// you wouldn't know when the converters run or don't run.
|
|
// so, it's commented out now.
|
|
|
|
// try with the raw value
|
|
//var source = property.ValueSource;
|
|
//if (source is string) source = TextValueConverterHelper.ParseStringValueSource((string)source);
|
|
//if (source is T) return (T)source;
|
|
//convert = source.TryConvertTo<T>();
|
|
//if (convert.Success) return convert.Result;
|
|
|
|
return defaultValue;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|