* Rename Umbraco.Core namespace to Umbraco.Cms.Core * Move extension methods in core project to Umbraco.Extensions * Move extension methods in core project to Umbraco.Extensions * Rename Umbraco.Examine namespace to Umbraco.Cms.Examine * Move examine extensions to Umbraco.Extensions namespace * Reflect changed namespaces in Builder and fix unit tests * Adjust namespace in Umbraco.ModelsBuilder.Embedded * Adjust namespace in Umbraco.Persistence.SqlCe * Adjust namespace in Umbraco.PublishedCache.NuCache * Align namespaces in Umbraco.Web.BackOffice * Align namespaces in Umbraco.Web.Common * Ensure that SqlCeSupport is still enabled after changing the namespace * Align namespaces in Umbraco.Web.Website * Align namespaces in Umbraco.Web.UI.NetCore * Align namespaces in Umbraco.Tests.Common * Align namespaces in Umbraco.Tests.UnitTests * Align namespaces in Umbraco.Tests.Integration * Fix errors caused by changed namespaces * Fix integration tests * Undo the Umbraco.Examine.Lucene namespace change This breaks integration tests on linux, since the namespace wont exists there because it's only used on windows. * Fix merge * Fix Merge
79 lines
3.5 KiB
C#
79 lines
3.5 KiB
C#
// Copyright (c) Umbraco.
|
|
// See LICENSE for more details.
|
|
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
namespace Umbraco.Cms.Web.BackOffice.Authorization
|
|
{
|
|
/// <summary>
|
|
/// Abstract handler that must satisfy the requirement so Succeed or Fail will be called no matter what.
|
|
/// </summary>
|
|
/// <typeparam name="T">Authorization requirement.</typeparam>
|
|
/// <remarks>
|
|
/// aspnetcore Authz handlers are not required to satisfy the requirement and generally don't explicitly call Fail when the requirement
|
|
/// isn't satisfied, however in many simple cases explicitly calling Succeed or Fail is what we want which is what this class is used for.
|
|
/// </remarks>
|
|
public abstract class MustSatisfyRequirementAuthorizationHandler<T> : AuthorizationHandler<T>
|
|
where T : IAuthorizationRequirement
|
|
{
|
|
/// <inheritdoc/>
|
|
protected override async Task HandleRequirementAsync(AuthorizationHandlerContext context, T requirement)
|
|
{
|
|
var isAuth = await IsAuthorized(context, requirement);
|
|
if (isAuth)
|
|
{
|
|
context.Succeed(requirement);
|
|
}
|
|
else
|
|
{
|
|
context.Fail();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Return true if the requirement is succeeded or ignored, return false if the requirement is explicitly not met
|
|
/// </summary>
|
|
/// <param name="context">The authorization context.</param>
|
|
/// <param name="requirement">The authorization requirement.</param>
|
|
/// <returns>True if request is authorized, false if not.</returns>
|
|
protected abstract Task<bool> IsAuthorized(AuthorizationHandlerContext context, T requirement);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Abstract handler that must satisfy the requirement so Succeed or Fail will be called no matter what.
|
|
/// </summary>
|
|
/// <typeparam name="T">Authorization requirement.</typeparam>
|
|
/// <typeparam name="TResource">Resource to authorize access to.</typeparam>
|
|
/// <remarks>
|
|
/// aspnetcore Authz handlers are not required to satisfy the requirement and generally don't explicitly call Fail when the requirement
|
|
/// isn't satisfied, however in many simple cases explicitly calling Succeed or Fail is what we want which is what this class is used for.
|
|
/// </remarks>
|
|
public abstract class MustSatisfyRequirementAuthorizationHandler<T, TResource> : AuthorizationHandler<T, TResource>
|
|
where T : IAuthorizationRequirement
|
|
{
|
|
/// <inheritdoc/>
|
|
protected override async Task HandleRequirementAsync(AuthorizationHandlerContext context, T requirement, TResource resource)
|
|
{
|
|
var isAuth = await IsAuthorized(context, requirement, resource);
|
|
if (isAuth)
|
|
{
|
|
context.Succeed(requirement);
|
|
}
|
|
else
|
|
{
|
|
context.Fail();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Return true if the requirement is succeeded or ignored, return false if the requirement is explicitly not met
|
|
/// </summary>
|
|
/// <param name="context">The authorization context.</param>
|
|
/// <param name="requirement">The authorization requirement.</param>
|
|
/// <param name="resource">The resource to authorize access to.</param>
|
|
/// <returns>True if request is authorized, false if not.</returns>
|
|
protected abstract Task<bool> IsAuthorized(AuthorizationHandlerContext context, T requirement, TResource resource);
|
|
}
|
|
}
|