Files
Umbraco-CMS/src/Umbraco.Core/ContentApps/ContentAppFactoryCollection.cs

62 lines
2.2 KiB
C#
Raw Normal View History

2018-12-07 14:05:47 +01:00
using System.Collections.Generic;
using System.Linq;
using Microsoft.Extensions.Logging;
using Umbraco.Cms.Core.Composing;
using Umbraco.Cms.Core.Models.ContentEditing;
using Umbraco.Cms.Core.Models.Membership;
using Umbraco.Cms.Core.Security;
using Umbraco.Extensions;
namespace Umbraco.Cms.Core.ContentApps
{
2018-12-07 14:05:47 +01:00
public class ContentAppFactoryCollection : BuilderCollectionBase<IContentAppFactory>
{
private readonly ILogger<ContentAppFactoryCollection> _logger;
private readonly IBackOfficeSecurityAccessor _backOfficeSecurityAccessor;
public ContentAppFactoryCollection(IEnumerable<IContentAppFactory> items, ILogger<ContentAppFactoryCollection> logger, IBackOfficeSecurityAccessor backOfficeSecurityAccessor)
: base(items)
{
_logger = logger;
_backOfficeSecurityAccessor = backOfficeSecurityAccessor;
}
2018-10-16 15:05:17 +02:00
private IEnumerable<IReadOnlyUserGroup> GetCurrentUserGroups()
{
var currentUser = _backOfficeSecurityAccessor?.BackOfficeSecurity?.CurrentUser;
2018-10-16 15:05:17 +02:00
return currentUser == null
? Enumerable.Empty<IReadOnlyUserGroup>()
: currentUser.Groups;
}
public IEnumerable<ContentApp> GetContentAppsFor(object o, IEnumerable<IReadOnlyUserGroup> userGroups=null)
{
2018-10-16 15:05:17 +02:00
var roles = GetCurrentUserGroups();
2018-12-06 11:02:35 +01:00
var apps = this.Select(x => x.GetContentAppFor(o, roles)).WhereNotNull().OrderBy(x => x.Weight).ToList();
var aliases = new HashSet<string>();
List<string> dups = null;
foreach (var app in apps)
{
if (aliases.Contains(app.Alias))
(dups ?? (dups = new List<string>())).Add(app.Alias);
else
aliases.Add(app.Alias);
}
if (dups != null)
{
// dying is not user-friendly, so let's write to log instead, and wish people read logs...
//throw new InvalidOperationException($"Duplicate content app aliases found: {string.Join(",", dups)}");
_logger.LogWarning("Duplicate content app aliases found: {DuplicateAliases}", string.Join(",", dups));
}
return apps;
}
}
}