39 lines
1.4 KiB
C#
39 lines
1.4 KiB
C#
using System.Linq;
|
|
using Umbraco.Core.Configuration.UmbracoSettings;
|
|
using Umbraco.Core.PropertyEditors;
|
|
|
|
namespace Umbraco.Core.Models
|
|
{
|
|
public static class MediaExtensions
|
|
{
|
|
/// <summary>
|
|
/// Gets the url of a media item.
|
|
/// </summary>
|
|
public static string GetUrl(this IMedia media, string propertyAlias, MediaUrlGeneratorCollection mediaUrlGenerators)
|
|
{
|
|
if (!media.Properties.TryGetValue(propertyAlias, out var property))
|
|
return string.Empty;
|
|
|
|
// TODO: would need to be adjusted to variations, when media become variants
|
|
if (mediaUrlGenerators.TryGetMediaPath(property.PropertyType.PropertyEditorAlias, property.GetValue(), out var mediaUrl))
|
|
{
|
|
return mediaUrl;
|
|
}
|
|
|
|
// Without knowing what it is, just adding a string here might not be very nice
|
|
return string.Empty;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the urls of a media item.
|
|
/// </summary>
|
|
public static string[] GetUrls(this IMedia media, IContentSection contentSection, MediaUrlGeneratorCollection mediaUrlGenerators)
|
|
{
|
|
return contentSection.ImageAutoFillProperties
|
|
.Select(field => media.GetUrl(field.Alias, mediaUrlGenerators))
|
|
.Where(link => string.IsNullOrWhiteSpace(link) == false)
|
|
.ToArray();
|
|
}
|
|
}
|
|
}
|