#c# #jwt #claims
Вопрос:
Как я могу получить a BasketId
от претензий в UserContextService
? Идентификатор пользователя работает, но корзина не является стандартным типом. Поэтому мне нужна помощь, чтобы получить его. Это моя попытка:
бухгалтерский сервис:
var claims = new List<Claim>()
{
new Claim(ClaimTypes.NameIdentifier, user.Id.ToString()),
new Claim(ClaimTypes.Name, $"{user.FirstName} {user.LastName}"),
new Claim(ClaimTypes.Role, $"{user.Role.Name}"),
new Claim("DateOfBirth", user.DateOfBirth.Value.ToString("yyyy-MM-dd")),
new Claim("Basket", user.BasketId.ToString()),
new Claim("Address", user.AddressId.ToString()),
};
UserContextService:
public class UserContextService : IUserContextService
{
private readonly IHttpContextAccessor _httpContextAccessor;
public UserContextService(IHttpContextAccessor httpContextAccessor)
{
_httpContextAccessor = httpContextAccessor;
}
public ClaimsPrincipal User => _httpContextAccessor.HttpContext?.User;
public int? GetUserId => User is null ? null :
(int?)int.Parse(User.FindFirst(x => x.Type == ClaimTypes.NameIdentifier).Value);
public int? GetBasketId => User is null ? null :
(int?)int.Parse(User.FindFirst(x => x.Type == "Basket").Value);
}
Ответ №1:
Попробуйте это
public int? GetBasketId(ClaimsPrincipal user)
{
int? bucketId = null;
var identity = User.Identity as ClaimsIdentity;
var basketIdObj = identity == null ? null : identity.Claims.FirstOrDefault(x => x.Type == "Bucket");
if (basketIdObj != null) bucketId = Convert.ToInt32(basketIdObj.Value);
return bucketId;
}
Комментарии:
1. Хорошо, это работает, но не могли бы вы немного объяснить эти 2 строки кода: «var identity = Пользователь. Идентичность как утверждение идентичности; var basketIdObj = идентичность == ноль ? null : идентификация. Требования. Первое значение по умолчанию(x => x.Тип == «Ведро»);»