2021-04-20 19:34:18 +02:00
|
|
|
// Copyright (c) Umbraco.
|
2021-02-18 11:06:02 +01:00
|
|
|
// See LICENSE for more details.
|
|
|
|
|
using Umbraco.Cms.Core.Models.PublishedContent;
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Extensions
|
2020-02-08 10:02:33 +01:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Provides extension methods for <c>IPublishedProperty</c>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static class PublishedPropertyExtension
|
|
|
|
|
{
|
|
|
|
|
#region Value
|
|
|
|
|
|
|
|
|
|
public static object Value(this IPublishedProperty property, IPublishedValueFallback publishedValueFallback, string culture = null, string segment = null, Fallback fallback = default, object defaultValue = default)
|
|
|
|
|
{
|
|
|
|
|
if (property.HasValue(culture, segment))
|
|
|
|
|
return property.GetValue(culture, segment);
|
|
|
|
|
|
|
|
|
|
return publishedValueFallback.TryGetValue(property, culture, segment, fallback, defaultValue, out var value)
|
|
|
|
|
? value
|
|
|
|
|
: property.GetValue(culture, segment); // give converter a chance to return it's own vision of "no value"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Value<T>
|
|
|
|
|
|
|
|
|
|
public static T Value<T>(this IPublishedProperty property, IPublishedValueFallback publishedValueFallback, string culture = null, string segment = null, Fallback fallback = default, T defaultValue = default)
|
|
|
|
|
{
|
|
|
|
|
if (property.HasValue(culture, segment))
|
|
|
|
|
{
|
|
|
|
|
// we have a value
|
|
|
|
|
// try to cast or convert it
|
2021-06-23 11:13:19 -06:00
|
|
|
var value = property.GetValue(culture, segment);
|
|
|
|
|
if (value is T valueAsT)
|
|
|
|
|
{
|
|
|
|
|
return valueAsT;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-08 10:02:33 +01:00
|
|
|
var valueConverted = value.TryConvertTo<T>();
|
2021-06-23 11:13:19 -06:00
|
|
|
if (valueConverted)
|
|
|
|
|
{
|
|
|
|
|
return valueConverted.Result;
|
|
|
|
|
}
|
2020-02-08 10:02:33 +01:00
|
|
|
|
|
|
|
|
// cannot cast nor convert the value, nothing we can return but 'default'
|
|
|
|
|
// note: we don't want to fallback in that case - would make little sense
|
|
|
|
|
return default;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// we don't have a value, try fallback
|
|
|
|
|
if (publishedValueFallback.TryGetValue(property, culture, segment, fallback, defaultValue, out var fallbackValue))
|
2021-06-23 11:13:19 -06:00
|
|
|
{
|
2020-02-08 10:02:33 +01:00
|
|
|
return fallbackValue;
|
2021-06-23 11:13:19 -06:00
|
|
|
}
|
2020-02-08 10:02:33 +01:00
|
|
|
|
|
|
|
|
// we don't have a value - neither direct nor fallback
|
|
|
|
|
// give a chance to the converter to return something (eg empty enumerable)
|
|
|
|
|
var noValue = property.GetValue(culture, segment);
|
2021-06-23 11:13:19 -06:00
|
|
|
if (noValue is T noValueAsT)
|
|
|
|
|
{
|
|
|
|
|
return noValueAsT;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-08 10:02:33 +01:00
|
|
|
var noValueConverted = noValue.TryConvertTo<T>();
|
2021-06-23 11:13:19 -06:00
|
|
|
if (noValueConverted)
|
|
|
|
|
{
|
|
|
|
|
return noValueConverted.Result;
|
|
|
|
|
}
|
2020-02-08 10:02:33 +01:00
|
|
|
|
|
|
|
|
// cannot cast noValue nor convert it, nothing we can return but 'default'
|
|
|
|
|
return default;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|