DocSpace-client/common/ASC.FederatedLogin/AccountLinker.cs

186 lines
6.9 KiB
C#
Raw Normal View History

2022-03-15 18:00:53 +00:00
// (c) Copyright Ascensio System SIA 2010-2022
//
// This program is a free software product.
// You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL 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 details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
//
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
//
// The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
//
// Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks.
//
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
namespace ASC.FederatedLogin;
[Singletone]
public class AccountLinkerStorage
2019-06-06 13:34:46 +00:00
{
private readonly ICache _cache;
private readonly ICacheNotify<LinkerCacheItem> _notify;
public AccountLinkerStorage(ICacheNotify<LinkerCacheItem> notify, ICache cache)
2019-10-11 15:03:03 +00:00
{
_cache = cache;
_notify = notify;
notify.Subscribe((c) => cache.Remove(c.Obj), CacheNotifyAction.Remove);
}
2019-10-11 15:03:03 +00:00
public void RemoveFromCache(string obj)
{
_notify.Publish(new LinkerCacheItem { Obj = obj }, CacheNotifyAction.Remove);
}
2019-10-11 15:03:03 +00:00
public List<LoginProfile> GetFromCache(string obj, Func<string, List<LoginProfile>> fromDb)
{
var profiles = _cache.Get<List<LoginProfile>>(obj);
if (profiles == null)
2019-10-11 15:03:03 +00:00
{
profiles = fromDb(obj);
_cache.Insert(obj, profiles, DateTime.UtcNow + TimeSpan.FromMinutes(10));
2019-10-11 15:03:03 +00:00
}
return profiles;
2019-10-11 15:03:03 +00:00
}
}
2020-10-22 17:57:18 +00:00
[Scope]
2022-07-28 12:29:03 +00:00
public class AccountLinker
{
private readonly Signature _signature;
private readonly InstanceCrypto _instanceCrypto;
private readonly AccountLinkerStorage _accountLinkerStorage;
2022-07-28 12:29:03 +00:00
private readonly IDbContextFactory<AccountLinkContext> _accountLinkContextManager;
2022-07-28 18:00:49 +00:00
public AccountLinker(Signature signature, InstanceCrypto instanceCrypto, AccountLinkerStorage accountLinkerStorage, IDbContextFactory<AccountLinkContext> accountLinkContextManager)
{
_signature = signature;
_instanceCrypto = instanceCrypto;
_accountLinkerStorage = accountLinkerStorage;
_accountLinkContextManager = accountLinkContextManager;
}
public IEnumerable<string> GetLinkedObjects(string id, string provider)
{
2022-07-28 12:29:03 +00:00
return GetLinkedObjects(new LoginProfile(_signature, _instanceCrypto) { Id = id, Provider = provider });
}
2019-12-04 10:39:18 +00:00
public IEnumerable<string> GetLinkedObjects(LoginProfile profile)
{
return GetLinkedObjectsByHashId(profile.HashId);
2019-12-04 10:39:18 +00:00
}
public IEnumerable<string> GetLinkedObjectsByHashId(string hashid)
2019-12-04 10:39:18 +00:00
{
2022-07-28 12:29:03 +00:00
using var accountLinkContext = _accountLinkContextManager.CreateDbContext();
return accountLinkContext.AccountLinks
.Where(r => r.UId == hashid)
.Where(r => r.Provider != string.Empty)
.Select(r => r.Id)
.ToList();
}
2019-12-17 13:01:59 +00:00
public IEnumerable<LoginProfile> GetLinkedProfiles(string obj, string provider)
{
return GetLinkedProfiles(obj).Where(profile => profile.Provider.Equals(provider));
}
2019-06-06 13:34:46 +00:00
public IEnumerable<LoginProfile> GetLinkedProfiles(string obj)
{
2022-07-28 12:29:03 +00:00
return _accountLinkerStorage.GetFromCache(obj, GetLinkedProfilesFromDB);
}
2019-06-06 13:34:46 +00:00
public void AddLink(string obj, LoginProfile profile)
{
var accountLink = new AccountLinks
2019-06-06 13:34:46 +00:00
{
Id = obj,
UId = profile.HashId,
Provider = profile.Provider,
Profile = profile.ToSerializedString(),
Linked = DateTime.UtcNow
};
2019-06-06 13:34:46 +00:00
2022-07-28 12:29:03 +00:00
using var accountLinkContext = _accountLinkContextManager.CreateDbContext();
accountLinkContext.AddOrUpdate(r => r.AccountLinks, accountLink);
accountLinkContext.SaveChanges();
2019-06-06 13:34:46 +00:00
2022-07-28 12:29:03 +00:00
_accountLinkerStorage.RemoveFromCache(obj);
}
2019-06-06 13:34:46 +00:00
public void AddLink(string obj, string id, string provider)
{
2022-07-28 12:29:03 +00:00
AddLink(obj, new LoginProfile(_signature, _instanceCrypto) { Id = id, Provider = provider });
}
2019-06-06 13:34:46 +00:00
public void RemoveLink(string obj, string id, string provider)
{
2022-07-28 12:29:03 +00:00
RemoveLink(obj, new LoginProfile(_signature, _instanceCrypto) { Id = id, Provider = provider });
}
2019-06-06 13:34:46 +00:00
public void RemoveLink(string obj, LoginProfile profile)
{
RemoveProvider(obj, hashId: profile.HashId);
}
2019-06-06 13:34:46 +00:00
public void RemoveProvider(string obj, string provider = null, string hashId = null)
{
2022-07-28 12:29:03 +00:00
using var accountLinkContext = _accountLinkContextManager.CreateDbContext();
var strategy = accountLinkContext.Database.CreateExecutionStrategy();
strategy.Execute(() =>
2019-06-06 13:34:46 +00:00
{
2022-07-28 12:29:03 +00:00
using var accountLinkContext = _accountLinkContextManager.CreateDbContext();
using var tr = accountLinkContext.Database.BeginTransaction();
2022-07-28 12:29:03 +00:00
var accountLinkQuery = accountLinkContext.AccountLinks
.Where(r => r.Id == obj);
if (!string.IsNullOrEmpty(provider))
{
accountLinkQuery = accountLinkQuery.Where(r => r.Provider == provider);
}
if (!string.IsNullOrEmpty(hashId))
{
accountLinkQuery = accountLinkQuery.Where(r => r.UId == hashId);
}
var accountLink = accountLinkQuery.FirstOrDefault();
2022-07-28 12:29:03 +00:00
accountLinkContext.AccountLinks.Remove(accountLink);
accountLinkContext.SaveChanges();
tr.Commit();
});
2019-06-06 13:34:46 +00:00
2019-10-21 12:52:16 +00:00
2022-07-28 12:29:03 +00:00
_accountLinkerStorage.RemoveFromCache(obj);
}
private List<LoginProfile> GetLinkedProfilesFromDB(string obj)
{
2022-07-28 12:29:03 +00:00
using var accountLinkContext = _accountLinkContextManager.CreateDbContext();
//Retrieve by uinque id
2022-07-28 12:29:03 +00:00
return accountLinkContext.AccountLinks
.Where(r => r.Id == obj)
.Select(r => r.Profile)
.ToList()
2022-07-28 12:29:03 +00:00
.ConvertAll(x => LoginProfile.CreateFromSerializedString(_signature, _instanceCrypto, x));
2019-06-06 13:34:46 +00:00
}
}