DocSpace-client/web/ASC.Web.Core/Sms/SmsManager.cs

152 lines
6.6 KiB
C#
Raw Normal View History

2019-08-12 10:53:12 +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;
2020-08-27 14:01:37 +00:00
2019-08-12 10:53:12 +00:00
using ASC.Core;
using ASC.Core.Common.Security;
using ASC.Core.Tenants;
using ASC.Core.Users;
using ASC.Web.Core.PublicResources;
using ASC.Web.Core.Sms;
namespace ASC.Web.Studio.Core.SMS
{
2019-09-09 12:56:33 +00:00
public class SmsManager
2019-08-12 10:53:12 +00:00
{
2020-08-12 09:58:08 +00:00
private UserManager UserManager { get; }
private SecurityContext SecurityContext { get; }
private TenantManager TenantManager { get; }
2019-09-18 12:14:15 +00:00
public SmsKeyStorage SmsKeyStorage { get; }
2019-10-17 15:55:35 +00:00
public SmsSender SmsSender { get; }
2020-08-12 09:58:08 +00:00
private StudioSmsNotificationSettingsHelper StudioSmsNotificationSettingsHelper { get; }
2019-09-09 12:56:33 +00:00
2019-09-16 14:51:39 +00:00
public SmsManager(
UserManager userManager,
SecurityContext securityContext,
TenantManager tenantManager,
2019-09-23 12:20:08 +00:00
SmsKeyStorage smsKeyStorage,
SmsSender smsSender,
StudioSmsNotificationSettingsHelper studioSmsNotificationSettingsHelper)
2019-09-09 12:56:33 +00:00
{
UserManager = userManager;
SecurityContext = securityContext;
2019-09-16 14:51:39 +00:00
TenantManager = tenantManager;
2019-09-18 12:14:15 +00:00
SmsKeyStorage = smsKeyStorage;
2019-10-17 15:55:35 +00:00
SmsSender = smsSender;
StudioSmsNotificationSettingsHelper = studioSmsNotificationSettingsHelper;
2019-09-09 12:56:33 +00:00
}
2019-09-13 11:18:27 +00:00
public string SaveMobilePhone(UserInfo user, string mobilePhone)
2019-08-12 10:53:12 +00:00
{
mobilePhone = SmsSender.GetPhoneValueDigits(mobilePhone);
if (user == null || Equals(user, Constants.LostUser)) throw new Exception(Resource.ErrorUserNotFound);
if (string.IsNullOrEmpty(mobilePhone)) throw new Exception(Resource.ActivateMobilePhoneEmptyPhoneNumber);
if (!string.IsNullOrEmpty(user.MobilePhone) && user.MobilePhoneActivationStatus == MobilePhoneActivationStatus.Activated) throw new Exception(Resource.MobilePhoneMustErase);
user.MobilePhone = mobilePhone;
user.MobilePhoneActivationStatus = MobilePhoneActivationStatus.NotActivated;
if (SecurityContext.IsAuthenticated)
{
2020-10-12 19:39:23 +00:00
UserManager.SaveUserInfo(user);
2019-08-12 10:53:12 +00:00
}
else
{
try
{
2020-10-12 19:39:23 +00:00
SecurityContext.AuthenticateMe(ASC.Core.Configuration.Constants.CoreSystem);
UserManager.SaveUserInfo(user);
2019-08-12 10:53:12 +00:00
}
finally
{
SecurityContext.Logout();
}
}
if (StudioSmsNotificationSettingsHelper.Enable)
2019-08-12 10:53:12 +00:00
{
PutAuthCode(user, false);
}
return mobilePhone;
}
2019-09-09 12:56:33 +00:00
public void PutAuthCode(UserInfo user, bool again)
2019-08-12 10:53:12 +00:00
{
if (user == null || Equals(user, Constants.LostUser)) throw new Exception(Resource.ErrorUserNotFound);
if (!StudioSmsNotificationSettingsHelper.IsVisibleSettings() || !StudioSmsNotificationSettingsHelper.Enable) throw new MethodAccessException();
2019-08-12 10:53:12 +00:00
var mobilePhone = SmsSender.GetPhoneValueDigits(user.MobilePhone);
if (SmsKeyStorage.ExistsKey(mobilePhone) && !again) return;
2019-08-15 13:05:50 +00:00
if (!SmsKeyStorage.GenerateKey(mobilePhone, out var key)) throw new Exception(Resource.SmsTooMuchError);
2019-10-17 15:55:35 +00:00
if (SmsSender.SendSMS(mobilePhone, string.Format(Resource.SmsAuthenticationMessageToUser, key)))
2019-08-12 10:53:12 +00:00
{
2019-09-16 14:51:39 +00:00
TenantManager.SetTenantQuotaRow(new TenantQuotaRow { Tenant = TenantManager.GetCurrentTenant().TenantId, Path = "/sms", Counter = 1 }, true);
2019-08-12 10:53:12 +00:00
}
}
2019-09-20 15:53:27 +00:00
public void ValidateSmsCode(UserInfo user, string code)
2019-08-12 10:53:12 +00:00
{
if (!StudioSmsNotificationSettingsHelper.IsVisibleSettings()
|| !StudioSmsNotificationSettingsHelper.Enable)
2019-08-12 10:53:12 +00:00
{
return;
}
if (user == null || Equals(user, Constants.LostUser)) throw new Exception(Resource.ErrorUserNotFound);
var valid = SmsKeyStorage.ValidateKey(user.MobilePhone, code);
switch (valid)
{
case SmsKeyStorage.Result.Empty:
throw new Exception(Resource.ActivateMobilePhoneEmptyCode);
case SmsKeyStorage.Result.TooMuch:
throw new BruteForceCredentialException(Resource.SmsTooMuchError);
case SmsKeyStorage.Result.Timeout:
throw new TimeoutException(Resource.SmsAuthenticationTimeout);
case SmsKeyStorage.Result.Invalide:
throw new ArgumentException(Resource.SmsAuthenticationMessageError);
}
if (valid != SmsKeyStorage.Result.Ok) throw new Exception("Error: " + valid);
if (!SecurityContext.IsAuthenticated)
{
2019-09-20 15:53:27 +00:00
var cookiesKey = SecurityContext.AuthenticateMe(user.ID);
2019-08-12 10:53:12 +00:00
//CookiesManager.SetCookies(CookiesType.AuthKey, cookiesKey);
}
if (user.MobilePhoneActivationStatus == MobilePhoneActivationStatus.NotActivated)
{
user.MobilePhoneActivationStatus = MobilePhoneActivationStatus.Activated;
2020-10-12 19:39:23 +00:00
UserManager.SaveUserInfo(user);
2019-08-12 10:53:12 +00:00
}
}
}
}