gpt4 book ai didi

asp.net - 在哪里创建自定义 IPrincipal 对象?

转载 作者:行者123 更新时间:2023-12-02 21:13:24 26 4
gpt4 key购买 nike

我正在 global.asax 中使用 Application_PostAuthenticateRequest 事件来创建自定义 IPrincipal 对象

void Application_PostAuthenticateRequest(object sender, EventArgs args)
{
if (Context.User.Identity.IsAuthenticated == true)
if (Context.User.Identity.AuthenticationType == "Forms")
{
Context.User = new CustomPrincipal(Context.User);
Thread.CurrentPrincipal = Context.User;
}
}

在我的应用程序中使用,我想获取有关登录用户的更多信息。我以为它会在用户进行身份验证时被调用一次,但我注意到它会在同一登录用户的每个页面请求上调用几次。我发现即使从 AppThemes 请求图像也会调用这个方法!

我应该在哪里创建该对象以避免为每个用户多次调用此方法?

最佳答案

我找到了问题的答案。

在loggin_in事件中,我应该保存身份验证cookie(我可以将以后需要的所有信息存储在UserData属性的customPrincipal中),并且在Application_PostAuthenticateRequest中,我应该从该cookie创建CustomPrincipal。这样这个事件会触发每个请求,但我不会访问数据库 - 我从 cookie 读取数据。

我关注了http://www.ondotnet.com/pub/a/dotnet/2004/02/02/effectiveformsauth.html

就我而言,代码是:

void Application_PostAuthenticateRequest(object sender, EventArgs args)
{
HttpCookie authCookie = Context.Request.Cookies[FormsAuthentication.FormsCookieName];
if (authCookie == null)
return;
FormsAuthenticationTicket authTicket = FormsAuthentication.Decrypt(authCookie.Value);
string[] customData = authTicket.UserData.Split(new Char[] { '|' });

if (Context.User.Identity.IsAuthenticated == true)
{
if (Context.User.Identity.AuthenticationType == "Forms")
{
Context.User = new CustomPrincipal(customData, Context.User);
Thread.CurrentPrincipal = Context.User;
}
}
}

关于asp.net - 在哪里创建自定义 IPrincipal 对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5819771/

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