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

109 lines
3.8 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 System;
using System.Linq;
2020-01-21 13:40:01 +00:00
2020-02-17 08:58:14 +00:00
using ASC.Common;
using ASC.Common.Utils;
2019-06-06 13:34:46 +00:00
using ASC.Core;
using ASC.FederatedLogin;
2020-02-17 08:58:14 +00:00
using ASC.FederatedLogin.Profile;
using ASC.Security.Cryptography;
2020-01-21 13:40:01 +00:00
2020-02-17 08:58:14 +00:00
using Microsoft.Extensions.Options;
2019-06-06 13:34:46 +00:00
using SecurityContext = ASC.Core.SecurityContext;
namespace ASC.Web.Studio.Core
{
2020-02-06 08:56:12 +00:00
public class EncryptionLoginProvider
2020-02-17 08:58:14 +00:00
{
2020-08-12 09:58:08 +00:00
private SecurityContext SecurityContext { get; }
private Signature Signature { get; }
private InstanceCrypto InstanceCrypto { get; }
private IOptionsSnapshot<AccountLinker> Snapshot { get; }
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-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;
2019-06-06 13:34:46 +00:00
2020-02-17 08:58:14 +00:00
var loginProfile = new LoginProfile(Signature, InstanceCrypto)
{
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
2020-09-18 07:59:23 +00:00
var linker = Snapshot.Get("webstudio");
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
{
2020-09-18 07:59:23 +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
{
2020-02-06 08:56:12 +00:00
var linker = Snapshot.Get("webstudio");
2020-01-21 13:40:01 +00:00
var profile = linker.GetLinkedProfiles(userId.ToString(), ProviderConstants.Encryption).FirstOrDefault();
2020-09-18 07:59:23 +00:00
if (profile == null) return null;
var keys = InstanceCrypto.Decrypt(profile.Name);
return keys;
2019-06-06 13:34:46 +00:00
}
2020-02-17 08:58:14 +00:00
}
public static class EncryptionLoginProviderExtension
{
public static DIHelper AddEncryptionLoginProviderService(this DIHelper services)
{
2020-07-17 10:52:28 +00:00
if (services.TryAddScoped<EncryptionLoginProvider>())
{
return services
.AddSecurityContextService()
.AddSignatureService()
.AddInstanceCryptoService()
.AddAccountLinker();
}
return services;
2020-02-17 08:58:14 +00:00
}
}
2019-06-06 13:34:46 +00:00
}