mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-19 14:04:31 +01:00
* Part 1 & Part 2 squashed commits pr changes pr fixes remove config for openid -- no need for it for now Part 1: OpenIddict - Minor Changes & Config prep Part2: Openiddict: Init OpenIddict & Database Migration & Auth Policies pr changes fix merge fix compile fix compile #2 Part 1: OpenIddict - Minor Changes & Config prep add missing nuget Part2: Openiddict: Init OpenIddict & Database Migration & Auth Policies * Part3: OpenIddict: Add Flows Event Handlers * pr changes * fix merge * fix rebase * fix imports * cleanup * do not allow u2f enabled accounts to log in * start better tests for flows * add tests * fixes * reintroduce dynamic policy as policies on jwt do not work without it * reduce logs * fix incorrect endpoint definitions * Add implicit flow e2e test * add code flow and refresh flow * do not allow jwt bearer auth for all requests( only those under /api) * remove commentedt code * make sure authorize attr is marked with scheme * remove dynamic policy and set claims in jwt handler * cleanup * change serversettings policy to not need a claim * Add test to checkadmin verification * revert server setting claim removal * fix test * switch back to claim * unit test fixes * try fix build with weird references to csprojes * start fixing rebase * remove https requirement to handle tor * reformat tests correctly * fix csproj * fix ut formatting * PR Changes * do not show selenium browser
66 lines
2.6 KiB
C#
66 lines
2.6 KiB
C#
using System.Threading.Tasks;
|
|
using AspNet.Security.OpenIdConnect.Primitives;
|
|
using BTCPayServer.Models;
|
|
using Microsoft.AspNetCore.Authentication;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.Extensions.Options;
|
|
using OpenIddict.Abstractions;
|
|
using OpenIddict.Server;
|
|
|
|
namespace BTCPayServer.Authentication.OpenId
|
|
{
|
|
public abstract class
|
|
OpenIdGrantHandlerCheckCanSignIn : BaseOpenIdGrantHandler<OpenIddictServerEvents.HandleTokenRequest>
|
|
{
|
|
private readonly UserManager<ApplicationUser> _userManager;
|
|
|
|
protected OpenIdGrantHandlerCheckCanSignIn(SignInManager<ApplicationUser> signInManager,
|
|
IOptions<IdentityOptions> identityOptions, UserManager<ApplicationUser> userManager) : base(signInManager,
|
|
identityOptions)
|
|
{
|
|
_userManager = userManager;
|
|
}
|
|
|
|
protected abstract bool IsValid(OpenIdConnectRequest request);
|
|
|
|
public override async Task<OpenIddictServerEventState> HandleAsync(
|
|
OpenIddictServerEvents.HandleTokenRequest notification)
|
|
{
|
|
var request = notification.Context.Request;
|
|
if (!IsValid(request))
|
|
{
|
|
// Allow other handlers to process the event.
|
|
return OpenIddictServerEventState.Unhandled;
|
|
}
|
|
|
|
var scheme = notification.Context.Scheme.Name;
|
|
var authenticateResult = (await notification.Context.HttpContext.AuthenticateAsync(scheme));
|
|
|
|
|
|
var user = await _userManager.GetUserAsync(authenticateResult.Principal);
|
|
if (user == null)
|
|
{
|
|
notification.Context.Reject(
|
|
error: OpenIddictConstants.Errors.InvalidGrant,
|
|
description: "The token is no longer valid.");
|
|
// Don't allow other handlers to process the event.
|
|
return OpenIddictServerEventState.Handled;
|
|
}
|
|
|
|
// Ensure the user is still allowed to sign in.
|
|
if (!await _signInManager.CanSignInAsync(user))
|
|
{
|
|
notification.Context.Reject(
|
|
error: OpenIddictConstants.Errors.InvalidGrant,
|
|
description: "The user is no longer allowed to sign in.");
|
|
// Don't allow other handlers to process the event.
|
|
return OpenIddictServerEventState.Handled;
|
|
}
|
|
|
|
notification.Context.Validate(await CreateTicketAsync(request, user));
|
|
// Don't allow other handlers to process the event.
|
|
return OpenIddictServerEventState.Handled;
|
|
}
|
|
}
|
|
}
|