mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
ef9c2e8af1
* Part 1: OpenIddict - Minor Changes & Config prep * Part 1: OpenIddict - Minor Changes & Config prep * Part2: Openiddict: Init OpenIddict & Database Migration & Auth Policies * pr changes * pr changes * fix merge * pr fixes * remove config for openid -- no need for it for now * fix compile * fix compile #2 * remove extra ns using * Update Startup.cs * compile * adjust settings a bit * remove duplicate * remove external login provider placeholder html * remove unused directives * regenerate db snapshot model * Remove dynamic policy
42 lines
1.2 KiB
C#
42 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, CanModifyStoreSettings.Key);
|
|
AddClaim(options, CanModifyServerSettings.Key);
|
|
AddClaim(options, CanCreateInvoice.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 CanModifyStoreSettings
|
|
{
|
|
public const string Key = "btcpay.store.canmodifystoresettings";
|
|
}
|
|
public class CanCreateInvoice
|
|
{
|
|
public const string Key = "btcpay.store.cancreateinvoice";
|
|
}
|
|
|
|
}
|
|
}
|