/* * * (c) Copyright Ascensio System Limited 2010-2018 * * This program is freeware. You can redistribute it and/or modify it under the terms of the GNU * General Public License (GPL) version 3 as published by the Free Software Foundation (https://www.gnu.org/copyleft/gpl.html). * In accordance with Section 7(a) of the GNU GPL its Section 15 shall be amended to the effect that * Ascensio System SIA expressly excludes the warranty of non-infringement of any third-party rights. * * THIS PROGRAM IS DISTRIBUTED WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR * FITNESS FOR A PARTICULAR PURPOSE. For more details, see GNU GPL at https://www.gnu.org/copyleft/gpl.html * * You can contact Ascensio System SIA by email at sales@onlyoffice.com * * The interactive user interfaces in modified source and object code versions of ONLYOFFICE must display * Appropriate Legal Notices, as required under Section 5 of the GNU GPL version 3. * * Pursuant to Section 7 § 3(b) of the GNU GPL you must retain the original ONLYOFFICE logo which contains * relevant author attributions when distributing the software. If the display of the logo in its graphic * form is not reasonably feasible for technical reasons, you must include the words "Powered by ONLYOFFICE" * in every copy of the program you distribute. * Pursuant to Section 7 § 3(e) we decline to grant you any rights under trademark law for use of our trademarks. * */ namespace ASC.Core.Caching; [Singletone] public class UserServiceCache { public const string Users = "users"; private const string Groups = "groups"; public const string Refs = "refs"; internal readonly ICache Cache; internal readonly CoreBaseSettings CoreBaseSettings; internal readonly ICacheNotify CacheUserInfoItem; internal readonly ICacheNotify CacheUserPhotoItem; internal readonly ICacheNotify CacheGroupCacheItem; internal readonly ICacheNotify CacheUserGroupRefItem; public UserServiceCache( CoreBaseSettings coreBaseSettings, ICacheNotify cacheUserInfoItem, ICacheNotify cacheUserPhotoItem, ICacheNotify cacheGroupCacheItem, ICacheNotify cacheUserGroupRefItem, ICache cache) { Cache = cache; CoreBaseSettings = coreBaseSettings; CacheUserInfoItem = cacheUserInfoItem; CacheUserPhotoItem = cacheUserPhotoItem; CacheGroupCacheItem = cacheGroupCacheItem; CacheUserGroupRefItem = cacheUserGroupRefItem; cacheUserInfoItem.Subscribe((u) => InvalidateCache(u), ASC.Common.Caching.CacheNotifyAction.Any); cacheUserPhotoItem.Subscribe((p) => Cache.Remove(p.Key), ASC.Common.Caching.CacheNotifyAction.Remove); cacheGroupCacheItem.Subscribe((g) => InvalidateCache(), ASC.Common.Caching.CacheNotifyAction.Any); cacheUserGroupRefItem.Subscribe((r) => UpdateUserGroupRefCache(r, true), ASC.Common.Caching.CacheNotifyAction.Remove); cacheUserGroupRefItem.Subscribe((r) => UpdateUserGroupRefCache(r, false), ASC.Common.Caching.CacheNotifyAction.InsertOrUpdate); } public void InvalidateCache() { InvalidateCache(null); } private void InvalidateCache(UserInfoCacheItem userInfo) { if (userInfo != null) { var key = GetUserCacheKey(userInfo.Tenant, new Guid(userInfo.Id)); Cache.Remove(key); } } private void UpdateUserGroupRefCache(UserGroupRef r, bool remove) { var key = GetRefCacheKey(r.Tenant); var refs = Cache.Get(key); if (!remove && refs != null) { lock (refs) { refs[r.CreateKey()] = r; } } else { InvalidateCache(); } } public static string GetUserPhotoCacheKey(int tenant, Guid userId) { return tenant.ToString() + "userphoto" + userId.ToString(); } public static string GetGroupCacheKey(int tenant) { return tenant.ToString() + Groups; } public static string GetGroupCacheKey(int tenant, Guid groupId) { return tenant.ToString() + Groups + groupId; } public static string GetRefCacheKey(int tenant) { return tenant.ToString() + Refs; } public static string GetRefCacheKey(int tenant, Guid groupId, UserGroupRefType refType) { return tenant.ToString() + groupId + (int)refType; } public static string GetUserCacheKey(int tenant) { return tenant.ToString() + Users; } public static string GetUserCacheKey(int tenant, Guid userId) { return tenant.ToString() + Users + userId; } } [Scope] class ConfigureCachedUserService : IConfigureNamedOptions { internal readonly IOptionsSnapshot Service; internal readonly UserServiceCache UserServiceCache; internal readonly CoreBaseSettings CoreBaseSettings; public ConfigureCachedUserService( IOptionsSnapshot service, UserServiceCache userServiceCache, CoreBaseSettings coreBaseSettings) { Service = service; UserServiceCache = userServiceCache; CoreBaseSettings = coreBaseSettings; } public void Configure(string name, CachedUserService options) { Configure(options); options.Service = Service.Get(name); } public void Configure(CachedUserService options) { options.Service = Service.Value; options.CoreBaseSettings = CoreBaseSettings; options.UserServiceCache = UserServiceCache; options.Cache = UserServiceCache.Cache; options.CacheUserInfoItem = UserServiceCache.CacheUserInfoItem; options.CacheUserPhotoItem = UserServiceCache.CacheUserPhotoItem; options.CacheGroupCacheItem = UserServiceCache.CacheGroupCacheItem; options.CacheUserGroupRefItem = UserServiceCache.CacheUserGroupRefItem; } } [Scope] public class CachedUserService : IUserService, ICachedService { internal IUserService Service; internal ICache Cache; internal TrustInterval TrustInterval; private readonly TimeSpan _cacheExpiration; private readonly TimeSpan _photoExpiration; internal CoreBaseSettings CoreBaseSettings; internal UserServiceCache UserServiceCache; internal ICacheNotify CacheUserInfoItem; internal ICacheNotify CacheUserPhotoItem; internal ICacheNotify CacheGroupCacheItem; internal ICacheNotify CacheUserGroupRefItem; public CachedUserService() { _cacheExpiration = TimeSpan.FromMinutes(20); _photoExpiration = TimeSpan.FromMinutes(10); } public CachedUserService( EFUserService service, CoreBaseSettings coreBaseSettings, UserServiceCache userServiceCache ) : this() { Service = service ?? throw new ArgumentNullException(nameof(service)); CoreBaseSettings = coreBaseSettings; UserServiceCache = userServiceCache; Cache = userServiceCache.Cache; CacheUserInfoItem = userServiceCache.CacheUserInfoItem; CacheUserPhotoItem = userServiceCache.CacheUserPhotoItem; CacheGroupCacheItem = userServiceCache.CacheGroupCacheItem; CacheUserGroupRefItem = userServiceCache.CacheUserGroupRefItem; } public IQueryable GetUsers( int tenant, bool isAdmin, EmployeeStatus? employeeStatus, List> includeGroups, List excludeGroups, EmployeeActivationStatus? activationStatus, string text, string sortBy, bool sortOrderAsc, long limit, long offset, out int total, out int count) { return Service.GetUsers(tenant, isAdmin, employeeStatus, includeGroups, excludeGroups, activationStatus, text, sortBy, sortOrderAsc, limit, offset, out total, out count); } public UserInfo GetUser(int tenant, Guid id) { var key = UserServiceCache.GetUserCacheKey(tenant, id); var user = Cache.Get(key); if (user == null) { user = Service.GetUser(tenant, id); if (user != null) { Cache.Insert(key, user, _cacheExpiration); } } return user; } public UserInfo GetUser(int tenant, string email) { return Service.GetUser(tenant, email); } public UserInfo GetUserByUserName(int tenant, string userName) { return Service.GetUserByUserName(tenant, userName); } public UserInfo GetUserByPasswordHash(int tenant, string login, string passwordHash) { return Service.GetUserByPasswordHash(tenant, login, passwordHash); } public IEnumerable GetUsersAllTenants(IEnumerable userIds) { return Service.GetUsersAllTenants(userIds); } public UserInfo SaveUser(int tenant, UserInfo user) { user = Service.SaveUser(tenant, user); CacheUserInfoItem.Publish(new UserInfoCacheItem { Id = user.Id.ToString(), Tenant = tenant }, CacheNotifyAction.Any); return user; } public void RemoveUser(int tenant, Guid id) { Service.RemoveUser(tenant, id); CacheUserInfoItem.Publish(new UserInfoCacheItem { Tenant = tenant, Id = id.ToString() }, CacheNotifyAction.Any); } public byte[] GetUserPhoto(int tenant, Guid id) { var photo = Cache.Get(UserServiceCache.GetUserPhotoCacheKey(tenant, id)); if (photo == null) { photo = Service.GetUserPhoto(tenant, id); Cache.Insert(UserServiceCache.GetUserPhotoCacheKey(tenant, id), photo, _photoExpiration); } return photo; } public void SetUserPhoto(int tenant, Guid id, byte[] photo) { Service.SetUserPhoto(tenant, id, photo); CacheUserPhotoItem.Publish(new UserPhotoCacheItem { Key = UserServiceCache.GetUserPhotoCacheKey(tenant, id) }, ASC.Common.Caching.CacheNotifyAction.Remove); } public DateTime GetUserPasswordStamp(int tenant, Guid id) { return Service.GetUserPasswordStamp(tenant, id); } public void SetUserPasswordHash(int tenant, Guid id, string passwordHash) { Service.SetUserPasswordHash(tenant, id, passwordHash); } public Group GetGroup(int tenant, Guid id) { var key = UserServiceCache.GetGroupCacheKey(tenant, id); var group = Cache.Get(key); if (group == null) { group = Service.GetGroup(tenant, id); if (group != null) { Cache.Insert(key, group, _cacheExpiration); } } return group; } public Group SaveGroup(int tenant, Group group) { group = Service.SaveGroup(tenant, group); CacheGroupCacheItem.Publish(new GroupCacheItem { Id = group.Id.ToString() }, CacheNotifyAction.Any); return group; } public void RemoveGroup(int tenant, Guid id) { Service.RemoveGroup(tenant, id); CacheGroupCacheItem.Publish(new GroupCacheItem { Id = id.ToString() }, CacheNotifyAction.Any); } public IDictionary GetUserGroupRefs(int tenant) { var key = UserServiceCache.GetRefCacheKey(tenant); if (!(Cache.Get(key) is IDictionary refs)) { refs = Service.GetUserGroupRefs(tenant); Cache.Insert(key, new UserGroupRefStore(refs), _cacheExpiration); } return refs; } public UserGroupRef GetUserGroupRef(int tenant, Guid groupId, UserGroupRefType refType) { var key = UserServiceCache.GetRefCacheKey(tenant, groupId, refType); var groupRef = Cache.Get(key); if (groupRef == null) { groupRef = Service.GetUserGroupRef(tenant, groupId, refType); if (groupRef != null) { Cache.Insert(key, groupRef, _cacheExpiration); } } return groupRef; } public UserGroupRef SaveUserGroupRef(int tenant, UserGroupRef r) { r = Service.SaveUserGroupRef(tenant, r); CacheUserGroupRefItem.Publish(r, CacheNotifyAction.InsertOrUpdate); return r; } public void RemoveUserGroupRef(int tenant, Guid userId, Guid groupId, UserGroupRefType refType) { Service.RemoveUserGroupRef(tenant, userId, groupId, refType); var r = new UserGroupRef(userId, groupId, refType) { Tenant = tenant }; CacheUserGroupRefItem.Publish(r, CacheNotifyAction.Remove); } public IEnumerable GetUsers(int tenant) { var key = UserServiceCache.GetUserCacheKey(tenant); var users = Cache.Get>(key); if (users == null) { users = Service.GetUsers(tenant); Cache.Insert(key, users, _cacheExpiration); } return users; } public IEnumerable GetGroups(int tenant) { var key = UserServiceCache.GetGroupCacheKey(tenant); var groups = Cache.Get>(key); if (groups == null) { groups = Service.GetGroups(tenant); Cache.Insert(key, groups, _cacheExpiration); } return groups; } public void InvalidateCache() { UserServiceCache.InvalidateCache(); } public UserInfo GetUser(int tenant, Guid id, Expression> exp) { if (exp == null) { return GetUser(tenant, id); } return Service.GetUser(tenant, id, exp); } }