DocSpace-buildtools/web/ASC.Web.Core/Users/UserManagerWrapper.cs

337 lines
12 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 Constants = ASC.Core.Users.Constants;
2020-01-17 13:58:26 +00:00
2022-03-17 15:13:38 +00:00
namespace ASC.Web.Core.Users;
/// <summary>
/// Web studio user manager helper
/// </summary>
///
[Scope]
public sealed class UserManagerWrapper
{
2022-04-15 09:08:06 +00:00
private readonly StudioNotifyService _studioNotifyService;
private readonly UserManager _userManager;
private readonly SecurityContext _securityContext;
private readonly MessageService _messageService;
private readonly CustomNamingPeople _customNamingPeople;
private readonly TenantUtil _tenantUtil;
private readonly CoreBaseSettings _coreBaseSettings;
private readonly IPSecurity.IPSecurity _iPSecurity;
private readonly DisplayUserSettingsHelper _displayUserSettingsHelper;
private readonly SettingsManager _settingsManager;
private readonly UserFormatter _userFormatter;
2022-03-17 15:13:38 +00:00
public UserManagerWrapper(
StudioNotifyService studioNotifyService,
UserManager userManager,
SecurityContext securityContext,
MessageService messageService,
CustomNamingPeople customNamingPeople,
TenantUtil tenantUtil,
CoreBaseSettings coreBaseSettings,
IPSecurity.IPSecurity iPSecurity,
DisplayUserSettingsHelper displayUserSettingsHelper,
SettingsManager settingsManager,
UserFormatter userFormatter)
{
2022-04-15 09:08:06 +00:00
_studioNotifyService = studioNotifyService;
_userManager = userManager;
_securityContext = securityContext;
_messageService = messageService;
_customNamingPeople = customNamingPeople;
_tenantUtil = tenantUtil;
_coreBaseSettings = coreBaseSettings;
_iPSecurity = iPSecurity;
_displayUserSettingsHelper = displayUserSettingsHelper;
_settingsManager = settingsManager;
_userFormatter = userFormatter;
2022-03-17 15:13:38 +00:00
}
2019-08-01 08:47:15 +00:00
2022-03-17 15:13:38 +00:00
private bool TestUniqueUserName(string uniqueName)
{
if (string.IsNullOrEmpty(uniqueName))
{
2022-03-17 15:13:38 +00:00
return false;
}
2022-04-15 09:08:06 +00:00
return Equals(_userManager.GetUserByUserName(uniqueName), Constants.LostUser);
2022-03-17 15:13:38 +00:00
}
2022-03-17 15:13:38 +00:00
private string MakeUniqueName(UserInfo userInfo)
{
if (string.IsNullOrEmpty(userInfo.Email))
{
2022-03-17 15:13:38 +00:00
throw new ArgumentException(Resource.ErrorEmailEmpty, nameof(userInfo));
}
2022-03-17 15:13:38 +00:00
var uniqueName = new MailAddress(userInfo.Email).User;
var startUniqueName = uniqueName;
var i = 0;
while (!TestUniqueUserName(uniqueName))
{
2022-03-17 15:13:38 +00:00
uniqueName = $"{startUniqueName}{(++i).ToString(CultureInfo.InvariantCulture)}";
}
return uniqueName;
}
2022-03-17 15:13:38 +00:00
public bool CheckUniqueEmail(Guid userId, string email)
{
2022-04-15 09:08:06 +00:00
var foundUser = _userManager.GetUserByEmail(email);
2022-03-17 15:13:38 +00:00
return Equals(foundUser, Constants.LostUser) || foundUser.Id == userId;
}
2022-09-13 20:47:35 +00:00
public UserInfo AddUser(UserInfo userInfo, string passwordHash, bool afterInvite = false, bool notify = true, bool isVisitor = false, bool fromInviteLink = false, bool makeUniqueName = true, bool isCardDav = false,
bool updateExising = false)
2022-03-17 15:13:38 +00:00
{
ArgumentNullException.ThrowIfNull(userInfo);
2022-04-15 09:08:06 +00:00
if (!_userFormatter.IsValidUserName(userInfo.FirstName, userInfo.LastName))
2022-03-17 15:13:38 +00:00
{
throw new Exception(Resource.ErrorIncorrectUserName);
}
2022-09-13 20:47:35 +00:00
if (!updateExising && !CheckUniqueEmail(userInfo.Id, userInfo.Email))
2022-03-17 15:13:38 +00:00
{
2022-04-15 09:08:06 +00:00
throw new Exception(_customNamingPeople.Substitute<Resource>("ErrorEmailAlreadyExists"));
}
2022-03-17 15:13:38 +00:00
if (makeUniqueName)
{
userInfo.UserName = MakeUniqueName(userInfo);
}
if (!userInfo.WorkFromDate.HasValue)
{
2022-04-15 09:08:06 +00:00
userInfo.WorkFromDate = _tenantUtil.DateTimeNow();
2022-03-17 15:13:38 +00:00
}
2022-04-15 09:08:06 +00:00
if (!_coreBaseSettings.Personal && !fromInviteLink)
{
2022-03-17 15:13:38 +00:00
userInfo.ActivationStatus = !afterInvite ? EmployeeActivationStatus.Pending : EmployeeActivationStatus.Activated;
}
2022-06-14 08:11:41 +00:00
var newUserInfo = _userManager.SaveUserInfo(userInfo, isVisitor, isCardDav);
2022-04-15 09:08:06 +00:00
_securityContext.SetUserPasswordHash(newUserInfo.Id, passwordHash);
2022-04-15 09:08:06 +00:00
if (_coreBaseSettings.Personal)
2022-03-17 15:13:38 +00:00
{
2022-04-15 09:08:06 +00:00
_studioNotifyService.SendUserWelcomePersonal(newUserInfo);
2022-03-17 15:13:38 +00:00
return newUserInfo;
}
2020-09-18 07:59:23 +00:00
2022-03-17 15:13:38 +00:00
if ((newUserInfo.Status & EmployeeStatus.Active) == EmployeeStatus.Active && notify)
2019-09-23 12:20:08 +00:00
{
2022-03-17 15:13:38 +00:00
//NOTE: Notify user only if it's active
if (afterInvite)
2019-09-23 12:20:08 +00:00
{
2022-03-17 15:13:38 +00:00
if (isVisitor)
2022-03-17 15:01:39 +00:00
{
2022-04-15 09:08:06 +00:00
_studioNotifyService.GuestInfoAddedAfterInvite(newUserInfo);
2022-03-17 15:01:39 +00:00
}
2022-03-17 15:13:38 +00:00
else
2022-03-17 15:01:39 +00:00
{
2022-04-15 09:08:06 +00:00
_studioNotifyService.UserInfoAddedAfterInvite(newUserInfo);
2022-03-17 15:01:39 +00:00
}
2019-09-23 12:20:08 +00:00
2022-03-17 15:13:38 +00:00
if (fromInviteLink)
2022-03-17 15:01:39 +00:00
{
2022-04-15 09:08:06 +00:00
_studioNotifyService.SendEmailActivationInstructions(newUserInfo, newUserInfo.Email);
2022-03-17 15:01:39 +00:00
}
2019-09-23 12:20:08 +00:00
}
else
{
2022-03-17 15:13:38 +00:00
//Send user invite
if (isVisitor)
2022-03-17 15:01:39 +00:00
{
2022-04-15 09:08:06 +00:00
_studioNotifyService.GuestInfoActivation(newUserInfo);
2022-03-17 15:01:39 +00:00
}
2022-03-17 15:13:38 +00:00
else
2022-03-17 15:01:39 +00:00
{
2022-04-15 09:08:06 +00:00
_studioNotifyService.UserInfoActivation(newUserInfo);
2022-03-17 15:01:39 +00:00
}
2019-09-23 12:20:08 +00:00
}
2022-03-17 15:13:38 +00:00
}
2019-09-23 12:20:08 +00:00
2022-03-17 15:13:38 +00:00
if (isVisitor)
{
2022-04-15 09:08:06 +00:00
_userManager.AddUserIntoGroup(newUserInfo.Id, Constants.GroupVisitor.ID);
2020-09-18 07:59:23 +00:00
}
2022-03-17 15:13:38 +00:00
return newUserInfo;
}
#region Password
public void CheckPasswordPolicy(string password)
{
if (string.IsNullOrWhiteSpace(password))
2020-09-18 07:59:23 +00:00
{
2022-03-17 15:13:38 +00:00
throw new Exception(Resource.ErrorPasswordEmpty);
}
2022-04-15 09:08:06 +00:00
var passwordSettingsObj = _settingsManager.Load<PasswordSettings>();
2020-09-18 07:59:23 +00:00
2022-03-17 15:13:38 +00:00
if (!CheckPasswordRegex(passwordSettingsObj, password))
{
2022-06-14 08:11:41 +00:00
throw new Exception(GetPasswordHelpMessage(passwordSettingsObj));
2019-09-23 12:20:08 +00:00
}
2022-03-17 15:13:38 +00:00
}
public string GetPasswordRegex(PasswordSettings passwordSettings)
{
2022-06-14 08:11:41 +00:00
var pwdBuilder = new StringBuilder("^");
2022-06-14 08:11:41 +00:00
if (passwordSettings.Digits)
{
2022-06-14 08:11:41 +00:00
pwdBuilder.Append(passwordSettings.DigitsRegexStr);
2022-03-17 15:13:38 +00:00
}
2022-06-14 08:11:41 +00:00
if (passwordSettings.UpperCase)
{
pwdBuilder.Append(passwordSettings.UpperCaseRegexStr);
}
2022-06-14 08:11:41 +00:00
if (passwordSettings.SpecSymbols)
{
pwdBuilder.Append(passwordSettings.SpecSymbolsRegexStr);
2022-03-17 15:13:38 +00:00
}
2022-06-14 08:11:41 +00:00
pwdBuilder.Append($"{passwordSettings.AllowedCharactersRegexStr}{{{passwordSettings.MinLength},{PasswordSettings.MaxLength}}}$");
2022-03-17 15:13:38 +00:00
return pwdBuilder.ToString();
}
public bool CheckPasswordRegex(PasswordSettings passwordSettings, string password)
{
var passwordRegex = GetPasswordRegex(passwordSettings);
return new Regex(passwordRegex).IsMatch(password);
}
2022-03-17 15:13:38 +00:00
public string SendUserPassword(string email)
{
email = (email ?? "").Trim();
if (!email.TestEmailRegex())
{
2022-03-17 15:13:38 +00:00
throw new ArgumentNullException(nameof(email), Resource.ErrorNotCorrectEmail);
}
var settings = _settingsManager.Load<IPRestrictionsSettings>();
2020-09-18 07:59:23 +00:00
if (settings.Enable && !_iPSecurity.Verify())
{
2022-03-17 15:13:38 +00:00
throw new Exception(Resource.ErrorAccessRestricted);
}
2022-04-15 09:08:06 +00:00
var userInfo = _userManager.GetUserByEmail(email);
if (!_userManager.UserExists(userInfo) || string.IsNullOrEmpty(userInfo.Email))
2022-03-17 15:13:38 +00:00
{
return string.Format(Resource.ErrorUserNotFoundByEmail, email);
}
if (userInfo.Status == EmployeeStatus.Terminated)
{
return Resource.ErrorDisabledProfile;
}
if (userInfo.IsLDAP())
{
return Resource.CouldNotRecoverPasswordForLdapUser;
}
if (userInfo.IsSSO())
{
2022-03-17 15:13:38 +00:00
return Resource.CouldNotRecoverPasswordForSsoUser;
}
2022-04-15 09:08:06 +00:00
_studioNotifyService.UserPasswordChange(userInfo);
2022-03-17 15:01:39 +00:00
2022-03-17 15:13:38 +00:00
return null;
}
public static string GeneratePassword()
{
return Guid.NewGuid().ToString();
}
internal static string GeneratePassword(int minLength, int maxLength, string noise)
{
var length = RandomNumberGenerator.GetInt32(minLength, maxLength + 1);
2022-03-17 15:13:38 +00:00
var sb = new StringBuilder();
while (length-- > 0)
{
sb.Append(noise[RandomNumberGenerator.GetInt32(noise.Length - 1)]);
}
2022-03-17 15:13:38 +00:00
return sb.ToString();
}
2022-06-14 08:11:41 +00:00
public static string GetPasswordHelpMessage(PasswordSettings passwordSettings)
2022-03-17 15:13:38 +00:00
{
2022-06-14 08:11:41 +00:00
var text = new StringBuilder();
2022-06-14 08:11:41 +00:00
text.AppendFormat("{0} ", Resource.ErrorPasswordMessage);
text.AppendFormat(Resource.ErrorPasswordLength, passwordSettings.MinLength, PasswordSettings.MaxLength);
text.AppendFormat(", {0}", Resource.ErrorPasswordOnlyLatinLetters);
text.AppendFormat(", {0}", Resource.ErrorPasswordNoSpaces);
2022-03-17 15:01:39 +00:00
2022-06-14 08:11:41 +00:00
if (passwordSettings.UpperCase)
2022-06-16 08:13:53 +00:00
{
2022-06-14 08:11:41 +00:00
text.AppendFormat(", {0}", Resource.ErrorPasswordNoUpperCase);
2022-06-16 08:13:53 +00:00
}
2022-03-17 15:13:38 +00:00
if (passwordSettings.Digits)
2022-06-16 08:13:53 +00:00
{
2022-06-14 08:11:41 +00:00
text.AppendFormat(", {0}", Resource.ErrorPasswordNoDigits);
2022-06-16 08:13:53 +00:00
}
2022-03-17 15:13:38 +00:00
if (passwordSettings.SpecSymbols)
2022-06-16 08:13:53 +00:00
{
2022-06-14 08:11:41 +00:00
text.AppendFormat(", {0}", Resource.ErrorPasswordNoSpecialSymbols);
2022-06-16 08:13:53 +00:00
}
2022-03-17 15:13:38 +00:00
2022-06-14 08:11:41 +00:00
return text.ToString();
2022-03-17 15:13:38 +00:00
}
2022-03-17 15:13:38 +00:00
public string GetPasswordHelpMessage()
{
2022-06-14 08:11:41 +00:00
return GetPasswordHelpMessage(_settingsManager.Load<PasswordSettings>());
2022-03-17 15:13:38 +00:00
}
#endregion
public static bool ValidateEmail(string email)
{
const string pattern = @"^(([^<>()[\]\\.,;:\s@\""]+"
+ @"(\.[^<>()[\]\\.,;:\s@\""]+)*)|(\"".+\""))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}"
+ @"\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$";
const RegexOptions options = RegexOptions.IgnoreCase | RegexOptions.Compiled;
return new Regex(pattern, options).IsMatch(email);
}
2022-03-17 15:13:38 +00:00
}