using Microsoft.AspNetCore.Authorization; namespace Bit.Core.Utilities; /// /// Allows a single authorization handler implementation to handle requirements for /// both singular or bulk operations on single or multiple resources. /// /// The type of the requirement to evaluate. /// The type of the resource(s) that will be evaluated. public abstract class BulkAuthorizationHandler : AuthorizationHandler where TRequirement : IAuthorizationRequirement { protected override async Task HandleRequirementAsync(AuthorizationHandlerContext context, TRequirement requirement) { // Attempt to get the resource(s) from the context var bulkResources = GetBulkResourceFromContext(context); // No resources of the expected type were found in the context, nothing to evaluate if (bulkResources == null) { return; } await HandleRequirementAsync(context, requirement, bulkResources); } private static ICollection GetBulkResourceFromContext(AuthorizationHandlerContext context) { return context.Resource switch { TResource resource => new List { resource }, IEnumerable resources => resources.ToList(), _ => null }; } protected abstract Task HandleRequirementAsync(AuthorizationHandlerContext context, TRequirement requirement, ICollection resources); }