DocSpace-buildtools/common/ASC.Data.Backup.Core/Storage/DocumentsBackupStorage.cs

189 lines
5.2 KiB
C#
Raw Normal View History

namespace ASC.Data.Backup.Storage;
[Scope]
public class DocumentsBackupStorage : IBackupStorage
2021-08-31 09:40:28 +00:00
{
private int _tenantId;
private string _webConfigPath;
private readonly SetupInfo _setupInfo;
private readonly TenantManager _tenantManager;
private readonly SecurityContext _securityContext;
private readonly IDaoFactory _daoFactory;
private readonly StorageFactory _storageFactory;
private readonly IServiceProvider _serviceProvider;
public DocumentsBackupStorage(
SetupInfo setupInfo,
TenantManager tenantManager,
SecurityContext securityContext,
IDaoFactory daoFactory,
StorageFactory storageFactory,
IServiceProvider serviceProvider)
2020-05-20 15:14:44 +00:00
{
_setupInfo = setupInfo;
_tenantManager = tenantManager;
_securityContext = securityContext;
_daoFactory = daoFactory;
_storageFactory = storageFactory;
_serviceProvider = serviceProvider;
}
2022-02-09 18:33:50 +00:00
public void Init(int tenantId, string webConfigPath)
{
_tenantId = tenantId;
_webConfigPath = webConfigPath;
}
public string Upload(string folderId, string localPath, Guid userId)
{
_tenantManager.SetCurrentTenant(_tenantId);
if (!userId.Equals(Guid.Empty))
2021-08-31 09:40:28 +00:00
{
_securityContext.AuthenticateMeWithoutCookie(userId);
2020-06-10 12:35:10 +00:00
}
else
2021-08-31 09:40:28 +00:00
{
var tenant = _tenantManager.GetTenant(_tenantId);
_securityContext.AuthenticateMeWithoutCookie(tenant.OwnerId);
2020-05-20 15:14:44 +00:00
}
if (int.TryParse(folderId, out var fId))
2021-08-31 09:40:28 +00:00
{
return Upload(fId, localPath).ToString();
}
2022-02-09 18:33:50 +00:00
return Upload(folderId, localPath);
}
2021-08-31 09:40:28 +00:00
public void Download(string fileId, string targetLocalPath)
{
_tenantManager.SetCurrentTenant(_tenantId);
2020-05-20 15:14:44 +00:00
if (int.TryParse(fileId, out var fId))
2021-08-31 09:40:28 +00:00
{
DownloadDao(fId, targetLocalPath);
2021-08-31 09:40:28 +00:00
return;
}
2022-02-09 18:33:50 +00:00
DownloadDao(fileId, targetLocalPath);
}
2021-08-31 09:40:28 +00:00
public void Delete(string fileId)
{
_tenantManager.SetCurrentTenant(_tenantId);
2020-05-20 15:14:44 +00:00
if (int.TryParse(fileId, out var fId))
2021-08-31 09:40:28 +00:00
{
DeleteDao(fId);
2021-08-31 09:40:28 +00:00
return;
2020-05-20 15:14:44 +00:00
}
DeleteDao(fileId);
}
public bool IsExists(string fileId)
{
_tenantManager.SetCurrentTenant(_tenantId);
if (int.TryParse(fileId, out var fId))
2020-05-20 15:14:44 +00:00
{
return IsExistsDao(fId);
2021-08-31 09:40:28 +00:00
}
return IsExistsDao(fileId);
}
2021-08-31 09:40:28 +00:00
public string GetPublicLink(string fileId)
{
return string.Empty;
}
2021-08-31 09:40:28 +00:00
private T Upload<T>(T folderId, string localPath)
{
var folderDao = GetFolderDao<T>();
var fileDao = GetFileDao<T>();
2021-08-31 09:40:28 +00:00
2021-12-23 11:46:21 +00:00
var folder = folderDao.GetFolderAsync(folderId).Result;
if (folder == null)
{
throw new FileNotFoundException("Folder not found.");
}
2021-08-31 09:40:28 +00:00
using var source = File.OpenRead(localPath);
var newFile = _serviceProvider.GetService<File<T>>();
newFile.Title = Path.GetFileName(localPath);
newFile.FolderID = folder.ID;
newFile.ContentLength = source.Length;
2021-08-31 09:40:28 +00:00
File<T> file = null;
var buffer = new byte[_setupInfo.ChunkUploadSize];
2021-12-23 11:46:21 +00:00
var chunkedUploadSession = fileDao.CreateUploadSessionAsync(newFile, source.Length).Result;
chunkedUploadSession.CheckQuota = false;
2021-08-31 09:40:28 +00:00
Merge branch 'feature/backend-refactor' into feature/asc-backup-core-refactor # Conflicts: # common/ASC.Data.Backup.Core/ActionInvoker.cs # common/ASC.Data.Backup.Core/BackupAjaxHandler.cs # common/ASC.Data.Backup.Core/Core/DbBackupProvider.cs # common/ASC.Data.Backup.Core/Core/DbHelper.cs # common/ASC.Data.Backup.Core/Core/FileBackupProvider.cs # common/ASC.Data.Backup.Core/Core/NotifyHelper.cs # common/ASC.Data.Backup.Core/Core/ZipOperator.cs # common/ASC.Data.Backup.Core/Exceptions/ThrowHelper.cs # common/ASC.Data.Backup.Core/Extensions/EnumerableExtensions.cs # common/ASC.Data.Backup.Core/Service/BackupWorker.cs # common/ASC.Data.Backup.Core/Storage/DocumentsBackupStorage.cs # common/ASC.Data.Backup.Core/Tasks/BackupPortalTask.cs # common/ASC.Data.Backup.Core/Tasks/ColumnMapper.cs # common/ASC.Data.Backup.Core/Tasks/Data/DataRowInfo.cs # common/ASC.Data.Backup.Core/Tasks/Data/TableInfo.cs # common/ASC.Data.Backup.Core/Tasks/DeletePortalTask.cs # common/ASC.Data.Backup.Core/Tasks/KeyHelper.cs # common/ASC.Data.Backup.Core/Tasks/Modules/MailModuleSpecifics.cs # common/ASC.Data.Backup.Core/Tasks/Modules/ModuleProvider.cs # common/ASC.Data.Backup.Core/Tasks/Modules/ModuleSpecificsBase.cs # common/ASC.Data.Backup.Core/Tasks/Modules/ProjectsModuleSpecifics.cs # common/ASC.Data.Backup.Core/Tasks/PortalTaskBase.cs # common/ASC.Data.Backup.Core/Tasks/RestoreDbModuleTask.cs # common/ASC.Data.Backup.Core/Tasks/RestorePortalTask.cs # common/ASC.Data.Backup.Core/Tasks/TransferPortalTask.cs
2022-02-15 16:56:43 +00:00
int bytesRead;
2021-08-31 09:40:28 +00:00
while ((bytesRead = source.Read(buffer, 0, (int)_setupInfo.ChunkUploadSize)) > 0)
2021-08-31 09:40:28 +00:00
{
using (var theMemStream = new MemoryStream())
2021-08-31 09:40:28 +00:00
{
theMemStream.Write(buffer, 0, bytesRead);
theMemStream.Position = 0;
2021-12-23 11:46:21 +00:00
file = fileDao.UploadChunkAsync(chunkedUploadSession, theMemStream, bytesRead).Result;
2021-08-31 09:40:28 +00:00
}
}
return file.ID;
}
private void DownloadDao<T>(T fileId, string targetLocalPath)
{
_tenantManager.SetCurrentTenant(_tenantId);
var fileDao = GetFileDao<T>();
var file = fileDao.GetFileAsync(fileId).Result;
if (file == null)
2021-08-31 09:40:28 +00:00
{
throw new FileNotFoundException("File not found.");
2021-08-31 09:40:28 +00:00
}
using var source = fileDao.GetFileStreamAsync(file).Result;
using var destination = File.OpenWrite(targetLocalPath);
source.CopyTo(destination);
}
private void DeleteDao<T>(T fileId)
{
var fileDao = GetFileDao<T>();
2021-11-15 11:31:47 +00:00
fileDao.DeleteFileAsync(fileId).Wait();
}
private bool IsExistsDao<T>(T fileId)
{
var fileDao = GetFileDao<T>();
try
2021-08-31 09:40:28 +00:00
{
var file = fileDao.GetFileAsync(fileId).Result;
2022-02-09 18:33:50 +00:00
return file != null && file.RootFolderType != FolderType.TRASH;
2021-08-31 09:40:28 +00:00
}
catch (Exception)
2021-08-31 09:40:28 +00:00
{
return false;
2021-08-31 09:40:28 +00:00
}
}
2021-08-31 09:40:28 +00:00
private IFolderDao<T> GetFolderDao<T>()
{
return _daoFactory.GetFolderDao<T>();
}
private IFileDao<T> GetFileDao<T>()
{
// hack: create storage using webConfigPath and put it into DataStoreCache
// FileDao will use this storage and will not try to create the new one from service config
_storageFactory.GetStorage(_webConfigPath, _tenantId.ToString(), "files");
return _daoFactory.GetFileDao<T>();
2020-05-20 15:14:44 +00:00
}
}