我正在使用Entity Framework 5 Database First方法开发MVC 5 Web应用程序。我正在使用OWIN进行用户身份验证。下面显示了我的帐户控制器中的登录方法。
public ActionResult Login(LoginViewModel model, string returnUrl)
{
if (ModelState.IsValid)
{
var user = _AccountService.VerifyPassword(model.UserName, model.Password, false);
if (user != null)
{
var identity = new ClaimsIdentity(new[] { new Claim(ClaimTypes.Name, model.UserName), }, DefaultAuthenticationTypes.ApplicationCookie, ClaimTypes.Name, ClaimTypes.Role);
identity.AddClaim(new Claim(ClaimTypes.Role, "guest"));
identity.AddClaim(new Claim(ClaimTypes.GivenName, "A Person"));
identity.AddClaim(new Claim(ClaimTypes.Sid, user.userID)); //OK to store userID here?
AuthenticationManager.SignIn(new AuthenticationProperties
{
IsPersistent = model.RememberMe
}, identity);
return RedirectToAction("Index", "MyDashboard");
}
else
{
ModelState.AddModelError("", "Invalid username or password.");
}
}
// If we got this far, something failed, redisplay form
return View(model);
}
如您所见,我正在创建ClaimsIdentity并向其中添加多个声明,然后使用AuthenticationManager将其传递给OWIN来执行登录。
我遇到的问题是我不确定如何在控制器或Razor视图中的其余应用程序中访问声明。
我尝试了本教程中列出的方法
例如,我在我的Controller代码中尝试过此操作,以尝试访问传递到Claims中的值,但是user.Claims等于null
var ctx = HttpContext.GetOwinContext();
ClaimsPrincipal user = ctx.Authentication.User;
IEnumerable<Claim> claims = user.Claims;
也许我在这里错过了一些东西。
更新
根据达林的回答,我添加了他的代码,但是仍然看不到对索赔的访问。请查看下面的屏幕截图,显示将鼠标悬停在identity.Claims上时看到的内容。