* Gather all notifications in Umbraco.Cms.Core.Notifications * Rename notifications to match convention * Move and rename missed notifications * Move the three remaining public notification into Umbraco.Cms.Core.Notifications
237 lines
9.1 KiB
C#
237 lines
9.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Microsoft.Extensions.Logging;
|
|
using Umbraco.Cms.Core.Events;
|
|
using Umbraco.Cms.Core.Models;
|
|
using Umbraco.Cms.Core.Notifications;
|
|
using Umbraco.Cms.Core.Persistence.Repositories;
|
|
using Umbraco.Cms.Core.Scoping;
|
|
using Umbraco.Extensions;
|
|
|
|
namespace Umbraco.Cms.Core.Services.Implement
|
|
{
|
|
internal class PublicAccessService : RepositoryService, IPublicAccessService
|
|
{
|
|
private readonly IPublicAccessRepository _publicAccessRepository;
|
|
|
|
public PublicAccessService(IScopeProvider provider, ILoggerFactory loggerFactory, IEventMessagesFactory eventMessagesFactory,
|
|
IPublicAccessRepository publicAccessRepository)
|
|
: base(provider, loggerFactory, eventMessagesFactory)
|
|
{
|
|
_publicAccessRepository = publicAccessRepository;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all defined entries and associated rules
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public IEnumerable<PublicAccessEntry> GetAll()
|
|
{
|
|
using (var scope = ScopeProvider.CreateScope(autoComplete: true))
|
|
{
|
|
return _publicAccessRepository.GetMany();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the entry defined for the content item's path
|
|
/// </summary>
|
|
/// <param name="content"></param>
|
|
/// <returns>Returns null if no entry is found</returns>
|
|
public PublicAccessEntry GetEntryForContent(IContent content)
|
|
{
|
|
return GetEntryForContent(content.Path.EnsureEndsWith("," + content.Id));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the entry defined for the content item based on a content path
|
|
/// </summary>
|
|
/// <param name="contentPath"></param>
|
|
/// <returns>Returns null if no entry is found</returns>
|
|
/// <remarks>
|
|
/// NOTE: This method get's called *very* often! This will return the results from cache
|
|
/// </remarks>
|
|
public PublicAccessEntry GetEntryForContent(string contentPath)
|
|
{
|
|
//Get all ids in the path for the content item and ensure they all
|
|
// parse to ints that are not -1.
|
|
var ids = contentPath.Split(Constants.CharArrays.Comma, StringSplitOptions.RemoveEmptyEntries)
|
|
.Select(x => int.TryParse(x, out int val) ? val : -1)
|
|
.Where(x => x != -1)
|
|
.ToList();
|
|
|
|
//start with the deepest id
|
|
ids.Reverse();
|
|
|
|
using (var scope = ScopeProvider.CreateScope(autoComplete: true))
|
|
{
|
|
//This will retrieve from cache!
|
|
var entries = _publicAccessRepository.GetMany().ToList();
|
|
foreach (var id in ids)
|
|
{
|
|
var found = entries.FirstOrDefault(x => x.ProtectedNodeId == id);
|
|
if (found != null) return found;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns true if the content has an entry for it's path
|
|
/// </summary>
|
|
/// <param name="content"></param>
|
|
/// <returns></returns>
|
|
public Attempt<PublicAccessEntry> IsProtected(IContent content)
|
|
{
|
|
var result = GetEntryForContent(content);
|
|
return Attempt.If(result != null, result);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns true if the content has an entry based on a content path
|
|
/// </summary>
|
|
/// <param name="contentPath"></param>
|
|
/// <returns></returns>
|
|
public Attempt<PublicAccessEntry> IsProtected(string contentPath)
|
|
{
|
|
var result = GetEntryForContent(contentPath);
|
|
return Attempt.If(result != null, result);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds a rule
|
|
/// </summary>
|
|
/// <param name="content"></param>
|
|
/// <param name="ruleType"></param>
|
|
/// <param name="ruleValue"></param>
|
|
/// <returns></returns>
|
|
public Attempt<OperationResult<OperationResultType, PublicAccessEntry>> AddRule(IContent content, string ruleType, string ruleValue)
|
|
{
|
|
var evtMsgs = EventMessagesFactory.Get();
|
|
PublicAccessEntry entry;
|
|
using (var scope = ScopeProvider.CreateScope())
|
|
{
|
|
entry = _publicAccessRepository.GetMany().FirstOrDefault(x => x.ProtectedNodeId == content.Id);
|
|
if (entry == null)
|
|
return OperationResult.Attempt.Cannot<PublicAccessEntry>(evtMsgs); // causes rollback
|
|
|
|
var existingRule = entry.Rules.FirstOrDefault(x => x.RuleType == ruleType && x.RuleValue == ruleValue);
|
|
if (existingRule == null)
|
|
{
|
|
entry.AddRule(ruleValue, ruleType);
|
|
}
|
|
else
|
|
{
|
|
//If they are both the same already then there's nothing to update, exit
|
|
return OperationResult.Attempt.Succeed(evtMsgs, entry);
|
|
}
|
|
|
|
var savingNotifiation = new PublicAccessEntrySavingNotification(entry, evtMsgs);
|
|
if (scope.Notifications.PublishCancelable(savingNotifiation))
|
|
{
|
|
scope.Complete();
|
|
return OperationResult.Attempt.Cancel(evtMsgs, entry);
|
|
}
|
|
|
|
_publicAccessRepository.Save(entry);
|
|
|
|
scope.Complete();
|
|
|
|
scope.Notifications.Publish(new PublicAccessEntrySavedNotification(entry, evtMsgs).WithStateFrom(savingNotifiation));
|
|
}
|
|
|
|
return OperationResult.Attempt.Succeed(evtMsgs, entry);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Removes a rule
|
|
/// </summary>
|
|
/// <param name="content"></param>
|
|
/// <param name="ruleType"></param>
|
|
/// <param name="ruleValue"></param>
|
|
public Attempt<OperationResult> RemoveRule(IContent content, string ruleType, string ruleValue)
|
|
{
|
|
var evtMsgs = EventMessagesFactory.Get();
|
|
PublicAccessEntry entry;
|
|
using (var scope = ScopeProvider.CreateScope())
|
|
{
|
|
entry = _publicAccessRepository.GetMany().FirstOrDefault(x => x.ProtectedNodeId == content.Id);
|
|
if (entry == null) return Attempt<OperationResult>.Fail(); // causes rollback // causes rollback
|
|
|
|
var existingRule = entry.Rules.FirstOrDefault(x => x.RuleType == ruleType && x.RuleValue == ruleValue);
|
|
if (existingRule == null) return Attempt<OperationResult>.Fail(); // causes rollback // causes rollback
|
|
|
|
entry.RemoveRule(existingRule);
|
|
|
|
var savingNotifiation = new PublicAccessEntrySavingNotification(entry, evtMsgs);
|
|
if (scope.Notifications.PublishCancelable(savingNotifiation))
|
|
{
|
|
scope.Complete();
|
|
return OperationResult.Attempt.Cancel(evtMsgs);
|
|
}
|
|
|
|
_publicAccessRepository.Save(entry);
|
|
scope.Complete();
|
|
|
|
scope.Notifications.Publish(new PublicAccessEntrySavedNotification(entry, evtMsgs).WithStateFrom(savingNotifiation));
|
|
}
|
|
|
|
return OperationResult.Attempt.Succeed(evtMsgs);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Saves the entry
|
|
/// </summary>
|
|
/// <param name="entry"></param>
|
|
public Attempt<OperationResult> Save(PublicAccessEntry entry)
|
|
{
|
|
var evtMsgs = EventMessagesFactory.Get();
|
|
|
|
using (var scope = ScopeProvider.CreateScope())
|
|
{
|
|
var savingNotifiation = new PublicAccessEntrySavingNotification(entry, evtMsgs);
|
|
if (scope.Notifications.PublishCancelable(savingNotifiation))
|
|
{
|
|
scope.Complete();
|
|
return OperationResult.Attempt.Cancel(evtMsgs);
|
|
}
|
|
|
|
_publicAccessRepository.Save(entry);
|
|
scope.Complete();
|
|
|
|
scope.Notifications.Publish(new PublicAccessEntrySavedNotification(entry, evtMsgs).WithStateFrom(savingNotifiation));
|
|
}
|
|
|
|
return OperationResult.Attempt.Succeed(evtMsgs);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes the entry and all associated rules
|
|
/// </summary>
|
|
/// <param name="entry"></param>
|
|
public Attempt<OperationResult> Delete(PublicAccessEntry entry)
|
|
{
|
|
var evtMsgs = EventMessagesFactory.Get();
|
|
|
|
using (var scope = ScopeProvider.CreateScope())
|
|
{
|
|
var deletingNotification = new PublicAccessEntryDeletingNotification(entry, evtMsgs);
|
|
if (scope.Notifications.PublishCancelable(deletingNotification))
|
|
{
|
|
scope.Complete();
|
|
return OperationResult.Attempt.Cancel(evtMsgs);
|
|
}
|
|
|
|
_publicAccessRepository.Delete(entry);
|
|
scope.Complete();
|
|
|
|
scope.Notifications.Publish(new PublicAccessEntryDeletedNotification(entry, evtMsgs).WithStateFrom(deletingNotification));
|
|
}
|
|
|
|
return OperationResult.Attempt.Succeed(evtMsgs);
|
|
}
|
|
}
|
|
}
|