24 lines
834 B
C#
24 lines
834 B
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System.Security.Claims;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Authorization.Infrastructure;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace BasicWebSite
|
|
{
|
|
public class ManagerHandler : AuthorizationHandler<OperationAuthorizationRequirement>
|
|
{
|
|
protected override Task HandleRequirementAsync(AuthorizationHandlerContext context, OperationAuthorizationRequirement requirement)
|
|
{
|
|
if (context.User.HasClaim("Manager", "yes"))
|
|
{
|
|
context.Succeed(requirement);
|
|
}
|
|
return Task.FromResult(0);
|
|
}
|
|
}
|
|
}
|