* Remove Security from UmbracoContext Signed-off-by: Bjarke Berg <mail@bergmania.dk> * Removing files reference from csproj Co-authored-by: Elitsa Marinovska <elm@umbraco.dk>
62 lines
2.2 KiB
C#
62 lines
2.2 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Microsoft.Extensions.Logging;
|
|
using Umbraco.Core;
|
|
using Umbraco.Core.Composing;
|
|
using Umbraco.Core.Models.ContentEditing;
|
|
using Umbraco.Core.Models.Membership;
|
|
using Umbraco.Core.Security;
|
|
|
|
namespace Umbraco.Web.ContentApps
|
|
{
|
|
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;
|
|
}
|
|
|
|
private IEnumerable<IReadOnlyUserGroup> GetCurrentUserGroups()
|
|
{
|
|
var currentUser = _backOfficeSecurityAccessor?.BackOfficeSecurity?.CurrentUser;
|
|
return currentUser == null
|
|
? Enumerable.Empty<IReadOnlyUserGroup>()
|
|
: currentUser.Groups;
|
|
|
|
}
|
|
|
|
public IEnumerable<ContentApp> GetContentAppsFor(object o, IEnumerable<IReadOnlyUserGroup> userGroups=null)
|
|
{
|
|
var roles = GetCurrentUserGroups();
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|