/* * * (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.Collections.Generic; using System.Globalization; using System.IO; using System.Linq; using System.Net; using System.Runtime.Serialization; using System.Text; using System.Text.RegularExpressions; using System.Web; using ASC.Api.Core; using ASC.Api.Utils; using ASC.Common; using ASC.Common.Web; using ASC.Core; using ASC.Core.Common.Configuration; using ASC.Core.Users; using ASC.FederatedLogin.Helpers; using ASC.FederatedLogin.LoginProviders; using ASC.Files.Core; using ASC.Files.Model; using ASC.MessagingSystem; using ASC.Web.Api.Routing; using ASC.Web.Core; using ASC.Web.Core.Files; using ASC.Web.Files.Classes; using ASC.Web.Files.Configuration; using ASC.Web.Files.Helpers; using ASC.Web.Files.Services.DocumentService; using ASC.Web.Files.Services.WCFService; using ASC.Web.Files.Services.WCFService.FileOperations; using ASC.Web.Files.Utils; using ASC.Web.Studio.Utility; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Newtonsoft.Json.Linq; using FileShare = ASC.Files.Core.Security.FileShare; using MimeMapping = ASC.Common.Web.MimeMapping; using SortedByType = ASC.Files.Core.SortedByType; namespace ASC.Api.Documents { /// /// Provides access to documents /// [DefaultRoute] [ApiController] public class FilesController : ControllerBase { private readonly ApiContext ApiContext; private readonly FileStorageService FileStorageService; public FileStorageService FileStorageServiceInt { get; } public GlobalFolderHelper GlobalFolderHelper { get; } public FileWrapperHelper FileWrapperHelper { get; } public FilesSettingsHelper FilesSettingsHelper { get; } public FilesLinkUtility FilesLinkUtility { get; } public FileUploader FileUploader { get; } public DocumentServiceHelper DocumentServiceHelper { get; } public TenantManager TenantManager { get; } public SecurityContext SecurityContext { get; } public FolderWrapperHelper FolderWrapperHelper { get; } public FileOperationWraperHelper FileOperationWraperHelper { get; } public FileShareWrapperHelper FileShareWrapperHelper { get; } public FileShareParamsHelper FileShareParamsHelper { get; } public EntryManager EntryManager { get; } public UserManager UserManager { get; } public WebItemSecurity WebItemSecurity { get; } public CoreBaseSettings CoreBaseSettings { get; } public ThirdpartyConfiguration ThirdpartyConfiguration { get; } public BoxLoginProvider BoxLoginProvider { get; } public DropboxLoginProvider DropboxLoginProvider { get; } public GoogleLoginProvider GoogleLoginProvider { get; } public OneDriveLoginProvider OneDriveLoginProvider { get; } public MessageService MessageService { get; } public CommonLinkUtility CommonLinkUtility { get; } public DocumentServiceConnector DocumentServiceConnector { get; } public FolderContentWrapperHelper FolderContentWrapperHelper { get; } public WordpressToken WordpressToken { get; } public WordpressHelper WordpressHelper { get; } public ConsumerFactory ConsumerFactory { get; } public EasyBibHelper EasyBibHelper { get; } public ChunkedUploadSessionHelper ChunkedUploadSessionHelper { get; } public ProductEntryPoint ProductEntryPoint { get; } /// /// /// /// public FilesController( ApiContext context, FileStorageService fileStorageService, FileStorageService fileStorageServiceInt, GlobalFolderHelper globalFolderHelper, FileWrapperHelper fileWrapperHelper, FilesSettingsHelper filesSettingsHelper, FilesLinkUtility filesLinkUtility, FileUploader fileUploader, DocumentServiceHelper documentServiceHelper, TenantManager tenantManager, SecurityContext securityContext, FolderWrapperHelper folderWrapperHelper, FileOperationWraperHelper fileOperationWraperHelper, FileShareWrapperHelper fileShareWrapperHelper, FileShareParamsHelper fileShareParamsHelper, EntryManager entryManager, UserManager userManager, WebItemSecurity webItemSecurity, CoreBaseSettings coreBaseSettings, ThirdpartyConfiguration thirdpartyConfiguration, MessageService messageService, CommonLinkUtility commonLinkUtility, DocumentServiceConnector documentServiceConnector, FolderContentWrapperHelper folderContentWrapperHelper, WordpressToken wordpressToken, WordpressHelper wordpressHelper, ConsumerFactory consumerFactory, EasyBibHelper easyBibHelper, ChunkedUploadSessionHelper chunkedUploadSessionHelper, ProductEntryPoint productEntryPoint) { ApiContext = context; FileStorageService = fileStorageService; FileStorageServiceInt = fileStorageServiceInt; GlobalFolderHelper = globalFolderHelper; FileWrapperHelper = fileWrapperHelper; FilesSettingsHelper = filesSettingsHelper; FilesLinkUtility = filesLinkUtility; FileUploader = fileUploader; DocumentServiceHelper = documentServiceHelper; TenantManager = tenantManager; SecurityContext = securityContext; FolderWrapperHelper = folderWrapperHelper; FileOperationWraperHelper = fileOperationWraperHelper; FileShareWrapperHelper = fileShareWrapperHelper; FileShareParamsHelper = fileShareParamsHelper; EntryManager = entryManager; UserManager = userManager; WebItemSecurity = webItemSecurity; CoreBaseSettings = coreBaseSettings; ThirdpartyConfiguration = thirdpartyConfiguration; ConsumerFactory = consumerFactory; BoxLoginProvider = ConsumerFactory.Get(); DropboxLoginProvider = ConsumerFactory.Get(); GoogleLoginProvider = ConsumerFactory.Get(); OneDriveLoginProvider = ConsumerFactory.Get(); MessageService = messageService; CommonLinkUtility = commonLinkUtility; DocumentServiceConnector = documentServiceConnector; FolderContentWrapperHelper = folderContentWrapperHelper; WordpressToken = wordpressToken; WordpressHelper = wordpressHelper; EasyBibHelper = easyBibHelper; ChunkedUploadSessionHelper = chunkedUploadSessionHelper; ProductEntryPoint = productEntryPoint; } [Read("info")] public Module GetModule() { ProductEntryPoint.Init(); return new Module(ProductEntryPoint, true); } /// /// Returns the detailed list of files and folders located in the current user 'My Documents' section /// /// /// My folder /// /// Folders /// My folder contents [Read("@my")] public FolderContentWrapper GetMyFolder(Guid userIdOrGroupId, FilterType filterType) { return ToFolderContentWrapper(GlobalFolderHelper.FolderMy, userIdOrGroupId, filterType); } /// /// Returns the detailed list of files and folders located in the current user 'Projects Documents' section /// /// /// Projects folder /// /// Folders /// Projects folder contents [Read("@projects")] public FolderContentWrapper GetProjectsFolder(Guid userIdOrGroupId, FilterType filterType) { return ToFolderContentWrapper(GlobalFolderHelper.GetFolderProjects(), userIdOrGroupId, filterType); } /// /// Returns the detailed list of files and folders located in the 'Common Documents' section /// /// /// Common folder /// /// Folders /// Common folder contents [Read("@common")] public FolderContentWrapper GetCommonFolder(Guid userIdOrGroupId, FilterType filterType) { return ToFolderContentWrapper(GlobalFolderHelper.GetFolderCommon(), userIdOrGroupId, filterType); } /// /// Returns the detailed list of files and folders located in the 'Shared with Me' section /// /// /// Shared folder /// /// Folders /// Shared folder contents [Read("@share")] public FolderContentWrapper GetShareFolder(Guid userIdOrGroupId, FilterType filterType) { return ToFolderContentWrapper(GlobalFolderHelper.FolderShare, userIdOrGroupId, filterType); } /// /// Returns the detailed list of files and folders located in the 'Recycle Bin' section /// /// /// Trash folder /// /// Folders /// Trash folder contents [Read("@trash")] public FolderContentWrapper GetTrashFolder(Guid userIdOrGroupId, FilterType filterType) { return ToFolderContentWrapper(GlobalFolderHelper.GetFolderTrash(), userIdOrGroupId, filterType); } /// /// Returns the detailed list of files and folders located in the folder with the ID specified in the request /// /// /// Folder by ID /// /// Folders /// Folder ID /// User or group ID /// Filter type /// Folder contents [Read("{folderId}", order: int.MaxValue)] public FolderContentWrapper GetFolder(string folderId, Guid userIdOrGroupId, FilterType filterType) { return ToFolderContentWrapper(folderId, userIdOrGroupId, filterType).NotFoundIfNull(); } [Read("{folderId:int}", order: int.MaxValue)] public FolderContentWrapper GetFolder(int folderId, Guid userIdOrGroupId, FilterType filterType) { return ToFolderContentWrapper(folderId, userIdOrGroupId, filterType).NotFoundIfNull(); } /// /// Uploads the file specified with single file upload or standart multipart/form-data method to 'My Documents' section /// /// Upload to My /// Uploads /// /// ///
  • Single file upload. You should set Content-Type & Content-Disposition header to specify filename and content type, and send file in request body
  • ///
  • Using standart multipart/form-data method
  • /// ]]> ///
    /// Request Input stream /// Content-Type Header /// Content-Disposition Header /// List of files when posted as multipart/form-data /// Uploaded file [Create("@my/upload")] public object UploadFileToMy(UploadModel uploadModel) { uploadModel.CreateNewIfExist = false; return UploadFile(GlobalFolderHelper.FolderMy.ToString(), uploadModel); } /// /// Uploads the file specified with single file upload or standart multipart/form-data method to 'Common Documents' section /// /// Upload to Common /// Uploads /// /// ///
  • Single file upload. You should set Content-Type & Content-Disposition header to specify filename and content type, and send file in request body
  • ///
  • Using standart multipart/form-data method
  • /// ]]> ///
    /// Request Input stream /// Content-Type Header /// Content-Disposition Header /// List of files when posted as multipart/form-data /// Uploaded file [Create("@common/upload")] public object UploadFileToCommon(UploadModel uploadModel) { uploadModel.CreateNewIfExist = false; return UploadFile(GlobalFolderHelper.FolderCommon.ToString(), uploadModel); } /// /// Uploads the file specified with single file upload or standart multipart/form-data method to the selected folder /// /// Upload to folder /// Uploads /// /// ///
  • Single file upload. You should set Content-Type & Content-Disposition header to specify filename and content type, and send file in request body
  • ///
  • Using standart multipart/form-data method
  • /// ]]> ///
    /// Folder ID to upload to /// Request Input stream /// Content-Type Header /// Content-Disposition Header /// List of files when posted as multipart/form-data /// Create New If Exist /// If True, upload documents in original formats as well /// Keep status conversation after finishing /// Uploaded file [Create("{folderId}/upload")] public object UploadFile(string folderId, UploadModel uploadModel) { if (uploadModel.StoreOriginalFileFlag.HasValue) { FilesSettingsHelper.StoreOriginalFiles = uploadModel.StoreOriginalFileFlag.Value; } if (uploadModel.Files != null && uploadModel.Files.Any()) { if (uploadModel.Files.Count() == 1) { //Only one file. return it var postedFile = uploadModel.Files.First(); return InsertFile(folderId, postedFile.OpenReadStream(), postedFile.FileName, uploadModel.CreateNewIfExist, uploadModel.KeepConvertStatus); } //For case with multiple files return uploadModel.Files.Select(postedFile => InsertFile(folderId, postedFile.OpenReadStream(), postedFile.FileName, uploadModel.CreateNewIfExist, uploadModel.KeepConvertStatus)).ToList(); } if (uploadModel.File != null) { var fileName = "file" + MimeMapping.GetExtention(uploadModel.ContentType.MediaType); if (uploadModel.ContentDisposition != null) { fileName = uploadModel.ContentDisposition.FileName; } return InsertFile(folderId, uploadModel.File, fileName, uploadModel.CreateNewIfExist, uploadModel.KeepConvertStatus); } throw new InvalidOperationException("No input files"); } /// /// Uploads the file specified with single file upload to 'Common Documents' section /// /// Request Input stream /// Name of file which has to be uploaded /// Create New If Exist /// Keep status conversation after finishing /// Uploads /// [Create("@my/insert")] public FileWrapper InsertFileToMy(Stream file, string title, bool? createNewIfExist, bool keepConvertStatus = false) { return InsertFile(GlobalFolderHelper.FolderMy.ToString(), file, title, createNewIfExist, keepConvertStatus); } /// /// Uploads the file specified with single file upload to 'Common Documents' section /// /// Request Input stream /// Name of file which has to be uploaded /// Create New If Exist /// Keep status conversation after finishing /// Uploads /// [Create("@common/insert")] public FileWrapper InsertFileToCommon(Stream file, string title, bool? createNewIfExist, bool keepConvertStatus = false) { return InsertFile(GlobalFolderHelper.FolderCommon.ToString(), file, title, createNewIfExist, keepConvertStatus); } /// /// Uploads the file specified with single file upload /// /// Folder ID to upload to /// Request Input stream /// Name of file which has to be uploaded /// Create New If Exist /// Keep status conversation after finishing /// Uploads /// [Create("{folderId}/insert")] public FileWrapper InsertFile(string folderId, Stream file, string title, bool? createNewIfExist, bool keepConvertStatus = false) { try { var resultFile = FileUploader.Exec(folderId, title, file.Length, file, createNewIfExist ?? !FilesSettingsHelper.UpdateIfExist, !keepConvertStatus); return FileWrapperHelper.Get(resultFile); } catch (FileNotFoundException e) { throw new ItemNotFoundException("File not found", e); } catch (DirectoryNotFoundException e) { throw new ItemNotFoundException("Folder not found", e); } } /// /// /// /// /// /// /// /// false [Update("{fileId}/update")] public FileWrapper UpdateFileStream(Stream file, string fileId, bool encrypted = false) { try { var resultFile = FileStorageService.UpdateFileStream(fileId, file, encrypted); return FileWrapperHelper.Get(resultFile); } catch (FileNotFoundException e) { throw new ItemNotFoundException("File not found", e); } } /// /// /// /// File ID /// /// /// /// /// /// Files /// [Update("file/{fileId}/saveediting")] public FileWrapper SaveEditing(string fileId, string fileExtension, string downloadUri, Stream stream, string doc, bool forcesave) { return FileWrapperHelper.Get(FileStorageService.SaveEditing(fileId, fileExtension, downloadUri, stream, doc, forcesave)); } /// /// /// /// File ID /// /// /// Files /// [Create("file/{fileId}/startedit")] public string StartEdit(string fileId, bool editingAlone, string doc) { return FileStorageService.StartEdit(fileId, editingAlone, doc); } /// /// /// /// File ID /// /// /// /// /// Files /// [Read("file/{fileId}/trackeditfile")] public KeyValuePair TrackEditFile(string fileId, Guid tabId, string docKeyForTrack, string doc, bool isFinish) { return FileStorageService.TrackEditFile(fileId, tabId, docKeyForTrack, doc, isFinish); } /// /// /// /// File ID /// /// /// Files /// [Read("file/{fileId}/openedit")] public Configuration OpenEdit(string fileId, int version, string doc) { DocumentServiceHelper.GetParams(fileId, version, doc, true, true, true, out var configuration); configuration.Type = EditorType.External; configuration.Token = DocumentServiceHelper.GetSignature(configuration); return configuration; } /// /// Creates session to upload large files in multiple chunks. /// /// Chunked upload /// Uploads /// Id of the folder in which file will be uploaded /// Name of file which has to be uploaded /// Length in bytes of file which has to be uploaded /// Relative folder from folderId /// /// /// 512 and greater or equal than 5 mb. Last chunk can have any size. /// After initial request respond with status 200 OK you must obtain value of 'location' field from the response. Send all your chunks to that location. /// Each chunk must be sent in strict order in which chunks appears in file. /// After receiving each chunk if no errors occured server will respond with current information about upload session. /// When number of uploaded bytes equal to the number of bytes you send in initial request server will respond with 201 Created and will send you info about uploaded file. /// ]]> /// /// /// ///
  • id: unique id of this upload session
  • ///
  • created: UTC time when session was created
  • ///
  • expired: UTC time when session will be expired if no chunks will be sent until that time
  • ///
  • location: URL to which you must send your next chunk
  • ///
  • bytes_uploaded: If exists contains number of bytes uploaded for specific upload id
  • ///
  • bytes_total: Number of bytes which has to be uploaded
  • /// /// ]]> ///
    [Create("{folderId}/upload/create_session")] public object CreateUploadSession(string folderId, string fileName, long fileSize, string relativePath, bool encrypted) { var file = FileUploader.VerifyChunkedUpload(folderId, fileName, fileSize, FilesSettingsHelper.UpdateIfExist, relativePath); if (FilesLinkUtility.IsLocalFileUploader) { var session = FileUploader.InitiateUpload(file.FolderID.ToString(), (file.ID ?? "").ToString(), file.Title, file.ContentLength, encrypted); var response = ChunkedUploadSessionHelper.ToResponseObject(session, true); return new { success = true, data = response }; } var createSessionUrl = FilesLinkUtility.GetInitiateUploadSessionUrl(TenantManager.GetCurrentTenant().TenantId, file.FolderID, file.ID, file.Title, file.ContentLength, encrypted, SecurityContext); var request = (HttpWebRequest)WebRequest.Create(createSessionUrl); request.Method = "POST"; request.ContentLength = 0; // hack for uploader.onlyoffice.com in api requests var rewriterHeader = ApiContext.HttpContext.Request.Headers[HttpRequestExtensions.UrlRewriterHeader]; if (!string.IsNullOrEmpty(rewriterHeader)) { request.Headers[HttpRequestExtensions.UrlRewriterHeader] = rewriterHeader; } // hack. http://ubuntuforums.org/showthread.php?t=1841740 if (WorkContext.IsMono) { ServicePointManager.ServerCertificateValidationCallback += (s, ce, ca, p) => true; } using (var response = request.GetResponse()) using (var responseStream = response.GetResponseStream()) { return JObject.Parse(new StreamReader(responseStream).ReadToEnd()); //result is json string } } /// /// Creates a text (.txt) file in 'My Documents' section with the title and contents sent in the request /// /// Create txt in 'My' /// File Creation /// File title /// File contents /// Folder contents [Create("@my/text")] public FileWrapper CreateTextFileInMy(string title, string content) { return CreateTextFile(GlobalFolderHelper.FolderMy.ToString(), title, content); } /// /// Creates a text (.txt) file in 'Common Documents' section with the title and contents sent in the request /// /// Create txt in 'Common' /// File Creation /// File title /// File contents /// Folder contents [Create("@common/text")] public FileWrapper CreateTextFileInCommon(string title, string content) { return CreateTextFile(GlobalFolderHelper.FolderCommon.ToString(), title, content); } /// /// Creates a text (.txt) file in the selected folder with the title and contents sent in the request /// /// Create txt /// File Creation /// Folder ID /// File title /// File contents /// Folder contents [Create("{folderId}/text")] public FileWrapper CreateTextFile(string folderId, string title, string content) { if (title == null) throw new ArgumentNullException("title"); //Try detect content var extension = ".txt"; if (!string.IsNullOrEmpty(content)) { if (Regex.IsMatch(content, @"<([^\s>]*)(\s[^<]*)>")) { extension = ".html"; } } return CreateFile(folderId, title, content, extension); } private FileWrapper CreateFile(T folderId, string title, string content, string extension) { using (var memStream = new MemoryStream(Encoding.UTF8.GetBytes(content))) { var file = FileUploader.Exec(folderId, title.EndsWith(extension, StringComparison.OrdinalIgnoreCase) ? title : (title + extension), memStream.Length, memStream); return FileWrapperHelper.Get(file); } } /// /// Creates an html (.html) file in the selected folder with the title and contents sent in the request /// /// Create html /// File Creation /// Folder ID /// File title /// File contents /// Folder contents [Create("{folderId}/html")] public FileWrapper CreateHtmlFile(string folderId, string title, string content) { if (title == null) throw new ArgumentNullException("title"); return CreateFile(folderId, title, content, ".html"); } /// /// Creates an html (.html) file in 'My Documents' section with the title and contents sent in the request /// /// Create html in 'My' /// File Creation /// File title /// File contents /// Folder contents [Create("@my/html")] public FileWrapper CreateHtmlFileInMy(string title, string content) { return CreateHtmlFile(GlobalFolderHelper.FolderMy.ToString(), title, content); } /// /// Creates an html (.html) file in 'Common Documents' section with the title and contents sent in the request /// /// Create html in 'Common' /// File Creation /// File title /// File contents /// Folder contents [Create("@common/html")] public FileWrapper CreateHtmlFileInCommon(string title, string content) { return CreateHtmlFile(GlobalFolderHelper.FolderCommon.ToString(), title, content); } /// /// Creates a new folder with the title sent in the request. The ID of a parent folder can be also specified. /// /// /// New folder /// /// Folders /// Parent folder ID /// Title of new folder /// New folder contents [Create("folder/{folderId}")] public FolderWrapper CreateFolder(string folderId, string title) { var folder = FileStorageService.CreateNewFolder(folderId, title); return FolderWrapperHelper.Get(folder); } /// /// Creates a new file in the 'My Documents' section with the title sent in the request /// /// Create file /// File Creation /// File title /// In case the extension for the file title differs from DOCX/XLSX/PPTX and belongs to one of the known text, spreadsheet or presentation formats, it will be changed to DOCX/XLSX/PPTX accordingly. If the file extension is not set or is unknown, the DOCX extension will be added to the file title. /// New file info [Create("@my/file")] public FileWrapper CreateFile(string title) { return CreateFile(GlobalFolderHelper.FolderMy.ToString(), title); } /// /// Creates a new file in the specified folder with the title sent in the request /// /// Create file /// File Creation /// Folder ID /// File title /// In case the extension for the file title differs from DOCX/XLSX/PPTX and belongs to one of the known text, spreadsheet or presentation formats, it will be changed to DOCX/XLSX/PPTX accordingly. If the file extension is not set or is unknown, the DOCX extension will be added to the file title. /// New file info [Create("{folderId}/file")] public FileWrapper CreateFile(string folderId, string title) { var file = FileStorageService.CreateNewFile(new FileModel { ParentId = folderId, Title = title }); return FileWrapperHelper.Get(file); } /// /// Renames the selected folder to the new title specified in the request /// /// /// Rename folder /// /// Folders /// Folder ID /// New title /// Folder contents [Update("folder/{folderId}")] public FolderWrapper RenameFolder(string folderId, string title) { var folder = FileStorageService.FolderRename(folderId, title); return FolderWrapperHelper.Get(folder); } /// /// Returns a detailed information about the folder with the ID specified in the request /// /// Folder information /// Folders /// Folder info [Read("folder/{folderId}")] public FolderWrapper GetFolderInfo(string folderId) { var folder = FileStorageService.GetFolder(folderId).NotFoundIfNull("Folder not found"); return FolderWrapperHelper.Get(folder); } /// /// Returns parent folders /// /// /// Folders /// Parent folders [Read("folder/{folderId}/path")] public IEnumerable> GetFolderPath(string folderId) { return EntryManager.GetBreadCrumbs(folderId).Select(FolderWrapperHelper.Get); } /// /// Returns a detailed information about the file with the ID specified in the request /// /// File information /// Files /// File info [Read("file/{fileId}")] public FileWrapper GetFileInfo(string fileId, int version = -1) { var file = FileStorageService.GetFile(fileId, version).NotFoundIfNull("File not found"); return FileWrapperHelper.Get(file); } /// /// Returns a detailed information about the file with the ID specified in the request /// /// File information /// Files /// File info [Read("file/{fileId:int}")] public FileWrapper GetFileInfo(int fileId, int version = -1) { var file = FileStorageServiceInt.GetFile(fileId, version).NotFoundIfNull("File not found"); return FileWrapperHelper.Get(file); } /// /// Updates the information of the selected file with the parameters specified in the request /// /// Update file info /// Files /// File ID /// New title /// File last version number /// File info [Update("file/{fileId}")] public FileWrapper UpdateFile(string fileId, string title, int lastVersion) { if (!string.IsNullOrEmpty(title)) FileStorageService.FileRename(fileId.ToString(CultureInfo.InvariantCulture), title); if (lastVersion > 0) FileStorageService.UpdateToVersion(fileId.ToString(CultureInfo.InvariantCulture), lastVersion); return GetFileInfo(fileId); } /// /// Deletes the file with the ID specified in the request /// /// Delete file /// Files /// File ID /// Delete after finished /// Don't move to the Recycle Bin /// Operation result [Delete("file/{fileId}")] public IEnumerable> DeleteFile(string fileId, bool deleteAfter, bool immediately) { var model = new DeleteBatchModel { FileIds = new List { fileId }, DeleteAfter = deleteAfter, Immediately = immediately }; return DeleteBatchItems(model); } /// /// Start conversion /// /// Convert /// File operations /// /// Operation result [Update("file/{fileId}/checkconversion")] public IEnumerable StartConversion(string fileId) { return CheckConversion(fileId, true); } /// /// Check conversion status /// /// Convert /// File operations /// /// /// Operation result [Read("file/{fileId}/checkconversion")] public IEnumerable CheckConversion(string fileId, bool start) { return FileStorageService.CheckConversion(new ItemList> { new ItemList { fileId, "0", start.ToString() } }) .Select(r => { var o = new ConversationResult { Id = r.Id, Error = r.Error, OperationType = r.OperationType, Processed = r.Processed, Progress = r.Progress, Source = r.Source, }; if (!string.IsNullOrEmpty(r.Result)) { var jResult = JObject.Parse(r.Result); o.File = GetFileInfo(jResult.Value("id"), jResult.Value("version")); } return o; }); } /// /// Deletes the folder with the ID specified in the request /// /// Delete folder /// Folders /// Folder ID /// Delete after finished /// Don't move to the Recycle Bin /// Operation result [Delete("folder/{folderId}")] public IEnumerable> DeleteFolder(string folderId, bool deleteAfter, bool immediately) { var model = new DeleteBatchModel { FolderIds = new List { folderId }, DeleteAfter = deleteAfter, Immediately = immediately }; return DeleteBatchItems(model); } /// /// Checking for conflicts /// /// File operations /// Destination folder ID /// Folder ID list /// File ID list /// Conflicts file ids [Read("fileops/move")] public IEnumerable> MoveOrCopyBatchCheck(BatchModel batchModel) { var itemList = new ItemList(); itemList.AddRange((batchModel.FolderIds ?? new List()).Select(x => "folder_" + x)); itemList.AddRange((batchModel.FileIds ?? new List()).Select(x => "file_" + x)); var ids = FileStorageService.MoveOrCopyFilesCheck(itemList, batchModel.DestFolderId).Keys.Select(id => "file_" + id); var entries = FileStorageService.GetItems(new ItemList(ids), FilterType.FilesOnly, false, "", ""); return entries.Select(x => FileWrapperHelper.Get((File)x)); } /// /// Moves all the selected files and folders to the folder with the ID specified in the request /// /// Move to folder /// File operations /// Destination folder ID /// Folder ID list /// File ID list /// Overwriting behavior: skip(0), overwrite(1) or duplicate(2) /// Delete after finished /// Operation result [Update("fileops/move")] public IEnumerable> MoveBatchItems(BatchModel batchModel) { var itemList = new ItemList(); itemList.AddRange((batchModel.FolderIds ?? new List()).Select(x => "folder_" + x)); itemList.AddRange((batchModel.FileIds ?? new List()).Select(x => "file_" + x)); return FileStorageService.MoveOrCopyItems(itemList, batchModel.DestFolderId, batchModel.ConflictResolveType, false, batchModel.DeleteAfter).Select(FileOperationWraperHelper.Get); } /// /// Copies all the selected files and folders to the folder with the ID specified in the request /// /// Copy to folder /// File operations /// Destination folder ID /// Folder ID list /// File ID list /// Overwriting behavior: skip(0), overwrite(1) or duplicate(2) /// Delete after finished /// Operation result [Update("fileops/copy")] public IEnumerable> CopyBatchItems(BatchModel batchModel) { var itemList = new ItemList(); itemList.AddRange((batchModel.FolderIds ?? new List()).Select(x => "folder_" + x)); itemList.AddRange((batchModel.FileIds ?? new List()).Select(x => "file_" + x)); return FileStorageService.MoveOrCopyItems(itemList, batchModel.DestFolderId, batchModel.ConflictResolveType, true, batchModel.DeleteAfter).Select(FileOperationWraperHelper.Get); } /// /// Marks all files and folders as read /// /// Mark as read /// File operations /// Operation result [Update("fileops/markasread")] public IEnumerable> MarkAsRead(BaseBatchModel model) { var itemList = new ItemList(); itemList.AddRange((model.FolderIds ?? new List()).Select(x => "folder_" + x)); itemList.AddRange((model.FileIds ?? new List()).Select(x => "file_" + x)); return FileStorageService.MarkAsRead(itemList).Select(FileOperationWraperHelper.Get); } /// /// Finishes all the active file operations /// /// Finish all /// File operations /// Operation result [Update("fileops/terminate")] public IEnumerable> TerminateTasks() { return FileStorageService.TerminateTasks().Select(FileOperationWraperHelper.Get); } /// /// Returns the list of all active file operations /// /// Get file operations list /// File operations /// Operation result [Read("fileops")] public IEnumerable> GetOperationStatuses() { return FileStorageService.GetTasksStatuses().Select(FileOperationWraperHelper.Get); } /// /// Start downlaod process of files and folders with ID /// /// Finish file operations /// File ID list for download with convert to format /// File ID list /// Folder ID list /// File operations /// Operation result [Update("fileops/bulkdownload")] public IEnumerable> BulkDownload(DownloadModel model) { var itemList = new Dictionary(); foreach (var fileId in model.FileConvertIds.Where(fileId => !itemList.ContainsKey(fileId.Key))) { itemList.Add("file_" + fileId.Key, fileId.Value); } foreach (var fileId in model.FileIds.Where(fileId => !itemList.ContainsKey(fileId))) { itemList.Add("file_" + fileId, string.Empty); } foreach (var folderId in model.FolderIds.Where(folderId => !itemList.ContainsKey(folderId))) { itemList.Add("folder_" + folderId, string.Empty); } return FileStorageService.BulkDownload(itemList).Select(FileOperationWraperHelper.Get); } /// /// Deletes the files and folders with the IDs specified in the request /// /// Folder ID list /// File ID list /// Delete after finished /// Don't move to the Recycle Bin /// Delete files and folders /// File operations /// Operation result [Update("fileops/delete")] public IEnumerable> DeleteBatchItems(DeleteBatchModel batch) { var itemList = new ItemList(); itemList.AddRange((batch.FolderIds ?? new List()).Select(x => "folder_" + x)); itemList.AddRange((batch.FileIds ?? new List()).Select(x => "file_" + x)); return FileStorageService.DeleteItems("delete", itemList, false, batch.DeleteAfter, batch.Immediately).Select(FileOperationWraperHelper.Get); } /// /// Deletes all files and folders from the recycle bin /// /// Clear recycle bin /// File operations /// Operation result [Update("fileops/emptytrash")] public IEnumerable> EmptyTrash() { return FileStorageService.EmptyTrash().Select(FileOperationWraperHelper.Get); } /// /// Returns the detailed information about all the available file versions with the ID specified in the request /// /// File versions /// Files /// File ID /// File information [Read("file/{fileId}/history")] public IEnumerable> GetFileVersionInfo(string fileId) { var files = FileStorageService.GetFileHistory(fileId); return files.Select(FileWrapperHelper.Get); } /// /// Change version history /// /// File ID /// Version of history /// Mark as version or revision /// Files /// [Update("file/{fileId}/history")] public IEnumerable> ChangeHistory(string fileId, int version, bool continueVersion) { var history = FileStorageService.CompleteVersion(fileId, version, continueVersion).Value; return history.Select(FileWrapperHelper.Get); } /// /// Returns the detailed information about shared file with the ID specified in the request /// /// File sharing /// Sharing /// File ID /// Shared file information [Read("file/{fileId}/share")] public IEnumerable GetFileSecurityInfo(string fileId) { var fileShares = FileStorageService.GetSharedInfo(new ItemList { string.Format("file_{0}", fileId) }); return fileShares.Select(FileShareWrapperHelper.Get); } /// /// Returns the detailed information about shared folder with the ID specified in the request /// /// Folder sharing /// Folder ID /// Sharing /// Shared folder information [Read("folder/{folderId}/share")] public IEnumerable GetFolderSecurityInfo(string folderId) { var fileShares = FileStorageService.GetSharedInfo(new ItemList { string.Format("folder_{0}", folderId) }); return fileShares.Select(FileShareWrapperHelper.Get); } /// /// Sets sharing settings for the file with the ID specified in the request /// /// File ID /// Collection of sharing rights /// Should notify people /// Sharing message to send when notifying /// Share file /// Sharing /// /// Each of the FileShareParams must contain two parameters: 'ShareTo' - ID of the user with whom we want to share and 'Access' - access type which we want to grant to the user (Read, ReadWrite, etc) /// /// Shared file information [Update("file/{fileId}/share")] public IEnumerable SetFileSecurityInfo(string fileId, IEnumerable share, bool notify, string sharingMessage) { if (share != null && share.Any()) { var list = new ItemList(share.Select(FileShareParamsHelper.ToAceObject)); var aceCollection = new AceCollection { Entries = new ItemList { "file_" + fileId }, Aces = list, Message = sharingMessage }; FileStorageService.SetAceObject(aceCollection, notify); } return GetFileSecurityInfo(fileId); } /// /// Sets sharing settings for the folder with the ID specified in the request /// /// Share folder /// Folder ID /// Collection of sharing rights /// Should notify people /// Sharing message to send when notifying /// /// Each of the FileShareParams must contain two parameters: 'ShareTo' - ID of the user with whom we want to share and 'Access' - access type which we want to grant to the user (Read, ReadWrite, etc) /// /// Sharing /// Shared folder information [Update("folder/{folderId}/share")] public IEnumerable SetFolderSecurityInfo(string folderId, IEnumerable share, bool notify, string sharingMessage) { if (share != null && share.Any()) { var list = new ItemList(share.Select(FileShareParamsHelper.ToAceObject)); var aceCollection = new AceCollection { Entries = new ItemList { "folder_" + folderId }, Aces = list, Message = sharingMessage }; FileStorageService.SetAceObject(aceCollection, notify); } return GetFolderSecurityInfo(folderId); } /// /// Removes sharing rights for the group with the ID specified in the request /// /// Folders ID /// Files ID /// Remove group sharing rights /// Sharing /// Shared file information [Delete("share")] public bool RemoveSecurityInfo(BaseBatchModel model) { var itemList = new ItemList(); itemList.AddRange((model.FolderIds ?? new List()).Select(x => "folder_" + x)); itemList.AddRange((model.FileIds ?? new List()).Select(x => "file_" + x)); FileStorageService.RemoveAce(itemList); return true; } /// /// Returns the external link to the shared file with the ID specified in the request /// /// /// File external link /// /// File ID /// Access right /// Files /// Shared file link [Update("{fileId}/sharedlink")] public string GenerateSharedLink(string fileId, FileShare share) { var file = GetFileInfo(fileId); var objectId = "file_" + file.Id; var sharedInfo = FileStorageService.GetSharedInfo(new ItemList { objectId }).Find(r => r.SubjectId == FileConstant.ShareLinkId); if (sharedInfo == null || sharedInfo.Share != share) { var list = new ItemList { new AceWrapper { SubjectId = FileConstant.ShareLinkId, SubjectGroup = true, Share = share } }; var aceCollection = new AceCollection { Entries = new ItemList { objectId }, Aces = list }; FileStorageService.SetAceObject(aceCollection, false); sharedInfo = FileStorageService.GetSharedInfo(new ItemList { objectId }).Find(r => r.SubjectId == FileConstant.ShareLinkId); } return sharedInfo.Link; } /// /// Get a list of available providers /// /// Third-Party Integration /// List of provider key /// List of provider key: DropboxV2, Box, WebDav, Yandex, OneDrive, SharePoint, GoogleDrive /// [Read("thirdparty/capabilities")] public List> Capabilities() { var result = new List>(); if (UserManager.GetUsers(SecurityContext.CurrentAccount.ID).IsVisitor(UserManager) || (!UserManager.IsUserInGroup(SecurityContext.CurrentAccount.ID, Constants.GroupAdmin.ID) && !WebItemSecurity.IsProductAdministrator(ProductEntryPoint.ID, SecurityContext.CurrentAccount.ID) && !FilesSettingsHelper.EnableThirdParty && !CoreBaseSettings.Personal)) { return result; } if (ThirdpartyConfiguration.SupportBoxInclusion) { result.Add(new List { "Box", BoxLoginProvider.ClientID, BoxLoginProvider.RedirectUri }); } if (ThirdpartyConfiguration.SupportDropboxInclusion) { result.Add(new List { "DropboxV2", DropboxLoginProvider.ClientID, DropboxLoginProvider.RedirectUri }); } if (ThirdpartyConfiguration.SupportGoogleDriveInclusion) { result.Add(new List { "GoogleDrive", GoogleLoginProvider.ClientID, GoogleLoginProvider.RedirectUri }); } if (ThirdpartyConfiguration.SupportOneDriveInclusion) { result.Add(new List { "OneDrive", OneDriveLoginProvider.ClientID, OneDriveLoginProvider.RedirectUri }); } if (ThirdpartyConfiguration.SupportSharePointInclusion) { result.Add(new List { "SharePoint" }); } if (ThirdpartyConfiguration.SupportYandexInclusion) { result.Add(new List { "Yandex" }); } if (ThirdpartyConfiguration.SupportWebDavInclusion) { result.Add(new List { "WebDav" }); } //Obsolete BoxNet, DropBox, Google, SkyDrive, return result; } /// /// Saves the third party file storage service account /// /// Save third party account /// Connection url for SharePoint /// Login /// Password /// Authentication token /// /// Title /// Provider Key /// Provider ID /// Third-Party Integration /// Folder contents /// List of provider key: DropboxV2, Box, WebDav, Yandex, OneDrive, SharePoint, GoogleDrive /// [Create("thirdparty")] public FolderWrapper SaveThirdParty( string url, string login, string password, string token, bool isCorporate, string customerTitle, string providerKey, string providerId) { var thirdPartyParams = new ThirdPartyParams { AuthData = new AuthData(url, login, password, token), Corporate = isCorporate, CustomerTitle = customerTitle, ProviderId = providerId, ProviderKey = providerKey, }; var folder = FileStorageService.SaveThirdParty(thirdPartyParams); return FolderWrapperHelper.Get(folder); } /// /// Returns the list of all connected third party services /// /// Third-Party Integration /// Get third party list /// Connected providers [Read("thirdparty")] public IEnumerable GetThirdPartyAccounts() { return FileStorageService.GetThirdParty(); } /// /// Returns the list of third party services connected in the 'Common Documents' section /// /// Third-Party Integration /// Get third party folder /// Connected providers folder [Read("thirdparty/common")] public IEnumerable> GetCommonThirdPartyFolders() { var parent = FileStorageService.GetFolder(GlobalFolderHelper.FolderCommon.ToString()); return EntryManager.GetThirpartyFolders(parent); } /// /// Removes the third party file storage service account with the ID specified in the request /// /// Provider ID. Provider id is part of folder id. /// Example, folder id is "sbox-123", then provider id is "123" /// /// Remove third party account /// Third-Party Integration /// Folder id /// [Delete("thirdparty/{providerId:int}")] public object DeleteThirdParty(int providerId) { return FileStorageService.DeleteThirdParty(providerId.ToString(CultureInfo.InvariantCulture)); } ///// ///// ///// ///// ///// //[Read(@"@search/{query}")] //public IEnumerable Search(string query) //{ // var searcher = new SearchHandler(); // var files = searcher.SearchFiles(query).Select(r => (FileEntryWrapper)FileWrapperHelper.Get(r)); // var folders = searcher.SearchFolders(query).Select(f => (FileEntryWrapper)FolderWrapperHelper.Get(f)); // return files.Concat(folders); //} /// /// /// /// /// [Update(@"storeoriginal")] public bool StoreOriginal(bool set) { return FileStorageService.StoreOriginal(set); } /// /// /// /// /// false /// [Update(@"hideconfirmconvert")] public bool HideConfirmConvert(bool save) { return FileStorageService.HideConfirmConvert(save); } /// /// /// /// /// [Update(@"updateifexist")] public bool UpdateIfExist(bool set) { return FileStorageService.UpdateIfExist(set); } /// /// Checking document service location /// /// Document editing service Domain /// Document command service Domain /// Community Server Address /// [Update("docservice")] public IEnumerable CheckDocServiceUrl(string docServiceUrl, string docServiceUrlInternal, string docServiceUrlPortal) { FilesLinkUtility.DocServiceUrl = docServiceUrl; FilesLinkUtility.DocServiceUrlInternal = docServiceUrlInternal; FilesLinkUtility.DocServicePortalUrl = docServiceUrlPortal; MessageService.Send(MessageAction.DocumentServiceLocationSetting); var https = new Regex(@"^https://", RegexOptions.IgnoreCase); var http = new Regex(@"^http://", RegexOptions.IgnoreCase); if (https.IsMatch(CommonLinkUtility.GetFullAbsolutePath("")) && http.IsMatch(FilesLinkUtility.DocServiceUrl)) { throw new Exception("Mixed Active Content is not allowed. HTTPS address for Document Server is required."); } DocumentServiceConnector.CheckDocServiceUrl(); return new[] { FilesLinkUtility.DocServiceUrl, FilesLinkUtility.DocServiceUrlInternal, FilesLinkUtility.DocServicePortalUrl }; } /// false [Read("docservice")] public object GetDocServiceUrl(bool version) { var url = CommonLinkUtility.GetFullAbsolutePath(FilesLinkUtility.DocServiceApiUrl); if (!version) { return url; } var dsVersion = DocumentServiceConnector.GetVersion(); return new { version = dsVersion, docServiceUrlApi = url, }; } private FolderContentWrapper ToFolderContentWrapper(string folderId, Guid userIdOrGroupId, FilterType filterType) { if (!Enum.TryParse(ApiContext.SortBy, true, out SortedByType sortBy)) { sortBy = SortedByType.AZ; } var startIndex = Convert.ToInt32(ApiContext.StartIndex); return FolderContentWrapperHelper.Get(FileStorageService.GetFolderItems(folderId.ToString(), startIndex, Convert.ToInt32(ApiContext.Count) - 1, //NOTE: in ApiContext +1 filterType, filterType == FilterType.ByUser, userIdOrGroupId.ToString(), ApiContext.FilterValue, false, false, new OrderBy(sortBy, !ApiContext.SortDescending)), startIndex); } private FolderContentWrapper ToFolderContentWrapper(int folderId, Guid userIdOrGroupId, FilterType filterType) { if (!Enum.TryParse(ApiContext.SortBy, true, out SortedByType sortBy)) { sortBy = SortedByType.AZ; } var startIndex = Convert.ToInt32(ApiContext.StartIndex); var items = FileStorageServiceInt.GetFolderItems( folderId, startIndex, Convert.ToInt32(ApiContext.Count) - 1, //NOTE: in ApiContext +1 filterType, filterType == FilterType.ByUser, userIdOrGroupId.ToString(), ApiContext.FilterValue, false, false, new OrderBy(sortBy, !ApiContext.SortDescending)); return FolderContentWrapperHelper.Get(items, startIndex); } #region wordpress /// false [Read("wordpress-info")] public object GetWordpressInfo() { var token = WordpressToken.GetToken(); if (token != null) { var meInfo = WordpressHelper.GetWordpressMeInfo(token.AccessToken); var blogId = JObject.Parse(meInfo).Value("token_site_id"); var wordpressUserName = JObject.Parse(meInfo).Value("username"); var blogInfo = RequestHelper.PerformRequest(WordpressLoginProvider.WordpressSites + blogId, "", "GET", ""); var jsonBlogInfo = JObject.Parse(blogInfo); jsonBlogInfo.Add("username", wordpressUserName); blogInfo = jsonBlogInfo.ToString(); return new { success = true, data = blogInfo }; } return new { success = false }; } /// false [Read("wordpress-delete")] public object DeleteWordpressInfo() { var token = WordpressToken.GetToken(); if (token != null) { WordpressToken.DeleteToken(token); return new { success = true }; } return new { success = false }; } /// false [Create("wordpress-save")] public object WordpressSave(string code) { if (code == "") { return new { success = false }; } try { var token = OAuth20TokenHelper.GetAccessToken(ConsumerFactory, code); WordpressToken.SaveToken(token); var meInfo = WordpressHelper.GetWordpressMeInfo(token.AccessToken); var blogId = JObject.Parse(meInfo).Value("token_site_id"); var wordpressUserName = JObject.Parse(meInfo).Value("username"); var blogInfo = RequestHelper.PerformRequest(WordpressLoginProvider.WordpressSites + blogId, "", "GET", ""); var jsonBlogInfo = JObject.Parse(blogInfo); jsonBlogInfo.Add("username", wordpressUserName); blogInfo = jsonBlogInfo.ToString(); return new { success = true, data = blogInfo }; } catch (Exception) { return new { success = false }; } } /// false [Create("wordpress")] public bool CreateWordpressPost(string code, string title, string content, int status) { try { var token = WordpressToken.GetToken(); var meInfo = WordpressHelper.GetWordpressMeInfo(token.AccessToken); var parser = JObject.Parse(meInfo); if (parser == null) return false; var blogId = parser.Value("token_site_id"); if (blogId != null) { var createPost = WordpressHelper.CreateWordpressPost(title, content, status, blogId, token); return createPost; } return false; } catch (Exception) { return false; } } #endregion #region easybib /// false [Read("easybib-citation-list")] public object GetEasybibCitationList(int source, string data) { try { var citationList = EasyBibHelper.GetEasyBibCitationsList(source, data); return new { success = true, citations = citationList }; } catch (Exception) { return new { success = false }; } } /// false [Read("easybib-styles")] public object GetEasybibStyles() { try { var data = EasyBibHelper.GetEasyBibStyles(); return new { success = true, styles = data }; } catch (Exception) { return new { success = false }; } } /// false [Create("easybib-citation")] public object EasyBibCitationBook(string citationData) { try { var citat = EasyBibHelper.GetEasyBibCitation(citationData); if (citat != null) { return new { success = true, citation = citat }; } else { return new { success = false }; } } catch (Exception) { return new { success = false }; } } #endregion /// /// Result of file conversation operation. /// [DataContract(Name = "operation_result", Namespace = "")] public class ConversationResult { /// /// Operation Id. /// [DataMember(Name = "id")] public string Id { get; set; } /// /// Operation type. /// [DataMember(Name = "operation")] public FileOperationType OperationType { get; set; } /// /// Operation progress. /// [DataMember(Name = "progress")] public int Progress { get; set; } /// /// Source files for operation. /// [DataMember(Name = "source")] public string Source { get; set; } /// /// Result file of operation. /// [DataMember(Name = "result")] public FileWrapper File { get; set; } /// /// Error during conversation. /// [DataMember(Name = "error")] public string Error { get; set; } /// /// Is operation processed. /// [DataMember(Name = "processed")] public string Processed { get; set; } } } public static class DocumentsControllerExtention { public static DIHelper AddDocumentsControllerService(this DIHelper services) { return services .AddEasyBibHelperService() .AddWordpressTokenService() .AddWordpressHelperService() .AddFolderContentWrapperHelperService() .AddFileUploaderService() .AddFileShareParamsService() .AddFileShareWrapperService() .AddFileOperationWraperHelperService() .AddFileWrapperHelperService() .AddFolderWrapperHelperService() .AddConsumerFactoryService() .AddDocumentServiceConnectorService() .AddCommonLinkUtilityService() .AddMessageServiceService() .AddThirdpartyConfigurationService() .AddCoreBaseSettingsService() .AddWebItemSecurity() .AddUserManagerService() .AddEntryManagerService() .AddTenantManagerService() .AddSecurityContextService() .AddDocumentServiceHelperService() .AddFilesLinkUtilityService() .AddApiContextService() .AddFileStorageService() .AddGlobalFolderHelperService() .AddFilesSettingsHelperService() .AddBoxLoginProviderService() .AddDropboxLoginProviderService() .AddOneDriveLoginProviderService() .AddGoogleLoginProviderService() .AddChunkedUploadSessionHelperService() .AddProductEntryPointService() ; } } }