mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-30 12:14:23 +01:00
* Part 1: OpenIddict - Minor Changes & Config prep * add missing nuget * pr changes * pr fixes * remove config for openid -- no need for it for now * remove unused extension * Add tests * use pay tester http client * check redirecturl in tests
68 lines
2.2 KiB
C#
68 lines
2.2 KiB
C#
using System.Security.Claims;
|
|
using System.Threading.Tasks;
|
|
using BTCPayServer.Models;
|
|
using BTCPayServer.Services.Stores;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.Filters;
|
|
using Microsoft.Extensions.Options;
|
|
|
|
namespace BTCPayServer.Security
|
|
{
|
|
|
|
public class BTCPayClaimsFilter : IAsyncAuthorizationFilter, IConfigureOptions<MvcOptions>
|
|
{
|
|
UserManager<ApplicationUser> _userManager;
|
|
StoreRepository _StoreRepository;
|
|
public BTCPayClaimsFilter(
|
|
UserManager<ApplicationUser> userManager,
|
|
StoreRepository storeRepository)
|
|
{
|
|
_userManager = userManager;
|
|
_StoreRepository = storeRepository;
|
|
}
|
|
|
|
void IConfigureOptions<MvcOptions>.Configure(MvcOptions options)
|
|
{
|
|
options.Filters.Add(typeof(BTCPayClaimsFilter));
|
|
}
|
|
|
|
public async Task OnAuthorizationAsync(AuthorizationFilterContext context)
|
|
{
|
|
var principal = context.HttpContext.User;
|
|
if (context.HttpContext.GetIsBitpayAPI())
|
|
{
|
|
return;
|
|
}
|
|
|
|
var identity = ((ClaimsIdentity)principal.Identity);
|
|
if (principal.IsInRole(Roles.ServerAdmin))
|
|
{
|
|
identity.AddClaim(new Claim(Policies.CanModifyServerSettings.Key, "true"));
|
|
}
|
|
|
|
if (context.RouteData.Values.TryGetValue("storeId", out var storeId))
|
|
{
|
|
var userid = _userManager.GetUserId(principal);
|
|
|
|
if (!string.IsNullOrEmpty(userid))
|
|
{
|
|
var store = await _StoreRepository.FindStore((string)storeId, userid);
|
|
if (store == null)
|
|
{
|
|
context.Result = new ChallengeResult();
|
|
}
|
|
else
|
|
{
|
|
context.HttpContext.SetStoreData(store);
|
|
if (store != null)
|
|
{
|
|
identity.AddClaims(store.GetClaims());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|