mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
namespace BTCPayServer.Security
|
|
{
|
|
public static class Policies
|
|
{
|
|
public const string BitpayAuthentication = "Bitpay.Auth";
|
|
public const string CookieAuthentication = "Identity.Application";
|
|
public static AuthorizationOptions AddBTCPayPolicies(this AuthorizationOptions options)
|
|
{
|
|
AddClaim(options, CanUseStore.Key);
|
|
AddClaim(options, CanModifyStoreSettings.Key);
|
|
AddClaim(options, CanModifyServerSettings.Key);
|
|
return options;
|
|
}
|
|
|
|
private static void AddClaim(AuthorizationOptions options, string key)
|
|
{
|
|
options.AddPolicy(key, o => o.RequireClaim(key));
|
|
}
|
|
|
|
public class CanModifyServerSettings
|
|
{
|
|
public const string Key = "btcpay.store.canmodifyserversettings";
|
|
}
|
|
public class CanUseStore
|
|
{
|
|
public const string Key = "btcpay.store.canusestore";
|
|
}
|
|
public class CanModifyStoreSettings
|
|
{
|
|
public const string Key = "btcpay.store.canmodifystoresettings";
|
|
}
|
|
}
|
|
}
|