J'ai créé une application Web dans .NET Core 2.0 où j'aimerais utiliser un PrincipalContext
à partir de l'espace de noms System.DirectoryServices.AccountManagement
.
Je veux valider l'utilisateur contre Active Directory comme ceci:
private static ClaimsIdentity ValidateUser(string userName, string password)
{
var domain = GetDomainByLogin(userName);
using (var pc = new PrincipalContext(ContextType.Domain, domain, null, ContextOptions.Negotiate))
{
if (!pc.ValidateCredentials(userName, password)) return null;
var user = UserPrincipal.FindByIdentity(pc, IdentityType.SamAccountName, userName);
if (user == null)
{
throw new Exception(UserNotFound);
}
var id = new ClaimsIdentity();
id.AddClaim(new Claim(JwtClaimTypes.Subject, userName));
id.AddClaim(new Claim(JwtClaimTypes.Name, userName));
var groups = user.GetGroups();
var roles = groups.Select(x => new Claim(JwtClaimTypes.Role, x.Name));
id.AddClaims(roles);
return id;
}
}
Comment puis-je utiliser le PrincipalContext
(System.DirectoryServices.AccountManagement
) dans .NET Core 2.0
?