DocSpace-buildtools/common/services/ASC.Data.Backup/Tasks/PortalTaskBase.cs

322 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.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
2020-06-15 08:19:40 +00:00
using System.Threading.Tasks;
2020-05-20 15:14:44 +00:00
using ASC.Common.Logging;
using ASC.Data.Backup.Tasks.Modules;
2020-06-15 08:19:40 +00:00
using ASC.Data.Storage;
2020-05-20 15:14:44 +00:00
using Microsoft.Extensions.Options;
namespace ASC.Data.Backup.Tasks
{
public class ProgressChangedEventArgs : EventArgs
{
2020-06-15 08:19:40 +00:00
public int Progress { get; private set; }
2020-05-20 15:14:44 +00:00
public ProgressChangedEventArgs(int progress)
{
2020-06-15 08:19:40 +00:00
Progress = progress;
2020-05-20 15:14:44 +00:00
}
}
public abstract class PortalTaskBase
{
protected const int TasksLimit = 10;
protected readonly List<ModuleName> IgnoredModules = new List<ModuleName>();
protected readonly List<string> IgnoredTables = new List<string>(); //todo: add using to backup and transfer tasks
2020-06-10 12:35:10 +00:00
protected StorageFactory StorageFactory { get; set; }
protected StorageFactoryConfig StorageFactoryConfig
{ get; set; }
protected ILog Logger { get; set; }
2020-05-20 15:14:44 +00:00
public int Progress { get; private set; }
public int TenantId { get; private set; }
public string ConfigPath { get; private set; }
public bool ProcessStorage { get; set; }
2020-06-10 12:35:10 +00:00
public ModuleProvider ModuleProvider { get; set; }
public DbFactory DbFactory { get; set; }
2020-05-20 15:14:44 +00:00
2020-06-10 12:35:10 +00:00
protected PortalTaskBase(DbFactory dbFactory, IOptionsMonitor<ILog> options, StorageFactory storageFactory, StorageFactoryConfig storageFactoryConfig, ModuleProvider moduleProvider)
2020-05-20 15:14:44 +00:00
{
Logger = options.CurrentValue;
ProcessStorage = true;
2020-06-15 08:19:40 +00:00
StorageFactory = storageFactory;
StorageFactoryConfig = storageFactoryConfig;
ModuleProvider = moduleProvider;
2020-06-10 12:35:10 +00:00
DbFactory = dbFactory;
2020-05-20 15:14:44 +00:00
}
2020-06-08 10:40:26 +00:00
public void Init(int tenantId, string configPath)
{
TenantId = tenantId;
ConfigPath = configPath;
}
2020-05-20 15:14:44 +00:00
public void IgnoreModule(ModuleName moduleName)
{
if (!IgnoredModules.Contains(moduleName))
IgnoredModules.Add(moduleName);
}
public void IgnoreTable(string tableName)
{
if (!IgnoredTables.Contains(tableName))
IgnoredTables.Add(tableName);
}
public abstract void RunJob();
internal virtual IEnumerable<IModuleSpecifics> GetModulesToProcess()
{
2020-06-10 12:35:10 +00:00
return ModuleProvider.AllModules.Where(module => !IgnoredModules.Contains(module.ModuleName));
2020-05-20 15:14:44 +00:00
}
protected IEnumerable<BackupFileInfo> GetFilesToProcess(int tenantId)
{
var files = new List<BackupFileInfo>();
2020-06-10 12:35:10 +00:00
foreach (var module in StorageFactoryConfig.GetModuleList(ConfigPath).Where(IsStorageModuleAllowed))
2020-05-20 15:14:44 +00:00
{
2020-06-10 12:35:10 +00:00
var store = StorageFactory.GetStorage(ConfigPath, tenantId.ToString(), module);
var domains = StorageFactoryConfig.GetDomainList(ConfigPath, module).ToArray();
2020-05-20 15:14:44 +00:00
foreach (var domain in domains)
{
files.AddRange(
store.ListFilesRelative(domain, "\\", "*.*", true)
.Select(path => new BackupFileInfo(domain, module, path, tenantId)));
}
files.AddRange(
store.ListFilesRelative(string.Empty, "\\", "*.*", true)
.Where(path => domains.All(domain => !path.Contains(domain + "/")))
.Select(path => new BackupFileInfo(string.Empty, module, path, tenantId)));
}
return files.Distinct();
}
protected virtual bool IsStorageModuleAllowed(string storageModuleName)
{
var allowedStorageModules = new List<string>
{
"forum",
"photo",
"bookmarking",
"wiki",
"files",
"crm",
"projects",
"logo",
"fckuploaders",
"talk",
"mailaggregator",
"whitelabel"
};
if (!allowedStorageModules.Contains(storageModuleName))
return false;
2020-06-10 12:35:10 +00:00
var moduleSpecifics = ModuleProvider.GetByStorageModule(storageModuleName);
2020-05-20 15:14:44 +00:00
return moduleSpecifics == null || !IgnoredModules.Contains(moduleSpecifics.ModuleName);
}
#region Progress
public event EventHandler<ProgressChangedEventArgs> ProgressChanged;
private int stepsCount = 1;
private volatile int stepsCompleted;
protected void SetStepsCount(int value)
{
if (value <= 0)
{
throw new ArgumentOutOfRangeException("value");
}
stepsCount = value;
Logger.Debug("Steps: " + stepsCount);
}
protected void SetStepCompleted(int increment = 1)
{
if (stepsCount == 1)
{
return;
}
if (stepsCompleted == stepsCount)
{
throw new InvalidOperationException("All steps completed.");
}
stepsCompleted += increment;
SetProgress(100 * stepsCompleted / stepsCount);
}
protected void SetCurrentStepProgress(int value)
{
if (value < 0 || value > 100)
{
throw new ArgumentOutOfRangeException("value");
}
if (value == 100)
{
SetStepCompleted();
}
else
{
SetProgress((100 * stepsCompleted + value) / stepsCount);
}
}
protected void SetProgress(int value)
{
if (value < 0 || value > 100)
{
throw new ArgumentOutOfRangeException("value");
}
if (Progress != value)
{
Progress = value;
OnProgressChanged(new ProgressChangedEventArgs(value));
}
}
protected virtual void OnProgressChanged(ProgressChangedEventArgs eventArgs)
{
2020-06-15 08:19:40 +00:00
ProgressChanged?.Invoke(this, eventArgs);
2020-05-20 15:14:44 +00:00
}
#endregion
protected Dictionary<string, string> ParseConnectionString(string connectionString)
{
var result = new Dictionary<string, string>();
var parsed = connectionString.Split(';');
foreach (var p in parsed)
{
if (string.IsNullOrEmpty(p.Trim())) continue;
var keyValue = p.Split('=');
result.Add(keyValue[0].ToLowerInvariant(), keyValue[1]);
}
return result;
}
2020-06-10 12:35:10 +00:00
protected void RunMysqlFile(string file, bool db = false)
2020-05-20 15:14:44 +00:00
{
2020-06-10 12:35:10 +00:00
var connectionString = ParseConnectionString(DbFactory.ConnectionStringSettings.ConnectionString);
2020-05-20 15:14:44 +00:00
var args = new StringBuilder()
.AppendFormat("-h {0} ", connectionString["server"])
.AppendFormat("-u {0} ", connectionString["user id"])
.AppendFormat("-p{0} ", connectionString["password"]);
if (db)
{
args.AppendFormat("-D {0} ", connectionString["database"]);
}
args.AppendFormat("-e \" source {0}\"", file);
Logger.DebugFormat("run mysql file {0} {1}", file, args.ToString());
var startInfo = new ProcessStartInfo
{
CreateNoWindow = false,
UseShellExecute = false,
FileName = "mysql",
RedirectStandardOutput = true,
RedirectStandardError = true,
WindowStyle = ProcessWindowStyle.Hidden,
Arguments = args.ToString()
};
using (var proc = Process.Start(startInfo))
{
if (proc != null)
{
proc.WaitForExit();
var error = proc.StandardError.ReadToEnd();
Logger.Error(!string.IsNullOrEmpty(error) ? error : proc.StandardOutput.ReadToEnd());
}
}
Logger.DebugFormat("complete mysql file {0}", file);
}
protected async Task RunMysqlFile(Stream stream, string delimiter = ";")
2020-06-15 08:19:40 +00:00
{
if (stream == null) return;
using (var reader = new StreamReader(stream, Encoding.UTF8))
{
string commandText;
while ((commandText = await reader.ReadLineAsync()) != null)
{
while (!commandText.EndsWith(delimiter))
{
var newline = await reader.ReadLineAsync();
if (newline == null)
{
break;
}
commandText += newline;
}
try
{
2020-06-10 12:35:10 +00:00
using (var connection = DbFactory.OpenConnection())
2020-05-26 08:52:47 +00:00
{
var command = connection.CreateCommand();
command.CommandText = commandText;
await command.ExecuteNonQueryAsync();
2020-06-15 08:19:40 +00:00
}
// await dbManager.ExecuteNonQueryAsync(commandText, null);
}
catch (Exception e)
{
Logger.Error("Restore", e);
}
}
}
2020-05-20 15:14:44 +00:00
}
}
}