DocSpace-client/common/ASC.FederatedLogin/LoginProviders/EncryptionLoginProvider.cs

88 lines
3.2 KiB
C#
Raw Normal View History

2019-06-06 13:34:46 +00:00
/*
*
* (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.
*
*/
using SecurityContext = ASC.Core.SecurityContext;
namespace ASC.Web.Studio.Core
2020-10-19 15:53:15 +00:00
{
[Scope]
2020-02-06 08:56:12 +00:00
public class EncryptionLoginProvider
2020-02-17 08:58:14 +00:00
{
private readonly SecurityContext _securityContext;
private readonly Signature _signature;
private readonly InstanceCrypto _instanceCrypto;
private readonly IOptionsSnapshot<AccountLinker> _snapshot;
2020-02-17 08:58:14 +00:00
public EncryptionLoginProvider(
SecurityContext securityContext,
Signature signature,
InstanceCrypto instanceCrypto,
IOptionsSnapshot<AccountLinker> snapshot)
{
_securityContext = securityContext;
_signature = signature;
_instanceCrypto = instanceCrypto;
_snapshot = snapshot;
2020-02-17 08:58:14 +00:00
}
2020-09-18 07:59:23 +00:00
2020-02-06 08:56:12 +00:00
2020-09-18 07:59:23 +00:00
public void SetKeys(Guid userId, string keys)
{
if (string.IsNullOrEmpty(keys))
{
return;
}
var loginProfile = new LoginProfile(_signature, _instanceCrypto)
2020-02-17 08:58:14 +00:00
{
2020-09-18 07:59:23 +00:00
Provider = ProviderConstants.Encryption,
Name = _instanceCrypto.Encrypt(keys)
2019-08-15 12:04:42 +00:00
};
2019-06-06 13:34:46 +00:00
var linker = _snapshot.Get("webstudio");
2020-09-18 07:59:23 +00:00
linker.AddLink(userId.ToString(), loginProfile);
2019-06-06 13:34:46 +00:00
}
2020-09-18 07:59:23 +00:00
public string GetKeys()
2019-06-06 13:34:46 +00:00
{
return GetKeys(_securityContext.CurrentAccount.ID);
2019-06-06 13:34:46 +00:00
}
2020-09-18 07:59:23 +00:00
public string GetKeys(Guid userId)
2019-06-06 13:34:46 +00:00
{
var linker = _snapshot.Get("webstudio");
2020-01-21 13:40:01 +00:00
var profile = linker.GetLinkedProfiles(userId.ToString(), ProviderConstants.Encryption).FirstOrDefault();
if (profile == null)
{
return null;
}
2020-09-18 07:59:23 +00:00
var keys = _instanceCrypto.Decrypt(profile.Name);
2020-09-18 07:59:23 +00:00
return keys;
2019-06-06 13:34:46 +00:00
}
2020-02-17 08:58:14 +00:00
}
2019-06-06 13:34:46 +00:00
}