This commit is contained in:
39
HanyadikHetVan/Infrastructure/ProfileService.cs
Normal file
39
HanyadikHetVan/Infrastructure/ProfileService.cs
Normal file
@ -0,0 +1,39 @@
|
||||
using HanyadikHetVan.Data.Entities;
|
||||
using IdentityServer4.Models;
|
||||
using IdentityServer4.Services;
|
||||
using Microsoft.AspNetCore.Identity;
|
||||
using System.Linq;
|
||||
using System.Security.Claims;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace HanyadikHetVan.Infrastructure
|
||||
{
|
||||
public class ProfileService : IProfileService
|
||||
{
|
||||
private readonly UserManager<User> userManager;
|
||||
|
||||
public ProfileService(UserManager<User> userManager)
|
||||
{
|
||||
this.userManager = userManager;
|
||||
}
|
||||
|
||||
public async Task GetProfileDataAsync(ProfileDataRequestContext context)
|
||||
{
|
||||
var user = await userManager.GetUserAsync(context.Subject);
|
||||
var roles = await userManager.GetRolesAsync(user);
|
||||
if (context.RequestedClaimTypes.Any(x => x == "user_role"))
|
||||
{
|
||||
context.IssuedClaims.AddRange(roles.Select(x => new Claim("user_role", x)));
|
||||
}
|
||||
if (context.RequestedResources.ParsedScopes.Any(x => x.ParsedName == "profile"))
|
||||
{
|
||||
context.IssuedClaims.Add(new Claim("email", user.Email));
|
||||
}
|
||||
}
|
||||
public async Task IsActiveAsync(IsActiveContext context)
|
||||
{
|
||||
var user = await userManager.GetUserAsync(context.Subject);
|
||||
context.IsActive = user != null;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user