24 lines
950 B
C#
24 lines
950 B
C#
using ExpenseTracker.Application.Common.Interfaces.Services;
|
|
using MediatR;
|
|
|
|
namespace ExpenseTracker.Application.Authentication.Commands.RenewAccessTokenWithCookie;
|
|
|
|
public class RenewAccessTokenWithCookieCommandHandler : IRequestHandler<RenewAccessTokenWithCookieCommand, TokensModel>
|
|
{
|
|
private readonly ISessionUserService _sessionUserService;
|
|
private readonly IAuthenticationService _authenticationService;
|
|
|
|
public RenewAccessTokenWithCookieCommandHandler(
|
|
ISessionUserService sessionUserService,
|
|
IAuthenticationService authenticationService)
|
|
{
|
|
_sessionUserService = sessionUserService;
|
|
_authenticationService = authenticationService;
|
|
}
|
|
|
|
public async Task<TokensModel> Handle(RenewAccessTokenWithCookieCommand request, CancellationToken cancellationToken)
|
|
{
|
|
return await _authenticationService.RenewAccessTokenAsync(_sessionUserService.RefreshToken, cancellationToken);
|
|
}
|
|
}
|