DocSpace-client/products/ASC.Files/Server/Utils/ChunkedUploadSessionHolder.cs

133 lines
4.9 KiB
C#
Raw Normal View History

2020-01-27 11:15:18 +00:00
/*
*
* (c) Copyright Ascensio System Limited 2010-2018
*
* 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.IO;
2020-02-11 15:10:30 +00:00
2020-02-17 08:58:14 +00:00
using ASC.Common;
2020-02-11 15:10:30 +00:00
using ASC.Common.Logging;
2020-01-27 11:15:18 +00:00
using ASC.Core.ChunkedUploader;
2020-02-11 15:10:30 +00:00
using ASC.Files.Core;
using ASC.Web.Files.Classes;
2020-01-27 11:15:18 +00:00
using ASC.Web.Studio.Core;
2020-02-11 15:10:30 +00:00
using Microsoft.Extensions.Options;
2020-01-27 11:15:18 +00:00
namespace ASC.Web.Files.Utils
{
2020-02-11 15:10:30 +00:00
public class ChunkedUploadSessionHolder
2020-01-27 11:15:18 +00:00
{
public static readonly TimeSpan SlidingExpiration = TimeSpan.FromHours(12);
2020-02-11 15:10:30 +00:00
public IOptionsMonitor<ILog> Options { get; }
public GlobalStore GlobalStore { get; }
public SetupInfo SetupInfo { get; }
2020-01-27 11:15:18 +00:00
2020-02-11 15:10:30 +00:00
public ChunkedUploadSessionHolder(IOptionsMonitor<ILog> options, GlobalStore globalStore, SetupInfo setupInfo)
2020-01-27 11:15:18 +00:00
{
2020-02-19 08:37:52 +00:00
Options = options;
GlobalStore = globalStore;
SetupInfo = setupInfo;
2020-01-27 11:15:18 +00:00
// clear old sessions
try
{
CommonSessionHolder(false).DeleteExpired();
}
catch (Exception err)
{
2020-02-11 15:10:30 +00:00
options.CurrentValue.Error(err);
2020-01-27 11:15:18 +00:00
}
}
2020-03-02 12:31:53 +00:00
public void StoreSession<T>(ChunkedUploadSession<T> s)
2020-01-27 11:15:18 +00:00
{
CommonSessionHolder(false).Store(s);
}
2020-03-02 12:31:53 +00:00
public void RemoveSession<T>(ChunkedUploadSession<T> s)
2020-01-27 11:15:18 +00:00
{
CommonSessionHolder(false).Remove(s);
}
2020-03-02 12:31:53 +00:00
public ChunkedUploadSession<T> GetSession<T>(string sessionId)
2020-01-27 11:15:18 +00:00
{
2020-04-20 08:08:04 +00:00
return (ChunkedUploadSession<T>)GetSession(sessionId);
}
public CommonChunkedUploadSession GetSession(string sessionId)
{
return CommonSessionHolder(false).Get(sessionId);
2020-01-27 11:15:18 +00:00
}
2020-03-02 12:31:53 +00:00
public ChunkedUploadSession<T> CreateUploadSession<T>(File<T> file, long contentLength)
2020-01-27 11:15:18 +00:00
{
2020-03-02 12:31:53 +00:00
var result = new ChunkedUploadSession<T>(file, contentLength);
2020-01-27 11:15:18 +00:00
CommonSessionHolder().Init(result);
return result;
}
2020-03-02 12:31:53 +00:00
public void UploadChunk<T>(ChunkedUploadSession<T> uploadSession, Stream stream, long length)
2020-01-27 11:15:18 +00:00
{
CommonSessionHolder().UploadChunk(uploadSession, stream, length);
}
2020-03-02 12:31:53 +00:00
public void FinalizeUploadSession<T>(ChunkedUploadSession<T> uploadSession)
2020-01-27 11:15:18 +00:00
{
CommonSessionHolder().Finalize(uploadSession);
}
2020-03-02 12:31:53 +00:00
public void Move<T>(ChunkedUploadSession<T> chunkedUploadSession, string newPath)
2020-01-27 11:15:18 +00:00
{
CommonSessionHolder().Move(chunkedUploadSession, newPath);
}
2020-03-02 12:31:53 +00:00
public void AbortUploadSession<T>(ChunkedUploadSession<T> uploadSession)
2020-01-27 11:15:18 +00:00
{
CommonSessionHolder().Abort(uploadSession);
}
2020-03-02 12:31:53 +00:00
public Stream UploadSingleChunk<T>(ChunkedUploadSession<T> uploadSession, Stream stream, long chunkLength)
2020-01-27 11:15:18 +00:00
{
return CommonSessionHolder().UploadSingleChunk(uploadSession, stream, chunkLength);
}
2020-02-11 15:10:30 +00:00
private CommonChunkedUploadSessionHolder CommonSessionHolder(bool currentTenant = true)
{
return new CommonChunkedUploadSessionHolder(Options, GlobalStore.GetStore(currentTenant), FileConstant.StorageDomainTmp, SetupInfo.ChunkUploadSize);
}
2020-01-27 11:15:18 +00:00
}
2020-02-12 13:50:38 +00:00
public static class ChunkedUploadSessionHolderExtention
{
2020-02-17 08:58:14 +00:00
public static DIHelper AddChunkedUploadSessionHolderService(this DIHelper services)
2020-02-12 13:50:38 +00:00
{
services.TryAddScoped<ChunkedUploadSessionHolder>();
return services
.AddGlobalStoreService()
.AddSetupInfo();
}
}
2020-01-27 11:15:18 +00:00
}