DocSpace-client/common/ASC.Data.Backup.Core/Core/FileBackupProvider.cs

221 lines
7.3 KiB
C#

namespace ASC.Data.Backup;
[Scope]
public class FileBackupProvider : IBackupProvider
{
public string Name => "Files";
private readonly IEnumerable<string> _allowedModules;
private readonly ILog _logger;
private readonly StorageFactory _storageFactory;
private readonly StorageFactoryConfig _storageFactoryConfig;
public FileBackupProvider(IOptionsMonitor<ILog> options, StorageFactory storageFactory, StorageFactoryConfig storageFactoryConfig)
{
_storageFactory = storageFactory;
_storageFactoryConfig = storageFactoryConfig;
_logger = options.CurrentValue;
}
public FileBackupProvider()
{
_allowedModules = new List<string>() { "forum", "photo", "bookmarking", "wiki", "files", "crm", "projects", "logo", "fckuploaders", "talk" };
}
public event EventHandler<ProgressChangedEventArgs> ProgressChanged;
public IEnumerable<XElement> GetElements(int tenant, string[] configs, IDataWriteOperator writer)
{
InvokeProgressChanged("Saving files...", 0);
var config = GetWebConfig(configs);
var files = ComposeFiles(tenant, config);
var elements = new List<XElement>();
var backupKeys = new List<string>();
var counter = 0;
var totalCount = (double)files.Count();
foreach (var file in files)
{
var backupPath = GetBackupPath(file);
if (!backupKeys.Contains(backupPath))
{
var storage = _storageFactory.GetStorage(config, tenant.ToString(), file.Module);
var errors = 0;
while (true)
{
try
{
using var stream = storage.GetReadStreamAsync(file.Domain, file.Path).Result;
writer.WriteEntry(backupPath, stream);
break;
}
catch (Exception error)
{
errors++;
if (20 < errors)
{
_logger.ErrorFormat("Can not backup file {0}: {1}", file.Path, error);
break;
}
}
}
elements.Add(file.ToXElement());
backupKeys.Add(backupPath);
_logger.DebugFormat("Backup file {0}", file.Path);
}
InvokeProgressChanged("Saving file " + file.Path, counter++ / totalCount * 100);
}
return elements;
}
public void LoadFrom(IEnumerable<XElement> elements, int tenant, string[] configs, IDataReadOperator dataOperator)
{
InvokeProgressChanged("Restoring files...", 0);
var config = GetWebConfig(configs);
var files = elements.Where(e => e.Name == "file");
double current = 0;
foreach (var file in files)
{
var backupInfo = new FileBackupInfo(file);
if (_allowedModules.Contains(backupInfo.Module))
{
using (var entry = dataOperator.GetEntry(GetBackupPath(backupInfo)))
{
var storage = _storageFactory.GetStorage(config, tenant.ToString(), backupInfo.Module, null);
try
{
storage.SaveAsync(backupInfo.Domain, backupInfo.Path, entry).Wait();
}
catch (Exception error)
{
_logger.ErrorFormat("Can not restore file {0}: {1}", file, error);
}
}
InvokeProgressChanged("Restoring file " + backupInfo.Path, current++ / files.Count() * 100);
}
}
}
private IEnumerable<FileBackupInfo> ComposeFiles(int tenant, string config)
{
var files = new List<FileBackupInfo>();
foreach (var module in _storageFactoryConfig.GetModuleList(config))
{
if (_allowedModules.Contains(module))
{
var store = _storageFactory.GetStorage(config, tenant.ToString(), module);
var domainList = _storageFactoryConfig.GetDomainList(config, module);
foreach (var domain in domainList)
{
files.AddRange(store
.ListFilesRelativeAsync(domain, "\\", "*.*", true).ToArrayAsync().Result
.Select(x => new FileBackupInfo(domain, module, x)));
}
files.AddRange(store
.ListFilesRelativeAsync(string.Empty, "\\", "*.*", true).ToArrayAsync().Result
.Where(x => domainList.All(domain => x.IndexOf($"{domain}/") == -1))
.Select(x => new FileBackupInfo(string.Empty, module, x)));
}
}
return files.Distinct();
}
private string GetBackupPath(FileBackupInfo backupInfo)
{
return CrossPlatform.PathCombine(backupInfo.Module, CrossPlatform.PathCombine(backupInfo.Domain, backupInfo.Path.Replace('/', '\\')));
}
private string GetWebConfig(string[] configs)
{
return configs.Where(c => "Web.config".Equals(Path.GetFileName(c), StringComparison.InvariantCultureIgnoreCase)).SingleOrDefault();
}
private void InvokeProgressChanged(string status, double currentProgress)
{
try
{
ProgressChanged?.Invoke(this, new ProgressChangedEventArgs(status, (int)currentProgress));
}
catch (Exception error)
{
_logger.Error("InvokeProgressChanged", error);
}
}
private class FileBackupInfo
{
public string Module { get; set; }
public string Domain { get; set; }
public string Path { get; set; }
public int Errors { get; set; }
public FileBackupInfo(string domain, string module, string path)
{
Domain = domain;
Module = module;
Path = path;
}
public FileBackupInfo(XElement element)
{
Domain = element.Attribute("domain").Value;
Module = element.Attribute("module").Value;
Path = element.Attribute("path").Value;
}
public XElement ToXElement()
{
return new XElement("file",
new XAttribute("module", Module),
new XAttribute("domain", Domain),
new XAttribute("path", Path)
);
}
public override bool Equals(object obj)
{
if (obj is null)
{
return false;
}
if (ReferenceEquals(this, obj))
{
return true;
}
if (obj.GetType() != typeof(FileBackupInfo))
{
return false;
}
return Equals((FileBackupInfo)obj);
}
public bool Equals(FileBackupInfo other)
{
if (other is null)
{
return false;
}
if (ReferenceEquals(this, other))
{
return true;
}
return Equals(other.Module, Module) && Equals(other.Domain, Domain) && Equals(other.Path, Path);
}
public override int GetHashCode()
{
return HashCode.Combine(Module, Domain, Path);
}
}
}