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

287 lines
12 KiB
C#
Raw Normal View History

/*
*
* (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.Globalization;
using System.Net.Mail;
using System.Text;
using System.Text.RegularExpressions;
using ASC.Core;
using ASC.Core.Tenants;
using ASC.Core.Users;
using ASC.IPSecurity;
using ASC.MessagingSystem;
using ASC.Web.Core.PublicResources;
using ASC.Web.Core.Utility;
using ASC.Web.Studio.Core.Notify;
2019-07-02 15:30:31 +00:00
using Microsoft.AspNetCore.Http;
namespace ASC.Web.Core.Users
{
/// <summary>
/// Web studio user manager helper
/// </summary>
public sealed class UserManagerWrapper
{
2019-08-01 08:47:15 +00:00
public StudioNotifyService StudioNotifyService { get; }
public UserManagerWrapper(StudioNotifyService studioNotifyService)
{
StudioNotifyService = studioNotifyService;
}
2019-08-08 09:26:58 +00:00
private static bool TestUniqueUserName(string uniqueName, int tenantId)
{
2019-08-15 13:16:39 +00:00
if (string.IsNullOrEmpty(uniqueName))
return false;
2019-08-08 09:26:58 +00:00
return Equals(CoreContext.UserManager.GetUserByUserName(tenantId, uniqueName), Constants.LostUser);
}
2019-08-08 09:26:58 +00:00
private static string MakeUniqueName(int tenantId, UserInfo userInfo)
{
if (string.IsNullOrEmpty(userInfo.Email))
throw new ArgumentException(Resource.ErrorEmailEmpty, "userInfo");
var uniqueName = new MailAddress(userInfo.Email).User;
var startUniqueName = uniqueName;
var i = 0;
2019-08-08 09:26:58 +00:00
while (!TestUniqueUserName(uniqueName, tenantId))
{
uniqueName = string.Format("{0}{1}", startUniqueName, (++i).ToString(CultureInfo.InvariantCulture));
}
return uniqueName;
}
2019-08-08 09:26:58 +00:00
public static bool CheckUniqueEmail(int tenantId, Guid userId, string email)
{
2019-08-08 09:26:58 +00:00
var foundUser = CoreContext.UserManager.GetUserByEmail(tenantId, email);
return Equals(foundUser, Constants.LostUser) || foundUser.ID == userId;
}
2019-08-08 09:26:58 +00:00
public UserInfo AddUser(Tenant tenant, UserInfo userInfo, string password, bool afterInvite = false, bool notify = true, bool isVisitor = false, bool fromInviteLink = false, bool makeUniqueName = true)
{
if (userInfo == null) throw new ArgumentNullException("userInfo");
if (!UserFormatter.IsValidUserName(userInfo.FirstName, userInfo.LastName))
throw new Exception(Resource.ErrorIncorrectUserName);
CheckPasswordPolicy(password);
2019-08-08 09:26:58 +00:00
if (!CheckUniqueEmail(tenant.TenantId, userInfo.ID, userInfo.Email))
throw new Exception(CustomNamingPeople.Substitute<Resource>("ErrorEmailAlreadyExists"));
if (makeUniqueName)
{
2019-08-08 09:26:58 +00:00
userInfo.UserName = MakeUniqueName(tenant.TenantId, userInfo);
}
if (!userInfo.WorkFromDate.HasValue)
{
userInfo.WorkFromDate = TenantUtil.DateTimeNow();
}
if (!CoreContext.Configuration.Personal && !fromInviteLink)
{
userInfo.ActivationStatus = !afterInvite ? EmployeeActivationStatus.Pending : EmployeeActivationStatus.Activated;
}
2019-08-08 09:26:58 +00:00
var newUserInfo = CoreContext.UserManager.SaveUserInfo(tenant, userInfo, isVisitor);
2019-08-09 12:28:19 +00:00
SecurityContext.SetUserPassword(tenant.TenantId, newUserInfo.ID, password);
if (CoreContext.Configuration.Personal)
{
2019-08-09 12:28:19 +00:00
StudioNotifyService.SendUserWelcomePersonal(tenant.TenantId, newUserInfo);
return newUserInfo;
}
if ((newUserInfo.Status & EmployeeStatus.Active) == EmployeeStatus.Active && notify)
{
//NOTE: Notify user only if it's active
if (afterInvite)
{
if (isVisitor)
{
2019-08-30 12:40:57 +00:00
StudioNotifyService.GuestInfoAddedAfterInvite(newUserInfo);
}
else
{
2019-08-08 09:26:58 +00:00
StudioNotifyService.UserInfoAddedAfterInvite(tenant.TenantId, newUserInfo);
}
if (fromInviteLink)
{
2019-09-03 12:23:58 +00:00
StudioNotifyService.SendEmailActivationInstructions(tenant.TenantId, newUserInfo, newUserInfo.Email);
}
}
else
{
//Send user invite
if (isVisitor)
{
2019-08-09 12:28:19 +00:00
StudioNotifyService.GuestInfoActivation(tenant.TenantId, newUserInfo);
}
else
{
2019-08-09 12:28:19 +00:00
StudioNotifyService.UserInfoActivation(tenant.TenantId, newUserInfo);
}
}
}
if (isVisitor)
{
2019-08-08 09:26:58 +00:00
CoreContext.UserManager.AddUserIntoGroup(tenant, newUserInfo.ID, Constants.GroupVisitor.ID);
}
return newUserInfo;
}
#region Password
public static void CheckPasswordPolicy(string password)
{
2019-08-15 13:16:39 +00:00
if (string.IsNullOrWhiteSpace(password))
throw new Exception(Resource.ErrorPasswordEmpty);
var passwordSettingsObj = PasswordSettings.Load();
if (!PasswordSettings.CheckPasswordRegex(passwordSettingsObj, password))
throw new Exception(GenerateErrorMessage(passwordSettingsObj));
}
2019-08-08 09:26:58 +00:00
public UserInfo SendUserPassword(int tenantId, string email, MessageService messageService, HttpContext context)
{
email = (email ?? "").Trim();
if (!email.TestEmailRegex()) throw new ArgumentNullException("email", Resource.ErrorNotCorrectEmail);
var tenant = CoreContext.TenantManager.GetCurrentTenant();
var settings = IPRestrictionsSettings.Load();
2019-07-02 15:30:31 +00:00
if (settings.Enable && !IPSecurity.IPSecurity.Verify(context, tenant))
{
throw new Exception(Resource.ErrorAccessRestricted);
}
2019-08-08 09:26:58 +00:00
var userInfo = CoreContext.UserManager.GetUserByEmail(tenantId, email);
2019-08-30 12:40:57 +00:00
if (!CoreContext.UserManager.UserExists(userInfo) || string.IsNullOrEmpty(userInfo.Email))
{
throw new Exception(string.Format(Resource.ErrorUserNotFoundByEmail, email));
}
if (userInfo.Status == EmployeeStatus.Terminated)
{
throw new Exception(Resource.ErrorDisabledProfile);
}
if (userInfo.IsLDAP())
{
throw new Exception(Resource.CouldNotRecoverPasswordForLdapUser);
}
if (userInfo.IsSSO())
{
throw new Exception(Resource.CouldNotRecoverPasswordForSsoUser);
}
2019-08-09 12:28:19 +00:00
StudioNotifyService.UserPasswordChange(tenantId, userInfo);
var displayUserName = userInfo.DisplayUserName(false);
2019-06-17 13:53:10 +00:00
messageService.Send(MessageAction.UserSentPasswordChangeInstructions, displayUserName);
return userInfo;
}
private const string Noise = "1234567890mnbasdflkjqwerpoiqweyuvcxnzhdkqpsdk_-()=";
public static string GeneratePassword()
{
var ps = PasswordSettings.Load();
var maxLength = PasswordSettings.MaxLength
- (ps.Digits ? 1 : 0)
- (ps.UpperCase ? 1 : 0)
- (ps.SpecSymbols ? 1 : 0);
var minLength = Math.Min(ps.MinLength, maxLength);
2019-08-15 13:16:39 +00:00
return string.Format("{0}{1}{2}{3}",
2019-08-15 14:48:55 +00:00
GeneratePassword(minLength, minLength, Noise[0..^4]),
2019-08-15 13:16:39 +00:00
ps.Digits ? GeneratePassword(1, 1, Noise.Substring(0, 10)) : string.Empty,
ps.UpperCase ? GeneratePassword(1, 1, Noise.Substring(10, 20).ToUpper()) : string.Empty,
ps.SpecSymbols ? GeneratePassword(1, 1, Noise.Substring(Noise.Length - 4, 4).ToUpper()) : string.Empty);
}
private static readonly Random Rnd = new Random();
internal static string GeneratePassword(int minLength, int maxLength, string noise)
{
var length = Rnd.Next(minLength, maxLength + 1);
var pwd = string.Empty;
while (length-- > 0)
{
pwd += noise.Substring(Rnd.Next(noise.Length - 1), 1);
}
return pwd;
}
internal static string GenerateErrorMessage(PasswordSettings passwordSettings)
{
var error = new StringBuilder();
error.AppendFormat("{0} ", Resource.ErrorPasswordMessage);
error.AppendFormat(Resource.ErrorPasswordLength, passwordSettings.MinLength, PasswordSettings.MaxLength);
if (passwordSettings.UpperCase)
error.AppendFormat(", {0}", Resource.ErrorPasswordNoUpperCase);
if (passwordSettings.Digits)
error.AppendFormat(", {0}", Resource.ErrorPasswordNoDigits);
if (passwordSettings.SpecSymbols)
error.AppendFormat(", {0}", Resource.ErrorPasswordNoSpecialSymbols);
return error.ToString();
}
public static string GetPasswordHelpMessage()
{
var info = new StringBuilder();
var passwordSettings = PasswordSettings.Load();
info.AppendFormat("{0} ", Resource.ErrorPasswordMessageStart);
info.AppendFormat(Resource.ErrorPasswordLength, passwordSettings.MinLength, PasswordSettings.MaxLength);
if (passwordSettings.UpperCase)
info.AppendFormat(", {0}", Resource.ErrorPasswordNoUpperCase);
if (passwordSettings.Digits)
info.AppendFormat(", {0}", Resource.ErrorPasswordNoDigits);
if (passwordSettings.SpecSymbols)
info.AppendFormat(", {0}", Resource.ErrorPasswordNoSpecialSymbols);
return info.ToString();
}
#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);
}
}
}