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

215 lines
7.2 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.
*
*/
namespace ASC.Data.Backup.Storage
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 DocumentsBackupStorage : IBackupStorage
{
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;
2021-08-31 09:40:28 +00:00
public DocumentsBackupStorage(
SetupInfo setupInfo,
TenantManager tenantManager,
SecurityContext securityContext,
IDaoFactory daoFactory,
StorageFactory storageFactory,
2020-06-01 08:52:01 +00:00
IServiceProvider serviceProvider)
2021-08-31 09:40:28 +00:00
{
_setupInfo = setupInfo;
_tenantManager = tenantManager;
_securityContext = securityContext;
_daoFactory = daoFactory;
_storageFactory = storageFactory;
_serviceProvider = serviceProvider;
2020-05-20 15:14:44 +00:00
}
2022-02-09 18:33:50 +00:00
2021-08-31 09:40:28 +00:00
public void Init(int tenantId, string webConfigPath)
{
_tenantId = tenantId;
_webConfigPath = webConfigPath;
2020-06-10 12:35:10 +00:00
}
2022-02-09 18:33:50 +00:00
2020-05-20 15:14:44 +00:00
public string Upload(string folderId, string localPath, Guid userId)
2021-08-31 09:40:28 +00:00
{
_tenantManager.SetCurrentTenant(_tenantId);
2021-08-31 09:40:28 +00:00
if (!userId.Equals(Guid.Empty))
{
_securityContext.AuthenticateMeWithoutCookie(userId);
2021-08-31 09:40:28 +00:00
}
else
{
var tenant = _tenantManager.GetTenant(_tenantId);
_securityContext.AuthenticateMeWithoutCookie(tenant.OwnerId);
2021-08-31 09:40:28 +00:00
}
if (int.TryParse(folderId, out var fId))
{
return Upload(fId, localPath).ToString();
}
2020-06-01 08:52:01 +00:00
return Upload(folderId, localPath);
2020-05-20 15:14:44 +00:00
}
public void Download(string fileId, string targetLocalPath)
2021-08-31 09:40:28 +00:00
{
_tenantManager.SetCurrentTenant(_tenantId);
2021-08-31 09:40:28 +00:00
if (int.TryParse(fileId, out var fId))
{
DownloadDao(fId, targetLocalPath);
2022-02-09 18:33:50 +00:00
2021-08-31 09:40:28 +00:00
return;
}
DownloadDao(fileId, targetLocalPath);
2020-05-20 15:14:44 +00:00
}
public void Delete(string fileId)
2021-08-31 09:40:28 +00:00
{
_tenantManager.SetCurrentTenant(_tenantId);
2021-08-31 09:40:28 +00:00
if (int.TryParse(fileId, out var fId))
{
DeleteDao(fId);
2022-02-09 18:33:50 +00:00
2021-08-31 09:40:28 +00:00
return;
}
DeleteDao(fileId);
2020-05-20 15:14:44 +00:00
}
public bool IsExists(string fileId)
2021-08-31 09:40:28 +00:00
{
_tenantManager.SetCurrentTenant(_tenantId);
2021-08-31 09:40:28 +00:00
if (int.TryParse(fileId, out var fId))
{
return IsExistsDao(fId);
}
2020-06-01 08:52:01 +00:00
return IsExistsDao(fileId);
2020-05-20 15:14:44 +00:00
}
public string GetPublicLink(string fileId)
{
return string.Empty;
2021-08-31 09:40:28 +00:00
}
2020-06-01 08:52:01 +00:00
private T Upload<T>(T folderId, string localPath)
2021-08-31 09:40:28 +00:00
{
var folderDao = GetFolderDao<T>();
var fileDao = GetFileDao<T>();
var folder = folderDao.GetFolder(folderId);
if (folder == null)
{
throw new FileNotFoundException("Folder not found.");
}
using var source = File.OpenRead(localPath);
var newFile = _serviceProvider.GetService<File<T>>();
2021-08-31 09:40:28 +00:00
newFile.Title = Path.GetFileName(localPath);
newFile.FolderID = folder.ID;
newFile.ContentLength = source.Length;
File<T> file = null;
var buffer = new byte[_setupInfo.ChunkUploadSize];
2021-08-31 09:40:28 +00:00
var chunkedUploadSession = fileDao.CreateUploadSession(newFile, source.Length);
chunkedUploadSession.CheckQuota = false;
var bytesRead = 0;
while ((bytesRead = source.Read(buffer, 0, (int)_setupInfo.ChunkUploadSize)) > 0)
2021-08-31 09:40:28 +00:00
{
using (var theMemStream = new MemoryStream())
{
theMemStream.Write(buffer, 0, bytesRead);
theMemStream.Position = 0;
file = fileDao.UploadChunk(chunkedUploadSession, theMemStream, bytesRead);
}
}
return file.ID;
}
2020-06-01 08:52:01 +00:00
private void DownloadDao<T>(T fileId, string targetLocalPath)
2021-08-31 09:40:28 +00:00
{
_tenantManager.SetCurrentTenant(_tenantId);
2021-08-31 09:40:28 +00:00
var fileDao = GetFileDao<T>();
var file = fileDao.GetFile(fileId);
if (file == null)
{
throw new FileNotFoundException("File not found.");
}
using var source = fileDao.GetFileStream(file);
using var destination = File.OpenWrite(targetLocalPath);
source.CopyTo(destination);
}
2020-06-01 08:52:01 +00:00
private void DeleteDao<T>(T fileId)
2021-08-31 09:40:28 +00:00
{
var fileDao = GetFileDao<T>();
fileDao.DeleteFile(fileId);
}
2020-06-01 08:52:01 +00:00
private bool IsExistsDao<T>(T fileId)
2021-08-31 09:40:28 +00:00
{
var fileDao = GetFileDao<T>();
try
{
var file = fileDao.GetFile(fileId);
2022-02-09 18:33:50 +00:00
2021-08-31 09:40:28 +00:00
return file != null && file.RootFolderType != FolderType.TRASH;
}
catch (Exception)
{
return false;
}
}
private IFolderDao<T> GetFolderDao<T>()
{
return _daoFactory.GetFolderDao<T>();
2021-08-31 09:40:28 +00:00
}
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>();
2021-08-31 09:40:28 +00:00
}
2020-05-20 15:14:44 +00:00
}
}