3

我正在尝试使用新的 Visual Studio 2013 Preview for Web 在 Web 表单项目中获取当前用户。我可以使用 Page.User 获取用户名,但试图获取用户 ID 是我卡住的地方。它正在使用他们提出的这种新的身份模型。

这就是我所拥有的:

//Gets the correct username
string uname = User.Identity.Name;
//Returns a null object
Microsoft.AspNet.Identity.IUser user = IdentityConfig.Users.Find(uname);
//What I hope to call to add a user to a role
IdentityConfig.Roles.AddUserToRole("NPO", user.Id);
4

3 回答 3

3

如果您使用的是 ASP.NET WebForms 模板附带的默认成员资格,您应该执行以下操作来检索用户:

if (this.User != null && this.User.Identity.IsAuthenticated)
{
  var userName = HttpContext.Current.User.Identity.Name;
}

您所说的新模型是ClaimsPrincipal. 独特的区别是这个基于声明的安全,它与旧版本完全兼容,但更强大。

编辑:

要将用户添加到某些Role程序中,您应该这样做,传递用户名和角色名:

if (this.User != null && this.User.Identity.IsAuthenticated)
{
  var userName = HttpContext.Current.User.Identity.Name;
  System.Web.Security.Roles.AddUserToRole(userName, "Role Name");    
}

使用新的基于声明的安全性

if (this.User != null && this.User.Identity.IsAuthenticated)
{
  var userName = HttpContext.Current.User.Identity.Name;
  ClaimsPrincipal cp = (ClaimsPrincipal)HttpContext.Current.User;

  GenericIdentity genericIdentity;
  ClaimsIdentity claimsIdentity;
  Claim claim;

  genericIdentity = new GenericIdentity(userName, "Custom Claims Principal");

  claimsIdentity = new ClaimsIdentity(genericIdentity);

  claim = new Claim(ClaimTypes.Role, "Role Name");
  claimsIdentity.AddClaim(claim);

  cp.AddIdentity(claimsIdentity);
}
于 2013-09-10T16:53:32.893 回答
2

默认情况下,用户 ID 存储在 ClaimTypes.NameIdentifier 声明中。我们还提供了一个扩展方法,它存在于 Microsoft.AspNet.Identity 中,因此您可以简单地调用 Page.User.Identity.GetUserId(),而不是仅仅为了获取 id 而获取用户。

于 2013-09-11T21:49:33.513 回答
0

只是给今天发现这个的人的帖子,现在很容易完成

ApplicationUserManager manager = Context.GetOwinContext().GetUserManager<ApplicationUserManager>();
ApplicationSignInManager signinManager = Context.GetOwinContext().GetUserManager<ApplicationSignInManager>();
ApplicationUser user = signinManager.UserManager.FindByNameAsync("username").Result;

此时,您可以访问所有 ID、电子邮件、电话号码,甚至用户密码的哈希版本。

于 2017-04-24T00:06:47.163 回答