gpt4 book ai didi

c# - Owin Authentication and claims in asp.net 如何访问用户数据

转载 作者:太空宇宙 更新时间:2023-11-03 15:14:57 25 4
gpt4 key购买 nike

我正在开发一个 Intranet 应用程序,其中用户身份验证基于 Active Directory,并且我对处理用户声明的正确方法有疑问。


我已经实现了类似的东西

Using OWIN and Active Directory to authenticate users in ASP.Net MVC 5 application

并且它完美地工作以通过事件目录对用户进行身份验证。我已添加声明以将用户数据存储在 cookie 中

private ClaimsIdentity CreateIdentity(UserPrincipal userPrincipal)
{
var identity = new ClaimsIdentity(MyAuthentication.ApplicationCookie, ClaimsIdentity.DefaultNameClaimType, ClaimsIdentity.DefaultRoleClaimType);
identity.AddClaim(new Claim("http://schemas.microsoft.com/accesscontrolservice/2010/07/claims/identityprovider", "Active Directory"));
identity.AddClaim(new Claim(ClaimTypes.Name, userPrincipal.SamAccountName));
identity.AddClaim(new Claim(ClaimTypes.NameIdentifier, userPrincipal.SamAccountName));
identity.AddClaim(new Claim(ClaimTypes.GivenName, userPrincipal.GivenName));

return identity;
}

有没有比下面的代码更有效的获取用户信息的方法?

var claimsIdentity = User.Identity as System.Security.Claims.ClaimsIdentity;
var name = claimsIdentity.FindFirst(System.Security.Claims.ClaimTypes.GivenName);

但是,用户的用户名可以通过它自己的身份获得User.Name...这看起来很无语。

最佳答案

您可以使用扩展方法来提供您需要的方法。

using System.Security.Claims;
using System.Security.Principal.IPrincipal;

public static class UserClaimExtentions {

public static string GivenName(this IPrincipal user) {
return user.GetClaimValue(ClaimTypes.GivenName);
}

public static string NameIdentifier(this IPrincipal user) {
return user.GetClaimValue(ClaimTypes.NameIdentifier);
}

public static string GetClaimValue(this IPrincipal user, string name) {
var claimsIdentity = user.Identity as ClaimsIdentity;
return claimsIdentity?.FindFirst(name)?.Value;
}

//If you aren't using the new operators from Roslyn for null checks then
//use this method instead
public static string GetClaimValue(this IPrincipal user, string name) {
var claimsIdentity = user.Identity as ClaimsIdentity;
var claim = claimsIdentity == null ? null : claimsIdentity?.FindFirst(name);
return claim == null ? null : claim.Value;
}

}

现在在您的代码中,您只需确保您使用的是定义扩展类的命名空间,然后您就可以执行

var givenName = User.GivenName();
var identifier = User.NameIdentifier();

var givenName = User.GetClaimValue(ClaimTypes.GivenName);
var identifier = User.GetClaimValue(ClaimTypes.NameIdentifier);

关于c# - Owin Authentication and claims in asp.net 如何访问用户数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39346134/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com