如何在Application_AuthenticateRequest中持久化所需的特定于会话的值?
本文关键字:于会话 会话 Application AuthenticateRequest 持久化 | 更新日期: 2023-09-27 17:51:06
我们有一个非常大的web应用程序,有许多页面。这些页面需要我们知道用户的角色,以便正确显示内容。在Application_AuthenticationRequest中,我们有这样的代码:
var id = new GenericIdentity(Request.Headers["ceid"]);
var rp = new MyRoleProvider();
var principal = new GenericPrincipal(id, rp.GetRolesForUser(id.Name));
Context.User = principal;
问题是我们需要使用web服务来获取角色,并且因为每个用户每次访问一个页面都会进行该调用,因此web服务被击中的次数太多了。
理想的解决方案是,如果我们可以将角色存储在会话变量中,但是,Application_AuthenticateRequest中不可用会话。我们考虑在应用程序变量中存储包含所有用户条目的字典,但我希望我们能找到更好的解决方案。
是否有任何方法可以存储当前用户的角色,使其在Application_AuthenticationRequest中可用?我们很有安全意识;cookie是一个有效的选择吗?
我将创建一个静态类来保存所有当前用户的角色列表(基本上扩展了Dictionary的想法):如果给定ID的角色不在列表中,我们将从web服务检索它们。否则,返回存储的角色。
我们需要在一定数量的用户不活动后使数据过期(我们不想在任何时候都将所有用户的所有角色保存在内存中),因此我们将实现自己的过期机制(在我的示例中为20分钟)。
下面是我将如何编写这个类,以及如何使用它:
/// <summary>
/// This is the static class that will hold the roles for all active users (active users
/// are those that have been using the website within the last 20 minutes).
/// </summary>
public static class MyRoles
{
/// <summary>
/// This class holds your roles
/// </summary>
private class Principal
{
private DateTime lastAccess; // Our expiration timer
private System.Security.Principal.GenericPrincipal principal; // Our roles
public Principal(System.Security.Principal.GenericPrincipal principal)
{
this.principal = principal;
this.lastAccess = DateTime.Now;
}
public System.Security.Principal.GenericPrincipal GenericPrincipal
{
get
{
// We reset our timer. It will expire 20 minutes from now.
this.lastAccess = DateTime.Now;
return principal;
}
}
/// <summary>
/// This tells us if a user has been active in the last 20 minutes
/// </summary>
public bool IsValid
{
get
{
// Valid within 20 minutes from last call
return DateTime.Now <= this.lastAccess.AddMinutes(20);
}
}
}
/// <summary>
/// This will hold IDs and related roles
/// </summary>
private static Dictionary<string, Principal> ids = new Dictionary<string, Principal>();
/// <summary>
/// Method to retrieve roles for a given ID
/// </summary>
/// <param name="header">Our ID</param>
/// <returns></returns>
public static System.Security.Principal.GenericPrincipal GetRoles(string header)
{
if (ids.ContainsKey(header) && ids[header].IsValid)
{
// We have roles for this ID
return ids[header].GenericPrincipal;
}
else
{
// We don't have this ID (or it's expired) so get it from the web service
var id = new System.Security.Principal.GenericIdentity(header);
var principal = new System.Security.Principal.GenericPrincipal(id, new MyRoleProvider().GetRolesForUser(id.Name));
// Store roles
ids.Add(header, new Principal(principal));
return principal;
}
}
}
protected void Application_AuthenticateRequest(object sender, EventArgs e)
{
// This is how we use our class
var principal = MyRoles.GetRoles(Request.Headers["ceid"]);
}
请注意,我的示例代码没有考虑到存储GenericPrincipal实例列表所需的内存占用。我的目标仅仅是让您了解如何在不使用Session对象的情况下持久化(和过期)用户数据。
20分钟过期机制可以很容易地链接到Session_End事件,这样它就会在会话结束时过期数据(如果您使用InProc会话)。
还请注意,与会话一样,此解决方案仅适用于单服务器环境。如果你有一个负载均衡的环境(2个或更多的web服务器),你必须将你的数据持久化到数据库中。
我希望这对你有所帮助。如果没有,请告诉我原因,我将尽我最大的努力帮助你:)