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

213 lines
6.8 KiB
C#
Raw Normal View History

2022-03-15 18:00:53 +00:00
// (c) Copyright Ascensio System SIA 2010-2022
//
// This program is a free software product.
// You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL 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 details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
//
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
//
// The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
//
// Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks.
//
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
namespace ASC.Data.Backup.Storage;
[Scope]
public class DocumentsBackupStorage : IBackupStorage
2021-08-31 09:40:28 +00:00
{
private int _tenantId;
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
2022-09-05 11:27:38 +00:00
public void Init(int tenantId)
{
_tenantId = tenantId;
}
2022-10-27 10:49:42 +00:00
public async Task<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
{
2022-10-27 10:49:42 +00:00
return (await Upload(fId, localPath)).ToString();
}
2022-02-09 18:33:50 +00:00
2022-10-27 10:49:42 +00:00
return await Upload(folderId, localPath);
}
2021-08-31 09:40:28 +00:00
2022-10-27 10:49:42 +00:00
public async Task 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
{
2022-10-27 10:49:42 +00:00
await DownloadDao(fId, targetLocalPath);
2021-08-31 09:40:28 +00:00
return;
}
2022-02-09 18:33:50 +00:00
2022-10-27 10:49:42 +00:00
await DownloadDao(fileId, targetLocalPath);
}
2021-08-31 09:40:28 +00:00
2022-10-27 10:49:42 +00:00
public async Task 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
{
2022-10-27 10:49:42 +00:00
await DeleteDao(fId);
2021-08-31 09:40:28 +00:00
return;
2020-05-20 15:14:44 +00:00
}
2022-10-27 10:49:42 +00:00
await DeleteDao(fileId);
}
2022-10-27 10:49:42 +00:00
public async Task<bool> IsExists(string fileId)
{
_tenantManager.SetCurrentTenant(_tenantId);
if (int.TryParse(fileId, out var fId))
2020-05-20 15:14:44 +00:00
{
2022-10-27 10:49:42 +00:00
return await IsExistsDao(fId);
2021-08-31 09:40:28 +00:00
}
2022-10-27 10:49:42 +00:00
return await IsExistsDao(fileId);
}
2021-08-31 09:40:28 +00:00
2022-10-27 10:49:42 +00:00
public Task<string> GetPublicLink(string fileId)
{
2022-10-27 10:49:42 +00:00
return Task.FromResult(String.Empty);
}
2021-08-31 09:40:28 +00:00
2022-10-27 10:49:42 +00:00
private async Task<T> Upload<T>(T folderId, string localPath)
{
var folderDao = GetFolderDao<T>();
2022-04-14 19:42:15 +00:00
var fileDao = GetFileDao<T>();
2022-10-27 10:49:42 +00:00
var folder = await folderDao.GetFolderAsync(folderId);
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.ParentId = folder.Id;
newFile.ContentLength = source.Length;
2021-08-31 09:40:28 +00:00
File<T> file = null;
2022-04-14 19:42:15 +00:00
var buffer = new byte[_setupInfo.ChunkUploadSize];
2022-10-27 10:49:42 +00:00
var chunkedUploadSession = await fileDao.CreateUploadSessionAsync(newFile, source.Length);
2022-04-14 19:42:15 +00:00
chunkedUploadSession.CheckQuota = false;
int bytesRead;
2021-08-31 09:40:28 +00:00
2022-10-27 10:49:42 +00:00
while ((bytesRead = await source.ReadAsync(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
{
2022-10-27 10:49:42 +00:00
await theMemStream.WriteAsync(buffer, 0, bytesRead);
2022-04-14 19:42:15 +00:00
theMemStream.Position = 0;
2022-10-27 10:49:42 +00:00
file = await fileDao.UploadChunkAsync(chunkedUploadSession, theMemStream, bytesRead);
2021-08-31 09:40:28 +00:00
}
}
return file.Id;
}
2022-10-27 10:49:42 +00:00
private async Task DownloadDao<T>(T fileId, string targetLocalPath)
{
_tenantManager.SetCurrentTenant(_tenantId);
2022-04-14 19:42:15 +00:00
var fileDao = GetFileDao<T>();
2022-10-27 10:49:42 +00:00
var file = await fileDao.GetFileAsync(fileId);
if (file == null)
2021-08-31 09:40:28 +00:00
{
throw new FileNotFoundException("File not found.");
2022-04-14 19:42:15 +00:00
}
2022-10-27 10:49:42 +00:00
using var source = await fileDao.GetFileStreamAsync(file);
using var destination = File.OpenWrite(targetLocalPath);
2022-10-27 10:49:42 +00:00
await source.CopyToAsync(destination);
}
2022-10-27 10:49:42 +00:00
private async Task DeleteDao<T>(T fileId)
{
2022-04-14 19:42:15 +00:00
var fileDao = GetFileDao<T>();
2022-10-27 10:49:42 +00:00
await fileDao.DeleteFileAsync(fileId);
}
2022-10-27 10:49:42 +00:00
private async Task<bool> IsExistsDao<T>(T fileId)
{
var fileDao = GetFileDao<T>();
try
2022-04-14 19:42:15 +00:00
{
2022-10-27 10:49:42 +00:00
var file = await fileDao.GetFileAsync(fileId);
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(_tenantId, "files");
return _daoFactory.GetFileDao<T>();
2020-05-20 15:14:44 +00:00
}
}