Files
Govor/Govor.Application/Infrastructure/Extensions/CurrentUserSessionService.cs
T
Artemy 751c30dedd 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.
2025-07-25 18:07:05 +07:00

27 lines
833 B
C#

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;
}
}