using Bootstrap.Security; using Longbow.Caching; using Longbow.Caching.Configuration; using System; using System.Collections.Generic; using System.Linq; namespace Bootstrap.DataAccess { internal static class CacheCleanUtility { /// /// /// /// /// /// /// /// /// /// /// internal static void ClearCache(string roleIds = null, string userIds = null, string groupIds = null, string menuIds = null, string dictIds = null, string logIds = null, string notifyIds = null, string exceptionIds = null) { var cacheKeys = new List(); if (roleIds != null) { roleIds.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries).ToList().ForEach(id => { cacheKeys.Add(string.Format("{0}-{1}", UserHelper.RetrieveUsersByRoleIdDataKey, id)); cacheKeys.Add(string.Format("{0}-{1}", GroupHelper.RetrieveGroupsByRoleIdDataKey, id)); }); cacheKeys.Add(RoleHelper.RetrieveRolesDataKey + "*"); cacheKeys.Add(BootstrapMenu.RetrieveMenusDataKey + "*"); } if (userIds != null) { userIds.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries).ToList().ForEach(id => { cacheKeys.Add(string.Format("{0}-{1}", RoleHelper.RetrieveRolesByUserIdDataKey, id)); cacheKeys.Add(string.Format("{0}-{1}", GroupHelper.RetrieveGroupsByUserIdDataKey, id)); cacheKeys.Add(BootstrapMenu.RetrieveMenusDataKey + "*"); }); cacheKeys.Add(UserHelper.RetrieveNewUsersDataKey + "*"); cacheKeys.Add(BootstrapUser.RetrieveUsersDataKey + "*"); } if (groupIds != null) { groupIds.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries).ToList().ForEach(id => { cacheKeys.Add(string.Format("{0}-{1}", RoleHelper.RetrieveRolesByGroupIdDataKey, id)); cacheKeys.Add(string.Format("{0}-{1}", UserHelper.RetrieveUsersByGroupIdDataKey, id)); }); cacheKeys.Add(GroupHelper.RetrieveGroupsDataKey + "*"); cacheKeys.Add(BootstrapMenu.RetrieveMenusDataKey + "*"); } if (menuIds != null) { menuIds.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries).ToList().ForEach(id => { cacheKeys.Add(string.Format("{0}-{1}", RoleHelper.RetrieveRolesByMenuIdDataKey, id)); }); cacheKeys.Add(BootstrapMenu.RetrieveMenusDataKey + "*"); } if (dictIds != null) { cacheKeys.Add(BootstrapDict.RetrieveDictsDataKey + "*"); } if (logIds != null) { cacheKeys.Add(LogHelper.RetrieveLogsDataKey + "*"); } if (notifyIds != null) { cacheKeys.Add(NotificationHelper.RetrieveNotificationsDataKey + "*"); } if (exceptionIds != null) { cacheKeys.Add(ExceptionHelper.RetrieveExceptionsDataKey + "*"); } CacheManager.Clear(k => cacheKeys.Any(key => key.EndsWith("*") ? k.Contains(key.TrimEnd('*')) : key == k)); CacheListSection.ClearCache(cacheKeys); } } }