DocSpace-buildtools/common/ASC.Data.Backup.Core/Tasks/TransferPortalTask.cs

264 lines
11 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;
using System.Data.Common;
using System.IO;
using System.Linq;
2020-08-12 09:58:08 +00:00
2020-08-24 18:41:06 +00:00
using ASC.Common;
2020-05-20 15:14:44 +00:00
using ASC.Common.Logging;
2021-08-31 09:40:28 +00:00
using ASC.Common.Utils;
2020-06-15 08:19:40 +00:00
using ASC.Core.Tenants;
2020-05-20 15:14:44 +00:00
using ASC.Data.Backup.Extensions;
using ASC.Data.Backup.Tasks.Modules;
using ASC.Data.Storage;
2020-08-12 09:58:08 +00:00
2020-06-08 10:40:26 +00:00
using Microsoft.Extensions.DependencyInjection;
2020-06-15 08:19:40 +00:00
using Microsoft.Extensions.Options;
2020-05-20 15:14:44 +00:00
namespace ASC.Data.Backup.Tasks
2021-08-31 09:40:28 +00:00
{
2020-10-19 15:53:15 +00:00
[Scope]
2020-05-20 15:14:44 +00:00
public class TransferPortalTask : PortalTaskBase
{
public const string DefaultDirectoryName = "backup";
public string ToConfigPath { get; private set; }
public string BackupDirectory { get; set; }
public bool DeleteBackupFileAfterCompletion { get; set; }
public bool BlockOldPortalAfterStart { get; set; }
public bool DeleteOldPortalAfterCompletion { get; set; }
2021-08-31 09:40:28 +00:00
private IOptionsMonitor<ILog> Options { get; set; }
private TempStream TempStream { get; }
private TempPath TempPath { get; }
2020-08-12 09:58:08 +00:00
private IServiceProvider ServiceProvider { get; set; }
2021-05-17 18:27:39 +00:00
public int ToTenantId { get; private set; }
2020-05-20 15:14:44 +00:00
public int Limit { get; private set; }
2021-08-31 09:40:28 +00:00
public TransferPortalTask(
DbFactory dbFactory,
IServiceProvider serviceProvider,
IOptionsMonitor<ILog> options,
StorageFactory storageFactory,
StorageFactoryConfig storageFactoryConfig,
ModuleProvider moduleProvider,
TempStream tempStream,
2021-05-21 13:26:42 +00:00
TempPath tempPath)
2020-06-10 12:35:10 +00:00
: base(dbFactory, options, storageFactory, storageFactoryConfig, moduleProvider)
2020-05-20 15:14:44 +00:00
{
2020-06-08 10:40:26 +00:00
DeleteBackupFileAfterCompletion = true;
BlockOldPortalAfterStart = true;
DeleteOldPortalAfterCompletion = true;
2021-08-31 09:40:28 +00:00
Options = options;
TempStream = tempStream;
TempPath = tempPath;
2020-06-08 10:40:26 +00:00
ServiceProvider = serviceProvider;
2020-08-12 09:58:08 +00:00
}
2020-06-15 08:19:40 +00:00
2020-06-08 10:40:26 +00:00
public void Init(int tenantId, string fromConfigPath, string toConfigPath, int limit, string backupDirectory)
{
2020-08-12 09:58:08 +00:00
Limit = limit;
2020-06-15 08:19:40 +00:00
ToConfigPath = toConfigPath ?? throw new ArgumentNullException("toConfigPath");
2020-06-08 10:40:26 +00:00
Init(tenantId, fromConfigPath);
2020-05-20 15:14:44 +00:00
2020-06-08 10:40:26 +00:00
BackupDirectory = backupDirectory;
2020-05-20 15:14:44 +00:00
}
public override void RunJob()
{
Logger.DebugFormat("begin transfer {0}", TenantId);
2020-11-24 10:15:11 +00:00
var fromDbFactory = new DbFactory(null, null);
var toDbFactory = new DbFactory(null, null);
2020-05-29 14:50:39 +00:00
var tenantAlias = GetTenantAlias(fromDbFactory);
var backupFilePath = GetBackupFilePath(tenantAlias);
2020-05-20 15:14:44 +00:00
var columnMapper = new ColumnMapper();
try
{
//target db can have error tenant from the previous attempts
SaveTenant(toDbFactory, tenantAlias, TenantStatus.RemovePending, tenantAlias + "_error", "status = " + TenantStatus.Restoring.ToString("d"));
if (BlockOldPortalAfterStart)
{
SaveTenant(fromDbFactory, tenantAlias, TenantStatus.Transfering);
}
SetStepsCount(ProcessStorage ? 3 : 2);
//save db data to temporary file
2020-06-08 10:40:26 +00:00
var backupTask = ServiceProvider.GetService<BackupPortalTask>();
backupTask.Init(TenantId, ConfigPath, backupFilePath, Limit);
backupTask.ProcessStorage = false;
2020-05-20 15:14:44 +00:00
backupTask.ProgressChanged += (sender, args) => SetCurrentStepProgress(args.Progress);
foreach (var moduleName in IgnoredModules)
{
backupTask.IgnoreModule(moduleName);
}
backupTask.RunJob();
2020-06-08 10:40:26 +00:00
2020-05-20 15:14:44 +00:00
//restore db data from temporary file
2020-06-08 10:40:26 +00:00
var restoreTask = ServiceProvider.GetService<RestorePortalTask>();
restoreTask.Init(ToConfigPath, backupFilePath, columnMapper: columnMapper);
restoreTask.ProcessStorage = false;
2020-05-20 15:14:44 +00:00
restoreTask.ProgressChanged += (sender, args) => SetCurrentStepProgress(args.Progress);
foreach (var moduleName in IgnoredModules)
{
restoreTask.IgnoreModule(moduleName);
}
restoreTask.RunJob();
//transfer files
if (ProcessStorage)
{
DoTransferStorage(columnMapper);
}
SaveTenant(toDbFactory, tenantAlias, TenantStatus.Active);
if (DeleteOldPortalAfterCompletion)
{
SaveTenant(fromDbFactory, tenantAlias, TenantStatus.RemovePending, tenantAlias + "_deleted");
}
else if (BlockOldPortalAfterStart)
{
SaveTenant(fromDbFactory, tenantAlias, TenantStatus.Active);
2021-08-31 09:40:28 +00:00
}
2021-05-17 18:27:39 +00:00
ToTenantId = columnMapper.GetTenantMapping();
2020-05-20 15:14:44 +00:00
}
catch
{
SaveTenant(fromDbFactory, tenantAlias, TenantStatus.Active);
if (columnMapper.GetTenantMapping() > 0)
{
SaveTenant(toDbFactory, tenantAlias, TenantStatus.RemovePending, tenantAlias + "_error");
}
throw;
}
finally
{
if (DeleteBackupFileAfterCompletion)
{
File.Delete(backupFilePath);
}
Logger.DebugFormat("end transfer {0}", TenantId);
}
}
private void DoTransferStorage(ColumnMapper columnMapper)
{
Logger.Debug("begin transfer storage");
var fileGroups = GetFilesToProcess(TenantId).GroupBy(file => file.Module).ToList();
2020-05-29 14:50:39 +00:00
var groupsProcessed = 0;
2020-05-20 15:14:44 +00:00
foreach (var group in fileGroups)
{
2020-06-10 12:35:10 +00:00
var baseStorage = StorageFactory.GetStorage(ConfigPath, TenantId.ToString(), group.Key);
var destStorage = StorageFactory.GetStorage(ToConfigPath, columnMapper.GetTenantMapping().ToString(), group.Key);
2021-05-21 13:26:42 +00:00
var utility = new CrossModuleTransferUtility(Options, TempStream, TempPath, baseStorage, destStorage);
2020-05-20 15:14:44 +00:00
2020-05-29 14:50:39 +00:00
foreach (var file in group)
2020-05-20 15:14:44 +00:00
{
2020-05-29 14:50:39 +00:00
var adjustedPath = file.Path;
2020-05-20 15:14:44 +00:00
2020-06-08 10:40:26 +00:00
var module = ModuleProvider.GetByStorageModule(file.Module, file.Domain);
2020-05-20 15:14:44 +00:00
if (module == null || module.TryAdjustFilePath(false, columnMapper, ref adjustedPath))
{
try
{
utility.CopyFile(file.Domain, file.Path, file.Domain, adjustedPath);
}
catch (Exception error)
{
Logger.WarnFormat("Can't copy file ({0}:{1}): {2}", file.Module, file.Path, error);
}
}
else
{
Logger.WarnFormat("Can't adjust file path \"{0}\".", file.Path);
}
}
SetCurrentStepProgress((int)(++groupsProcessed * 100 / (double)fileGroups.Count));
}
if (fileGroups.Count == 0)
SetStepCompleted();
Logger.Debug("end transfer storage");
}
private void SaveTenant(DbFactory dbFactory, string alias, TenantStatus status, string newAlias = null, string whereCondition = null)
{
2020-09-29 10:28:03 +00:00
using var connection = dbFactory.OpenConnection();
if (newAlias == null)
2020-05-20 15:14:44 +00:00
{
2020-09-29 10:28:03 +00:00
newAlias = alias;
}
else if (newAlias != alias)
{
newAlias = GetUniqAlias(connection, newAlias);
2020-05-20 15:14:44 +00:00
}
2020-09-29 10:28:03 +00:00
2022-01-14 13:12:37 +00:00
var commandText = "update tenants_tenants " +
2020-09-29 10:28:03 +00:00
"set " +
2022-01-14 13:12:37 +00:00
$" status={status.ToString("d")}, " +
$" alias = '{newAlias}', " +
$" last_modified='{DateTime.UtcNow.ToString("yyyy-MM-dd HH:mm:ss")}', " +
$" statuschanged='{DateTime.UtcNow.ToString("yyyy-MM-dd HH:mm:ss")}' " +
$"where alias = '{alias}'";
2020-09-29 10:28:03 +00:00
if (!string.IsNullOrEmpty(whereCondition))
2022-01-21 13:46:30 +00:00
commandText += " and " + whereCondition;
2020-09-29 10:28:03 +00:00
var command = connection.CreateCommand();
command.CommandText = commandText;
2020-10-12 19:39:23 +00:00
command.WithTimeout(120).ExecuteNonQuery();
2020-05-20 15:14:44 +00:00
}
private string GetTenantAlias(DbFactory dbFactory)
{
2020-09-29 10:28:03 +00:00
using var connection = dbFactory.OpenConnection();
var command = connection.CreateCommand();
command.CommandText = "select alias from tenants_tenants where id = " + TenantId;
return (string)command.WithTimeout(120).ExecuteScalar();
2020-05-20 15:14:44 +00:00
}
private static string GetUniqAlias(DbConnection connection, string alias)
{
2020-05-26 08:52:47 +00:00
var command = connection.CreateCommand();
command.CommandText = "select count(*) from tenants_tenants where alias like '" + alias + "%'";
return alias + command.WithTimeout(120).ExecuteScalar();
2020-05-20 15:14:44 +00:00
}
private string GetBackupFilePath(string tenantAlias)
{
if (!Directory.Exists(BackupDirectory ?? DefaultDirectoryName))
2020-10-12 19:39:23 +00:00
Directory.CreateDirectory(BackupDirectory ?? DefaultDirectoryName);
2020-05-20 15:14:44 +00:00
return CrossPlatform.PathCombine(BackupDirectory ?? DefaultDirectoryName, tenantAlias + DateTime.UtcNow.ToString("(yyyy-MM-dd HH-mm-ss)") + ".backup");
2020-05-20 15:14:44 +00:00
}
2020-08-24 18:41:06 +00:00
}
2020-05-20 15:14:44 +00:00
}