Add CurrentUserSessionService for session ID retrieval

Introduces ICurrentUserSessionService and its implementation to provide access to the current user's session ID via the 'sid' claim. Registers the service in DI and adds comprehensive unit tests to validate correct and error scenarios.
This commit is contained in:
Artemy
2025-07-25 18:07:05 +07:00
parent ce630fbe0a
commit 751c30dedd
5 changed files with 145 additions and 1 deletions
@@ -0,0 +1,27 @@
using Govor.Application.Interfaces.Infrastructure.Extensions;
using Microsoft.AspNetCore.Http;
namespace Govor.Application.Infrastructure.Extensions;
public class CurrentUserSessionService : ICurrentUserSessionService
{
private readonly IHttpContextAccessor _httpContextAccessor;
public CurrentUserSessionService(IHttpContextAccessor httpContextAccessor)
{
_httpContextAccessor = httpContextAccessor;
}
public Guid GetUserSessionId()
{
var user = _httpContextAccessor.HttpContext?.User;
var userIdClaim = user?.FindFirst("sid")?.Value;
if (string.IsNullOrEmpty(userIdClaim) || !Guid.TryParse(userIdClaim, out var userId))
{
throw new UnauthorizedAccessException("Session id (sid) claim is missing or invalid");
}
return userId;
}
}