DocSpace-client/common/ASC.Api.Core/Auth/ConfirmAuthHandler.cs

126 lines
5.3 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
using SecurityContext = ASC.Core.SecurityContext;
2019-09-10 12:42:15 +00:00
namespace ASC.Api.Core.Auth;
2022-03-22 15:44:10 +00:00
[Transient]
public class ConfirmAuthHandler : AuthenticationHandler<AuthenticationSchemeOptions>
2019-09-10 12:42:15 +00:00
{
private readonly SecurityContext _securityContext;
private readonly UserManager _userManager;
2022-03-22 15:44:10 +00:00
private readonly EmailValidationKeyModelHelper _emailValidationKeyModelHelper;
public ConfirmAuthHandler(
IOptionsMonitor<AuthenticationSchemeOptions> options,
ILoggerFactory logger,
UrlEncoder encoder,
ISystemClock clock) :
base(options, logger, encoder, clock)
{ }
public ConfirmAuthHandler(
IOptionsMonitor<AuthenticationSchemeOptions> options,
ILoggerFactory logger,
UrlEncoder encoder,
ISystemClock clock,
SecurityContext securityContext,
UserManager userManager,
2022-03-22 15:44:10 +00:00
EmailValidationKeyModelHelper emailValidationKeyModelHelper) :
base(options, logger, encoder, clock)
{
_securityContext = securityContext;
_userManager = userManager;
2022-03-22 15:44:10 +00:00
_emailValidationKeyModelHelper = emailValidationKeyModelHelper;
}
protected override Task<AuthenticateResult> HandleAuthenticateAsync()
2019-09-10 12:42:15 +00:00
{
2022-03-22 15:44:10 +00:00
var emailValidationKeyModel = _emailValidationKeyModelHelper.GetModel();
if (!emailValidationKeyModel.Type.HasValue)
2019-09-10 13:31:03 +00:00
{
return _securityContext.IsAuthenticated
? Task.FromResult(AuthenticateResult.Success(new AuthenticationTicket(Context.User, new AuthenticationProperties(), Scheme.Name)))
2022-01-17 08:22:52 +00:00
: Task.FromResult(AuthenticateResult.Fail(new AuthenticationException(nameof(HttpStatusCode.Unauthorized))));
2019-09-10 13:31:03 +00:00
}
EmailValidationKeyProvider.ValidationResult checkKeyResult;
try
2019-09-10 12:42:15 +00:00
{
2022-03-22 15:44:10 +00:00
checkKeyResult = _emailValidationKeyModelHelper.Validate(emailValidationKeyModel);
}
catch (ArgumentNullException)
{
checkKeyResult = EmailValidationKeyProvider.ValidationResult.Invalid;
}
2019-09-10 12:42:15 +00:00
var claims = new List<Claim>()
{
2019-09-26 13:36:53 +00:00
new Claim(ClaimTypes.Role, emailValidationKeyModel.Type.ToString())
};
2019-09-23 15:36:22 +00:00
if (checkKeyResult == EmailValidationKeyProvider.ValidationResult.Ok)
{
Guid userId;
if (!_securityContext.IsAuthenticated)
2019-09-23 15:36:22 +00:00
{
if (emailValidationKeyModel.UiD.HasValue && !emailValidationKeyModel.UiD.Equals(Guid.Empty))
{
userId = emailValidationKeyModel.UiD.Value;
}
else
2019-09-27 09:18:48 +00:00
{
if (emailValidationKeyModel.Type == ConfirmType.EmailActivation
|| emailValidationKeyModel.Type == ConfirmType.EmpInvite
|| emailValidationKeyModel.Type == ConfirmType.LinkInvite)
{
userId = ASC.Core.Configuration.Constants.CoreSystem.ID;
}
2019-09-27 12:28:51 +00:00
else
{
userId = _userManager.GetUserByEmail(emailValidationKeyModel.Email).Id;
}
2019-09-27 09:18:48 +00:00
}
2019-09-23 15:36:22 +00:00
}
else
{
userId = _securityContext.CurrentAccount.ID;
}
2019-09-10 12:42:15 +00:00
_securityContext.AuthenticateMeWithoutCookie(userId, claims);
2019-09-10 12:42:15 +00:00
}
2020-10-22 17:57:18 +00:00
var result = checkKeyResult switch
{
EmailValidationKeyProvider.ValidationResult.Ok => AuthenticateResult.Success(new AuthenticationTicket(Context.User, new AuthenticationProperties(), Scheme.Name)),
_ => AuthenticateResult.Fail(new AuthenticationException(nameof(HttpStatusCode.Unauthorized)))
};
return Task.FromResult(result);
2020-10-22 17:57:18 +00:00
}
}