DocSpace-client/common/services/ASC.Data.Backup/Core/NotifyHelper.cs

173 lines
7.8 KiB
C#
Raw Normal View History

2020-05-20 15:14:44 +00:00
/*
*
* (c) Copyright Ascensio System Limited 2010-2020
*
* 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-06-29 09:32:43 +00:00
using System.Linq;
using ASC.Common;
2020-06-29 09:32:43 +00:00
using ASC.Core;
using ASC.Core.Tenants;
using ASC.Core.Users;
using ASC.Notify.Model;
using ASC.Notify.Patterns;
using ASC.Notify.Recipients;
using ASC.Web.Core.Users;
using ASC.Web.Studio.Core.Notify;
using ASC.Web.Studio.Utility;
using Microsoft.Extensions.DependencyInjection;
2020-05-20 15:14:44 +00:00
namespace ASC.Data.Backup
{
public class NotifyHelper
2020-06-29 09:32:43 +00:00
{
2020-08-12 09:58:08 +00:00
private IServiceProvider ServiceProvider { get; }
2020-06-29 09:32:43 +00:00
public NotifyHelper(IServiceProvider serviceProvider)
{
ServiceProvider = serviceProvider;
}
2020-05-20 15:14:44 +00:00
2020-06-29 09:32:43 +00:00
public void SendAboutTransferStart(Tenant tenant, string targetRegion, bool notifyUsers)
{
MigrationNotify(tenant, Actions.MigrationPortalStart, targetRegion, string.Empty, notifyUsers);
2020-05-20 15:14:44 +00:00
}
2020-06-29 09:32:43 +00:00
public void SendAboutTransferComplete(Tenant tenant, string targetRegion, string targetAddress, bool notifyOnlyOwner)
{
MigrationNotify(tenant, Actions.MigrationPortalSuccess, targetRegion, targetAddress, !notifyOnlyOwner);
2020-05-20 15:14:44 +00:00
}
2020-06-29 09:32:43 +00:00
public void SendAboutTransferError(Tenant tenant, string targetRegion, string resultAddress, bool notifyOnlyOwner)
{
MigrationNotify(tenant, !string.IsNullOrEmpty(targetRegion) ? Actions.MigrationPortalError : Actions.MigrationPortalServerFailure, targetRegion, resultAddress, !notifyOnlyOwner);
2020-05-20 15:14:44 +00:00
}
2020-06-29 09:32:43 +00:00
public void SendAboutBackupCompleted(Guid userId)
{
using var scope = ServiceProvider.CreateScope();
2020-07-28 07:35:17 +00:00
var scopeClass = scope.ServiceProvider.GetService<Scope>();
var client = WorkContext.NotifyContext.NotifyService.RegisterClient(scopeClass.StudioNotifySource, scope);
2020-06-29 09:32:43 +00:00
client.SendNoticeToAsync(
Actions.BackupCreated,
2020-07-28 07:35:17 +00:00
new[] { scopeClass.StudioNotifyHelper.ToRecipient(userId) },
2020-06-29 09:32:43 +00:00
new[] { StudioNotifyService.EMailSenderName },
2020-07-28 07:35:17 +00:00
new TagValue(Tags.OwnerName, scopeClass.UserManager.GetUsers(userId).DisplayUserName(scopeClass.DisplayUserSettingsHelper)));
2020-05-20 15:14:44 +00:00
}
2020-06-29 09:32:43 +00:00
public void SendAboutRestoreStarted(Tenant tenant, bool notifyAllUsers)
{
using var scope = ServiceProvider.CreateScope();
2020-07-28 07:35:17 +00:00
var scopeClass = scope.ServiceProvider.GetService<Scope>();
var client = WorkContext.NotifyContext.NotifyService.RegisterClient(scopeClass.StudioNotifySource, scope);
2020-06-29 09:32:43 +00:00
2020-07-28 07:35:17 +00:00
var owner = scopeClass.UserManager.GetUsers(tenant.OwnerId);
2020-06-29 09:32:43 +00:00
var users =
notifyAllUsers
2020-07-28 07:35:17 +00:00
? scopeClass.StudioNotifyHelper.RecipientFromEmail(scopeClass.UserManager.GetUsers(EmployeeStatus.Active).Where(r => r.ActivationStatus == EmployeeActivationStatus.Activated).Select(u => u.Email).ToList(), false)
: owner.ActivationStatus == EmployeeActivationStatus.Activated ? scopeClass.StudioNotifyHelper.RecipientFromEmail(owner.Email, false) : new IDirectRecipient[0];
2020-06-29 09:32:43 +00:00
client.SendNoticeToAsync(
Actions.RestoreStarted,
users,
new[] { StudioNotifyService.EMailSenderName });
2020-05-20 15:14:44 +00:00
}
2020-06-29 09:32:43 +00:00
public void SendAboutRestoreCompleted(Tenant tenant, bool notifyAllUsers)
{
using var scope = ServiceProvider.CreateScope();
2020-07-28 07:35:17 +00:00
var scopeClass = scope.ServiceProvider.GetService<Scope>();
var client = WorkContext.NotifyContext.NotifyService.RegisterClient(scopeClass.StudioNotifySource, scope);
2020-06-29 09:32:43 +00:00
2020-07-28 07:35:17 +00:00
var owner = scopeClass.UserManager.GetUsers(tenant.OwnerId);
2020-06-29 09:32:43 +00:00
var users =
notifyAllUsers
2020-07-28 07:35:17 +00:00
? scopeClass.UserManager.GetUsers(EmployeeStatus.Active).Select(u => scopeClass.StudioNotifyHelper.ToRecipient(u.ID)).ToArray()
: new[] { scopeClass.StudioNotifyHelper.ToRecipient(owner.ID) };
2020-06-29 09:32:43 +00:00
client.SendNoticeToAsync(
Actions.RestoreCompleted,
users,
new[] { StudioNotifyService.EMailSenderName },
2020-07-28 07:35:17 +00:00
new TagValue(Tags.OwnerName, owner.DisplayUserName(scopeClass.DisplayUserSettingsHelper)));
2020-06-29 09:32:43 +00:00
}
private void MigrationNotify(Tenant tenant, INotifyAction action, string region, string url, bool notify)
{
using var scope = ServiceProvider.CreateScope();
2020-07-29 21:57:58 +00:00
var scopeClass = scope.ServiceProvider.GetService<Scope>();
var client = WorkContext.NotifyContext.NotifyService.RegisterClient(scopeClass.StudioNotifySource, scope);
2020-06-29 09:32:43 +00:00
2020-07-29 21:57:58 +00:00
var users = scopeClass.UserManager.GetUsers()
2020-06-29 09:32:43 +00:00
.Where(u => notify ? u.ActivationStatus.HasFlag(EmployeeActivationStatus.Activated) : u.IsOwner(tenant))
2020-07-29 21:57:58 +00:00
.Select(u => scopeClass.StudioNotifyHelper.ToRecipient(u.ID))
2020-06-29 09:32:43 +00:00
.ToArray();
if (users.Any())
{
client.SendNoticeToAsync(
action,
users,
new[] { StudioNotifyService.EMailSenderName },
new TagValue(Tags.RegionName, TransferResourceHelper.GetRegionDescription(region)),
new TagValue(Tags.PortalUrl, url));
}
2020-07-28 07:35:17 +00:00
}
class Scope
{
internal UserManager UserManager { get; }
internal StudioNotifyHelper StudioNotifyHelper { get; }
internal StudioNotifySource StudioNotifySource { get; }
internal DisplayUserSettingsHelper DisplayUserSettingsHelper { get; }
public Scope(UserManager userManager, StudioNotifyHelper studioNotifyHelper, StudioNotifySource studioNotifySource, DisplayUserSettingsHelper displayUserSettingsHelper)
{
UserManager = userManager;
StudioNotifyHelper = studioNotifyHelper;
StudioNotifySource = studioNotifySource;
DisplayUserSettingsHelper = displayUserSettingsHelper;
}
2020-05-20 15:14:44 +00:00
}
}
public static class NotifyHelperExtension
{
public static DIHelper AddNotifyHelperService(this DIHelper services)
{
2020-06-29 12:45:38 +00:00
services.TryAddSingleton<NotifyHelper>();
2020-06-29 09:32:43 +00:00
return services
2020-06-29 15:10:31 +00:00
.AddNotifyConfiguration()
2020-06-29 12:45:38 +00:00
.AddStudioNotifySourceService()
2020-06-29 09:32:43 +00:00
.AddUserManagerService()
.AddStudioNotifyHelperService()
.AddDisplayUserSettingsService();
}
}
2020-05-20 15:14:44 +00:00
}