Add a property to retrieve the claims (id and login) in the token
This commit is contained in:
30
Back/skydiveLogs-api/Controllers/Base.cs
Normal file
30
Back/skydiveLogs-api/Controllers/Base.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Security.Claims;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
using skydiveLogs_api.Model;
|
||||
|
||||
|
||||
namespace skydiveLogs_api.Controllers
|
||||
{
|
||||
public class Base : ControllerBase
|
||||
{
|
||||
public User ConnectedUser
|
||||
{
|
||||
get
|
||||
{
|
||||
if (_connectedUser == null)
|
||||
{
|
||||
_connectedUser = new User();
|
||||
_connectedUser.Login = User.Claims.Single(c => c.Type == ClaimTypes.Name).Value;
|
||||
_connectedUser.Id = Convert.ToInt32(User.Claims.Single(c => c.Type == ClaimTypes.UserData).Value);
|
||||
}
|
||||
|
||||
return _connectedUser;
|
||||
}
|
||||
}
|
||||
|
||||
private User _connectedUser;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user