mirror of
https://github.com/bitwarden/server.git
synced 2025-06-29 15:16:15 -05:00

* Upgrade to Duende.Identity * Linting * Get rid of last IdentityServer4 package * Fix identity test since Duende returns additional configuration * Use Configure PostConfigure is ran after ASP.NET's PostConfigure so ConfigurationManager was already configured and our HttpHandler wasn't being respected. * Regenerate lockfiles * Move to 6.0.4 for patches * fixes with testing * Add additional grant type supported in 6.0.4 and beautify * Lockfile refresh * Reapply lockfiles * Apply change to new WebAuthn logic * When automated merging fails me --------- Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com> Co-authored-by: Kyle Spearrin <kyle.spearrin@gmail.com>
42 lines
1.5 KiB
C#
42 lines
1.5 KiB
C#
using Duende.IdentityServer;
|
|
using Duende.IdentityServer.Extensions;
|
|
using Duende.IdentityServer.Models;
|
|
using Duende.IdentityServer.Services;
|
|
using Duende.IdentityServer.Stores;
|
|
using Duende.IdentityServer.Stores.Serialization;
|
|
|
|
namespace Bit.Identity.IdentityServer;
|
|
|
|
public class AuthorizationCodeStore : DefaultGrantStore<AuthorizationCode>, IAuthorizationCodeStore
|
|
{
|
|
public AuthorizationCodeStore(
|
|
IPersistedGrantStore store,
|
|
IPersistentGrantSerializer serializer,
|
|
IHandleGenerationService handleGenerationService,
|
|
ILogger<DefaultAuthorizationCodeStore> logger)
|
|
: base(IdentityServerConstants.PersistedGrantTypes.AuthorizationCode, store, serializer,
|
|
handleGenerationService, logger)
|
|
{ }
|
|
|
|
public Task<string> StoreAuthorizationCodeAsync(AuthorizationCode code)
|
|
{
|
|
return CreateItemAsync(code, code.ClientId, code.Subject.GetSubjectId(), code.SessionId,
|
|
code.Description, code.CreationTime, code.Lifetime);
|
|
}
|
|
|
|
public Task<AuthorizationCode> GetAuthorizationCodeAsync(string code)
|
|
{
|
|
return GetItemAsync(code);
|
|
}
|
|
|
|
public Task RemoveAuthorizationCodeAsync(string code)
|
|
{
|
|
// return RemoveItemAsync(code);
|
|
|
|
// We don't want to delete authorization codes during validation.
|
|
// We'll rely on the authorization code lifecycle for short term validation and the
|
|
// DatabaseExpiredGrantsJob to clean up old authorization codes.
|
|
return Task.FromResult(0);
|
|
}
|
|
}
|