mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-04 16:49:36 +00:00
30 lines
929 B
C#
30 lines
929 B
C#
using MongoDB.Bson;
|
|
using ShoppingAssistantApi.Application.GlobalInstances;
|
|
using System.Security.Claims;
|
|
|
|
namespace ShoppingAssistantApi.Api.CustomMiddlewares;
|
|
|
|
public class GlobalUserCustomMiddleware
|
|
{
|
|
private readonly RequestDelegate _next;
|
|
|
|
public GlobalUserCustomMiddleware(RequestDelegate next)
|
|
{
|
|
this._next = next;
|
|
}
|
|
|
|
public async Task InvokeAsync(HttpContext httpContext)
|
|
{
|
|
if (ObjectId.TryParse(httpContext.User.FindFirst(ClaimTypes.NameIdentifier)?.Value, out ObjectId id))
|
|
{
|
|
GlobalUser.Id = id;
|
|
}
|
|
GlobalUser.Email = httpContext.User.FindFirst(ClaimTypes.Email)?.Value;
|
|
GlobalUser.Phone = httpContext.User.FindFirst(ClaimTypes.MobilePhone)?.Value;
|
|
foreach (var role in httpContext.User.FindAll(ClaimTypes.Role))
|
|
{
|
|
GlobalUser.Roles.Add(role.Value);
|
|
}
|
|
await this._next(httpContext);
|
|
}
|
|
} |