75 lines
2.5 KiB
C#
75 lines
2.5 KiB
C#
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.Extensions.Options;
|
|
using System.Security.Claims;
|
|
|
|
namespace zero.Identity;
|
|
|
|
public class ZeroBackofficeClaimsPrincipalFactory<TUser, TRole> : ZeroClaimsPrinicipalFactory<TUser, TRole>
|
|
where TUser : ZeroUser
|
|
where TRole : ZeroUserRole
|
|
{
|
|
public ZeroBackofficeClaimsPrincipalFactory(UserManager<TUser> userManager, RoleManager<TRole> roleManager, IOptions<IdentityOptions> optionsAccessor, IOptions<ZeroAuthOptions<TUser>> authOptions, IZeroContext zero)
|
|
: base(userManager, roleManager, optionsAccessor, authOptions, zero)
|
|
{ }
|
|
|
|
|
|
protected override async Task<ClaimsIdentity> GenerateClaimsAsync(TUser user)
|
|
{
|
|
List<Claim> claims = await CreateClaimList(user);
|
|
|
|
// create the user identity
|
|
ClaimsIdentity identity = new(claims, AuthOptions.Scheme, Constants.Auth.Claims.UserName, Constants.Auth.Claims.Role); // "Identity.Application"
|
|
|
|
if (BackofficeUserIdentity.TryCreate(identity, out BackofficeUserIdentity userIdentity))
|
|
{
|
|
Claim isZeroClaim = userIdentity.FindFirst(Constants.Auth.Claims.IsZero);
|
|
Claim appIdClaim = userIdentity.FindFirst(Constants.Auth.Claims.AppId);
|
|
|
|
if (appIdClaim is null || isZeroClaim is null or not { Value: PermissionsValue.True })
|
|
{
|
|
return null;
|
|
}
|
|
|
|
return userIdentity;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
|
|
protected override async Task<List<Claim>> CreateClaimList(TUser user)
|
|
{
|
|
List<Claim> claims = await base.CreateClaimList(user);
|
|
|
|
claims.RemoveAll(x => x.Type == Constants.Auth.Claims.IsZero);
|
|
claims.Add(new Claim(Constants.Auth.Claims.IsZero, PermissionsValue.True));
|
|
|
|
if (user.IsSuper)
|
|
{
|
|
claims.Add(new Claim(Constants.Auth.Claims.IsSuper, PermissionsValue.True));
|
|
}
|
|
|
|
// get all allowed app ids
|
|
//string[] appIds = claims
|
|
// .Where(x => x.Type == Constants.Auth.Claims.Permission && x.Value.StartsWith(Permissions.Applications))
|
|
// .Select(x => Permission.FromClaim(x, Permissions.Applications))
|
|
// .Where(x => x.IsTrue)
|
|
// .Select(x => x.NormalizedKey)
|
|
// .ToArray();
|
|
string[] appIds = Array.Empty<string>(); // TODO permissions
|
|
|
|
string currentAppId = user.CurrentAppId ?? user.AppId;
|
|
|
|
if (!user.IsSuper && !appIds.Contains(currentAppId))
|
|
{
|
|
currentAppId = user.AppId;
|
|
}
|
|
|
|
claims.RemoveAll(x => x.Type == Constants.Auth.Claims.AppId);
|
|
claims.Add(new Claim(Constants.Auth.Claims.AppId, currentAppId));
|
|
claims.Add(new Claim(Constants.Auth.Claims.DefaultAppId, user.AppId));
|
|
|
|
return claims;
|
|
}
|
|
}
|