Некоторое тестирование показало, что моя проблема заключается в том, что вызов:
Roles.IsUserInRole(groupName)
обращается к методу GetRolesForUser
в RoleProvider
, который получает сведения о каждой роли, членом которой является пользователь.
Но звонит:
Roles.Provider.IsUserInRole(groupName)
определяет, входит ли пользователь в группу - без получения сведений о каждой роли, в которой он находится.
Странно, но похоже, что использование Roles.Provider.IsUserInRole
решит мою проблему.
* ОБНОВЛЕНИЕ *
Оказывается, это всего лишь частичный обходной путь; если я использую обязательные проверки разрешений или «разрешить» и «запретить» в web.comfig, то WindowsTokenRoleProvider
все еще идет, а медленно получает сведения о каждой группе, членом которой является пользователь: o (
Так что мой вопрос все еще стоит ...
* ОБНОВЛЕНИЕ *
Я решил эту проблему, создав класс, который выходит из WindowsTokenRoleProvider и переопределил GetRolesForUser
, поэтому он проверяет только членство в ролях, указанных в конфигурации. Также включает кеширование:
/// <summary>
/// Retrieve the list of roles (Windows Groups) that a user is a member of
/// </summary>
/// <remarks>
/// Note that we are checking only against each system role because calling:
/// base.GetRolesForUser(username);
/// Is _very_ slow if the user is in a lot of AD groups
/// </remarks>
/// <param name="username">The user to check membership for</param>
/// <returns>String array containing the names of the roles the user is a member of</returns>
public override string[] GetRolesForUser(string username)
{
// Will contain the list of roles that the user is a member of
List<string> roles = null;
// Create unique cache key for the user
string key = String.Concat(username, ":", base.ApplicationName);
// Get cache for current session
Cache cache = HttpContext.Current.Cache;
// Obtain cached roles for the user
if (cache[key] != null)
{
roles = new List<string>(cache[key] as string[]);
}
// Was the list of roles for the user in the cache?
if (roles == null)
{
roles = new List<string>();
// For each system role, determine if the user is a member of that role
foreach (SystemRoleElement role in WebConfigSection.Settings.SystemRoles)
{
if (base.IsUserInRole(username, role.Name))
{
roles.Add(role.Name);
}
}
// Cache the roles for 1 hour
cache.Insert(key, roles.ToArray(), null, DateTime.Now.AddHours(1), Cache.NoSlidingExpiration);
}
// Return list of roles for the user
return roles.ToArray();
}