Raz*_*zie 638 asp.net asp.net-mvc forms-authentication iprincipal iidentity
我需要做一些相当简单的事情:在我的ASP.NET MVC应用程序中,我想设置一个自定义IIdentity/IPrincipal.哪个更容易/更合适.我想要扩展默认值,以便我可以调用类似User.Identity.Id
和User.Identity.Role
.没什么特别的,只是一些额外的属性.
我已经阅读了大量的文章和问题,但我觉得我做得比实际更难.我觉得这很容易.如果用户登录,我想设置自定义IIdentity.所以我想,我将Application_PostAuthenticateRequest
在我的global.asax中实现.但是,每次请求都会调用它,并且我不希望在每个请求上调用数据库,这些请求将从数据库请求所有数据并放入自定义IPrincipal对象.这似乎也是非常不必要,缓慢,并且在错误的地方(在那里进行数据库调用)但我可能是错的.或者数据来自何处?
所以我想,每当用户登录时,我都可以在我的会话中添加一些必要的变量,我将其添加到Application_PostAuthenticateRequest
事件处理程序中的自定义IIdentity中.但是,我Context.Session
在null
那里,所以这也不是要走的路.
我已经在这一天工作了一天,我觉得我错过了什么.这不应该太难,对吧?我也对此附带的所有(半)相关内容感到困惑.MembershipProvider
,MembershipUser
,RoleProvider
,ProfileProvider
,IPrincipal
,IIdentity
,FormsAuthentication
....我是唯一一个谁发现这一切非常混乱?
如果有人能告诉我一个简单,优雅,高效的解决方案,可以在IIdentity上存储一些额外的数据而不需要额外的模糊...这将是非常棒的!我知道在SO上有类似的问题,但如果我需要的答案就在那里,我一定会忽略.
Luk*_*keP 825
这是我如何做到的.
我决定使用IPrincipal而不是IIdentity,因为这意味着我不必同时实现IIdentity和IPrincipal.
创建界面
interface ICustomPrincipal : IPrincipal
{
int Id { get; set; }
string FirstName { get; set; }
string LastName { get; set; }
}
Run Code Online (Sandbox Code Playgroud)CustomPrincipal
public class CustomPrincipal : ICustomPrincipal
{
public IIdentity Identity { get; private set; }
public bool IsInRole(string role) { return false; }
public CustomPrincipal(string email)
{
this.Identity = new GenericIdentity(email);
}
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}
Run Code Online (Sandbox Code Playgroud)CustomPrincipalSerializeModel - 用于将自定义信息序列化到FormsAuthenticationTicket对象中的userdata字段.
public class CustomPrincipalSerializeModel
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}
Run Code Online (Sandbox Code Playgroud)LogIn方法 - 使用自定义信息设置cookie
if (Membership.ValidateUser(viewModel.Email, viewModel.Password))
{
var user = userRepository.Users.Where(u => u.Email == viewModel.Email).First();
CustomPrincipalSerializeModel serializeModel = new CustomPrincipalSerializeModel();
serializeModel.Id = user.Id;
serializeModel.FirstName = user.FirstName;
serializeModel.LastName = user.LastName;
JavaScriptSerializer serializer = new JavaScriptSerializer();
string userData = serializer.Serialize(serializeModel);
FormsAuthenticationTicket authTicket = new FormsAuthenticationTicket(
1,
viewModel.Email,
DateTime.Now,
DateTime.Now.AddMinutes(15),
false,
userData);
string encTicket = FormsAuthentication.Encrypt(authTicket);
HttpCookie faCookie = new HttpCookie(FormsAuthentication.FormsCookieName, encTicket);
Response.Cookies.Add(faCookie);
return RedirectToAction("Index", "Home");
}
Run Code Online (Sandbox Code Playgroud)Global.asax.cs - 读取cookie并替换HttpContext.User对象,这是通过重写PostAuthenticateRequest来完成的.
protected void Application_PostAuthenticateRequest(Object sender, EventArgs e)
{
HttpCookie authCookie = Request.Cookies[FormsAuthentication.FormsCookieName];
if (authCookie != null)
{
FormsAuthenticationTicket authTicket = FormsAuthentication.Decrypt(authCookie.Value);
JavaScriptSerializer serializer = new JavaScriptSerializer();
CustomPrincipalSerializeModel serializeModel = serializer.Deserialize<CustomPrincipalSerializeModel>(authTicket.UserData);
CustomPrincipal newUser = new CustomPrincipal(authTicket.Name);
newUser.Id = serializeModel.Id;
newUser.FirstName = serializeModel.FirstName;
newUser.LastName = serializeModel.LastName;
HttpContext.Current.User = newUser;
}
}
Run Code Online (Sandbox Code Playgroud)访问Razor视图
@((User as CustomPrincipal).Id)
@((User as CustomPrincipal).FirstName)
@((User as CustomPrincipal).LastName)
Run Code Online (Sandbox Code Playgroud)并在代码中:
(User as CustomPrincipal).Id
(User as CustomPrincipal).FirstName
(User as CustomPrincipal).LastName
Run Code Online (Sandbox Code Playgroud)
我认为代码是不言自明的.如果不是,请告诉我.
此外,为了使访问更加容易,您可以创建一个基本控制器并覆盖返回的User对象(HttpContext.User):
public class BaseController : Controller
{
protected virtual new CustomPrincipal User
{
get { return HttpContext.User as CustomPrincipal; }
}
}
Run Code Online (Sandbox Code Playgroud)
然后,对于每个控制器:
public class AccountController : BaseController
{
// ...
}
Run Code Online (Sandbox Code Playgroud)
这将允许您访问代码中的自定义字段,如下所示:
User.Id
User.FirstName
User.LastName
Run Code Online (Sandbox Code Playgroud)
但这在视图内部无效.为此,您需要创建自定义WebViewPage实现:
public abstract class BaseViewPage : WebViewPage
{
public virtual new CustomPrincipal User
{
get { return base.User as CustomPrincipal; }
}
}
public abstract class BaseViewPage<TModel> : WebViewPage<TModel>
{
public virtual new CustomPrincipal User
{
get { return base.User as CustomPrincipal; }
}
}
Run Code Online (Sandbox Code Playgroud)
使其成为Views/web.config中的默认页面类型:
<pages pageBaseType="Your.Namespace.BaseViewPage">
<namespaces>
<add namespace="System.Web.Mvc" />
<add namespace="System.Web.Mvc.Ajax" />
<add namespace="System.Web.Mvc.Html" />
<add namespace="System.Web.Routing" />
</namespaces>
</pages>
Run Code Online (Sandbox Code Playgroud)
在视图中,您可以像这样访问它:
@User.FirstName
@User.LastName
Run Code Online (Sandbox Code Playgroud)
Joh*_*sch 107
我不能直接代表ASP.NET MVC,但对于ASP.NET Web Forms,诀窍是FormsAuthenticationTicket
在用户通过身份验证后创建并加密到cookie中.这样,您只需要调用一次数据库(或AD或用于执行身份验证的任何内容),并且每个后续请求将根据存储在cookie中的票证进行身份验证.
一篇很好的文章:http://www.ondotnet.com/pub/a/dotnet/2004/02/02/effectiveformsauth.html(链接断开)
编辑:
由于上面的链接被破坏,我会在上面的答案中推荐LukeP的解决方案:https://stackoverflow.com/a/10524305 - 我还建议将接受的答案改为那个.
编辑2: 断开链接的替代方案:https://web.archive.org/web/20120422011422/http : //ondotnet.com/pub/a/dotnet/2004/02/02/effectiveformsauth.html
Sri*_*ake 63
这是完成工作的一个例子.通过查看一些数据存储(假设您的用户数据库)来设置bool isValid.UserID只是我维护的ID.您可以向用户数据添加电子邮件地址等附加信息.
protected void btnLogin_Click(object sender, EventArgs e)
{
//Hard Coded for the moment
bool isValid=true;
if (isValid)
{
string userData = String.Empty;
userData = userData + "UserID=" + userID;
FormsAuthenticationTicket ticket = new FormsAuthenticationTicket(1, username, DateTime.Now, DateTime.Now.AddMinutes(30), true, userData);
string encTicket = FormsAuthentication.Encrypt(ticket);
HttpCookie faCookie = new HttpCookie(FormsAuthentication.FormsCookieName, encTicket);
Response.Cookies.Add(faCookie);
//And send the user where they were heading
string redirectUrl = FormsAuthentication.GetRedirectUrl(username, false);
Response.Redirect(redirectUrl);
}
}
Run Code Online (Sandbox Code Playgroud)
在golbal asax中添加以下代码以检索您的信息
protected void Application_AuthenticateRequest(Object sender, EventArgs e)
{
HttpCookie authCookie = Request.Cookies[
FormsAuthentication.FormsCookieName];
if(authCookie != null)
{
//Extract the forms authentication cookie
FormsAuthenticationTicket authTicket =
FormsAuthentication.Decrypt(authCookie.Value);
// Create an Identity object
//CustomIdentity implements System.Web.Security.IIdentity
CustomIdentity id = GetUserIdentity(authTicket.Name);
//CustomPrincipal implements System.Web.Security.IPrincipal
CustomPrincipal newUser = new CustomPrincipal();
Context.User = newUser;
}
}
Run Code Online (Sandbox Code Playgroud)
稍后当您要使用这些信息时,您可以按如下方式访问自定义主体.
(CustomPrincipal)this.User
or
(CustomPrincipal)this.Context.User
Run Code Online (Sandbox Code Playgroud)
这将允许您访问自定义用户信息.
bra*_*ter 15
MVC为您提供了从控制器类中挂起的OnAuthorize方法.或者,您可以使用自定义操作筛选器来执行授权.MVC让它变得非常简单.我在这里发布了一篇关于此的博文.http://www.bradygaster.com/post/custom-authentication-with-mvc-3.0
Bas*_*ase 10
如果您需要将某些方法连接到@User以在视图中使用,这是一个解决方案.对于任何严肃的会员制定制都没有解决方案,但如果单独的观点需要原始问题那么这也许就足够了.下面用于检查从authorizefilter返回的变量,用于验证是否有某些链接无法呈现(不适用于任何类型的授权逻辑或访问授权).
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Security.Principal;
namespace SomeSite.Web.Helpers
{
public static class UserHelpers
{
public static bool IsEditor(this IPrincipal user)
{
return null; //Do some stuff
}
}
}
Run Code Online (Sandbox Code Playgroud)
然后在web.config区域添加一个引用,并在视图中调用它.
@User.IsEditor()
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
205458 次 |
最近记录: |