fix: add key for save pre auth token
This commit is contained in:
parent
47a57693f8
commit
ac7bbde75e
@ -16,7 +16,7 @@ public class PreAuthService(ICacheService cache)
|
|||||||
private static string GeneratePreAuthToken() => Guid.NewGuid().ToString().Replace("-", "") +
|
private static string GeneratePreAuthToken() => Guid.NewGuid().ToString().Replace("-", "") +
|
||||||
GeneratorKey.GenerateString(16);
|
GeneratorKey.GenerateString(16);
|
||||||
|
|
||||||
public async Task<PreAuthTokenResponse> CreateLoginTokenAsync(TokenRequest request, string userId, CancellationToken cancellation = default)
|
private static string GetPreAuthCacheKey(string fingerprint) => $"{fingerprint}_pre_auth_token";
|
||||||
{
|
{
|
||||||
var firstAuthToken = GenerateFirstAuthToken();
|
var firstAuthToken = GenerateFirstAuthToken();
|
||||||
|
|
||||||
@ -29,7 +29,7 @@ public class PreAuthService(ICacheService cache)
|
|||||||
};
|
};
|
||||||
|
|
||||||
await cache.SetAsync(
|
await cache.SetAsync(
|
||||||
request.Fingerprint,
|
GetPreAuthCacheKey(request.Fingerprint),
|
||||||
JsonSerializer.SerializeToUtf8Bytes(loginStructure),
|
JsonSerializer.SerializeToUtf8Bytes(loginStructure),
|
||||||
Lifetime,
|
Lifetime,
|
||||||
cancellation);
|
cancellation);
|
||||||
|
Loading…
Reference in New Issue
Block a user