DocSpace-buildtools/products/ASC.Files/Server/Api/SecutiryController.cs

282 lines
12 KiB
C#
Raw Normal View History

2022-03-03 17:33:11 +00:00
namespace ASC.Files.Api;
public class SecutiryController : ApiControllerBase
{
private readonly FileStorageService<int> _fileStorageServiceInt;
private readonly FileStorageService<string> _fileStorageServiceString;
public SecutiryController(
FilesControllerHelper<int> filesControllerHelperInt,
FilesControllerHelper<string> filesControllerHelperString,
FileStorageService<int> fileStorageServiceInt,
FileStorageService<string> fileStorageServiceString)
: base(filesControllerHelperInt, filesControllerHelperString)
{
_fileStorageServiceString = fileStorageServiceString;
_fileStorageServiceInt = fileStorageServiceInt;
}
[Create("owner")]
2022-03-05 14:41:47 +00:00
public IAsyncEnumerable<FileEntryDto> ChangeOwnerFromBodyAsync([FromBody] ChangeOwnerRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
return ChangeOwnerAsync(inDto);
2022-03-03 17:33:11 +00:00
}
[Create("owner")]
[Consumes("application/x-www-form-urlencoded")]
2022-03-05 14:41:47 +00:00
public IAsyncEnumerable<FileEntryDto> ChangeOwnerFromFormAsync([FromForm] ChangeOwnerRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
return ChangeOwnerAsync(inDto);
2022-03-03 17:33:11 +00:00
}
/// <summary>
/// Returns the external link to the shared file with the ID specified in the request
/// </summary>
/// <summary>
/// File external link
/// </summary>
/// <param name="fileId">File ID</param>
/// <param name="share">Access right</param>
/// <category>Files</category>
/// <returns>Shared file link</returns>
[Update("{fileId}/sharedlinkAsync")]
2022-03-05 14:41:47 +00:00
public async Task<object> GenerateSharedLinkFromBodyAsync(string fileId, [FromBody] GenerateSharedLinkRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
return await _filesControllerHelperString.GenerateSharedLinkAsync(fileId, inDto.Share);
2022-03-03 17:33:11 +00:00
}
[Update("{fileId:int}/sharedlinkAsync")]
2022-03-05 14:41:47 +00:00
public async Task<object> GenerateSharedLinkFromBodyAsync(int fileId, [FromBody] GenerateSharedLinkRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
return await _filesControllerHelperInt.GenerateSharedLinkAsync(fileId, inDto.Share);
2022-03-03 17:33:11 +00:00
}
[Update("{fileId}/sharedlinkAsync")]
[Consumes("application/x-www-form-urlencoded")]
2022-03-05 14:41:47 +00:00
public async Task<object> GenerateSharedLinkFromFormAsync(string fileId, [FromForm] GenerateSharedLinkRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
return await _filesControllerHelperString.GenerateSharedLinkAsync(fileId, inDto.Share);
2022-03-03 17:33:11 +00:00
}
[Update("{fileId:int}/sharedlinkAsync")]
[Consumes("application/x-www-form-urlencoded")]
2022-03-05 14:41:47 +00:00
public async Task<object> GenerateSharedLinkFromFormAsync(int fileId, [FromForm] GenerateSharedLinkRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
return await _filesControllerHelperInt.GenerateSharedLinkAsync(fileId, inDto.Share);
2022-03-03 17:33:11 +00:00
}
/// <summary>
/// Returns the detailed information about shared file with the ID specified in the request
/// </summary>
/// <short>File sharing</short>
/// <category>Sharing</category>
/// <param name="fileId">File ID</param>
/// <returns>Shared file information</returns>
[Read("file/{fileId}/share")]
public Task<IEnumerable<FileShareDto>> GetFileSecurityInfoAsync(string fileId)
2022-03-03 17:33:11 +00:00
{
return _filesControllerHelperString.GetFileSecurityInfoAsync(fileId);
}
[Read("file/{fileId:int}/share")]
public Task<IEnumerable<FileShareDto>> GetFileSecurityInfoAsync(int fileId)
2022-03-03 17:33:11 +00:00
{
return _filesControllerHelperInt.GetFileSecurityInfoAsync(fileId);
}
/// <summary>
/// Returns the detailed information about shared folder with the ID specified in the request
/// </summary>
/// <short>Folder sharing</short>
/// <param name="folderId">Folder ID</param>
/// <category>Sharing</category>
/// <returns>Shared folder information</returns>
[Read("folder/{folderId}/share")]
public Task<IEnumerable<FileShareDto>> GetFolderSecurityInfoAsync(string folderId)
2022-03-03 17:33:11 +00:00
{
return _filesControllerHelperString.GetFolderSecurityInfoAsync(folderId);
}
[Read("folder/{folderId:int}/share")]
public Task<IEnumerable<FileShareDto>> GetFolderSecurityInfoAsync(int folderId)
2022-03-03 17:33:11 +00:00
{
return _filesControllerHelperInt.GetFolderSecurityInfoAsync(folderId);
}
[Create("share")]
2022-03-05 14:41:47 +00:00
public async Task<IEnumerable<FileShareDto>> GetSecurityInfoFromBodyAsync([FromBody] BaseBatchRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
var (folderIntIds, folderStringIds) = FileOperationsManager.GetIds(inDto.FolderIds);
var (fileIntIds, fileStringIds) = FileOperationsManager.GetIds(inDto.FileIds);
2022-03-03 17:33:11 +00:00
var result = new List<FileShareDto>();
2022-03-03 17:33:11 +00:00
result.AddRange(await _filesControllerHelperInt.GetSecurityInfoAsync(fileIntIds, folderIntIds));
result.AddRange(await _filesControllerHelperString.GetSecurityInfoAsync(fileStringIds, folderStringIds));
return result;
}
[Create("share")]
[Consumes("application/x-www-form-urlencoded")]
2022-03-05 14:41:47 +00:00
public async Task<IEnumerable<FileShareDto>> GetSecurityInfoFromFormAsync([FromForm][ModelBinder(BinderType = typeof(BaseBatchModelBinder))] BaseBatchRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
var (folderIntIds, folderStringIds) = FileOperationsManager.GetIds(inDto.FolderIds);
var (fileIntIds, fileStringIds) = FileOperationsManager.GetIds(inDto.FileIds);
2022-03-03 17:33:11 +00:00
var result = new List<FileShareDto>();
2022-03-03 17:33:11 +00:00
result.AddRange(await _filesControllerHelperInt.GetSecurityInfoAsync(fileIntIds, folderIntIds));
result.AddRange(await _filesControllerHelperString.GetSecurityInfoAsync(fileStringIds, folderStringIds));
return result;
}
/// <summary>
/// Removes sharing rights for the group with the ID specified in the request
/// </summary>
/// <param name="folderIds">Folders ID</param>
/// <param name="fileIds">Files ID</param>
/// <short>Remove group sharing rights</short>
/// <category>Sharing</category>
/// <returns>Shared file information</returns>
[Delete("share")]
2022-03-05 14:41:47 +00:00
public async Task<bool> RemoveSecurityInfoAsync(BaseBatchRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
var (folderIntIds, folderStringIds) = FileOperationsManager.GetIds(inDto.FolderIds);
var (fileIntIds, fileStringIds) = FileOperationsManager.GetIds(inDto.FileIds);
2022-03-03 17:33:11 +00:00
await _filesControllerHelperInt.RemoveSecurityInfoAsync(fileIntIds, folderIntIds);
await _filesControllerHelperString.RemoveSecurityInfoAsync(fileStringIds, folderStringIds);
return true;
}
[Update("{fileId:int}/setacelink")]
2022-03-05 14:41:47 +00:00
public Task<bool> SetAceLinkAsync(int fileId, [FromBody] GenerateSharedLinkRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
return _filesControllerHelperInt.SetAceLinkAsync(fileId, inDto.Share);
2022-03-03 17:33:11 +00:00
}
[Update("{fileId}/setacelink")]
2022-03-05 14:41:47 +00:00
public Task<bool> SetAceLinkAsync(string fileId, [FromBody] GenerateSharedLinkRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
return _filesControllerHelperString.SetAceLinkAsync(fileId, inDto.Share);
2022-03-03 17:33:11 +00:00
}
/// <summary>
/// Sets sharing settings for the file with the ID specified in the request
/// </summary>
/// <param name="fileId">File ID</param>
/// <param name="share">Collection of sharing rights</param>
/// <param name="notify">Should notify people</param>
/// <param name="sharingMessage">Sharing message to send when notifying</param>
/// <short>Share file</short>
/// <category>Sharing</category>
/// <remarks>
/// 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)
/// </remarks>
/// <returns>Shared file information</returns>
[Update("file/{fileId}/share")]
2022-03-05 14:41:47 +00:00
public Task<IEnumerable<FileShareDto>> SetFileSecurityInfoFromBodyAsync(string fileId, [FromBody] SecurityInfoRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
return _filesControllerHelperString.SetFileSecurityInfoAsync(fileId, inDto.Share, inDto.Notify, inDto.SharingMessage);
2022-03-03 17:33:11 +00:00
}
[Update("file/{fileId:int}/share")]
2022-03-05 14:41:47 +00:00
public Task<IEnumerable<FileShareDto>> SetFileSecurityInfoFromBodyAsync(int fileId, [FromBody] SecurityInfoRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
return _filesControllerHelperInt.SetFileSecurityInfoAsync(fileId, inDto.Share, inDto.Notify, inDto.SharingMessage);
2022-03-03 17:33:11 +00:00
}
[Update("file/{fileId}/share")]
[Consumes("application/x-www-form-urlencoded")]
2022-03-05 14:41:47 +00:00
public Task<IEnumerable<FileShareDto>> SetFileSecurityInfoFromFormAsync(string fileId, [FromForm] SecurityInfoRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
return _filesControllerHelperString.SetFileSecurityInfoAsync(fileId, inDto.Share, inDto.Notify, inDto.SharingMessage);
2022-03-03 17:33:11 +00:00
}
[Update("file/{fileId:int}/share")]
[Consumes("application/x-www-form-urlencoded")]
2022-03-05 14:41:47 +00:00
public Task<IEnumerable<FileShareDto>> SetFileSecurityInfoFromFormAsync(int fileId, [FromForm] SecurityInfoRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
return _filesControllerHelperInt.SetFileSecurityInfoAsync(fileId, inDto.Share, inDto.Notify, inDto.SharingMessage);
2022-03-03 17:33:11 +00:00
}
/// <summary>
/// Sets sharing settings for the folder with the ID specified in the request
/// </summary>
/// <short>Share folder</short>
/// <param name="folderId">Folder ID</param>
/// <param name="share">Collection of sharing rights</param>
/// <param name="notify">Should notify people</param>
/// <param name="sharingMessage">Sharing message to send when notifying</param>
/// <remarks>
/// 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)
/// </remarks>
/// <category>Sharing</category>
/// <returns>Shared folder information</returns>
[Update("folder/{folderId}/share")]
2022-03-05 14:41:47 +00:00
public Task<IEnumerable<FileShareDto>> SetFolderSecurityInfoFromBodyAsync(string folderId, [FromBody] SecurityInfoRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
return _filesControllerHelperString.SetFolderSecurityInfoAsync(folderId, inDto.Share, inDto.Notify, inDto.SharingMessage);
2022-03-03 17:33:11 +00:00
}
[Update("folder/{folderId:int}/share")]
2022-03-05 14:41:47 +00:00
public Task<IEnumerable<FileShareDto>> SetFolderSecurityInfoFromBodyAsync(int folderId, [FromBody] SecurityInfoRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
return _filesControllerHelperInt.SetFolderSecurityInfoAsync(folderId, inDto.Share, inDto.Notify, inDto.SharingMessage);
2022-03-03 17:33:11 +00:00
}
[Update("folder/{folderId}/share")]
[Consumes("application/x-www-form-urlencoded")]
2022-03-05 14:41:47 +00:00
public Task<IEnumerable<FileShareDto>> SetFolderSecurityInfoFromFormAsync(string folderId, [FromForm] SecurityInfoRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
return _filesControllerHelperString.SetFolderSecurityInfoAsync(folderId, inDto.Share, inDto.Notify, inDto.SharingMessage);
2022-03-03 17:33:11 +00:00
}
[Update("folder/{folderId:int}/share")]
[Consumes("application/x-www-form-urlencoded")]
2022-03-05 14:41:47 +00:00
public Task<IEnumerable<FileShareDto>> SetFolderSecurityInfoFromFormAsync(int folderId, [FromForm] SecurityInfoRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
return _filesControllerHelperInt.SetFolderSecurityInfoAsync(folderId, inDto.Share, inDto.Notify, inDto.SharingMessage);
2022-03-03 17:33:11 +00:00
}
[Update("share")]
2022-03-05 14:41:47 +00:00
public Task<IEnumerable<FileShareDto>> SetSecurityInfoFromBodyAsync([FromBody] SecurityInfoRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
return SetSecurityInfoAsync(inDto);
2022-03-03 17:33:11 +00:00
}
[Update("share")]
[Consumes("application/x-www-form-urlencoded")]
2022-03-05 14:41:47 +00:00
public Task<IEnumerable<FileShareDto>> SetSecurityInfoFromFormAsync([FromForm] SecurityInfoRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
return SetSecurityInfoAsync(inDto);
2022-03-03 17:33:11 +00:00
}
2022-03-05 14:41:47 +00:00
private async IAsyncEnumerable<FileEntryDto> ChangeOwnerAsync(ChangeOwnerRequestDto inDto)
2022-03-03 17:33:11 +00:00
{
2022-03-05 14:41:47 +00:00
var (folderIntIds, folderStringIds) = FileOperationsManager.GetIds(inDto.FolderIds);
var (fileIntIds, fileStringIds) = FileOperationsManager.GetIds(inDto.FileIds);
2022-03-03 17:33:11 +00:00
var result = AsyncEnumerable.Empty<FileEntry>();
2022-03-05 14:41:47 +00:00
result.Concat(_fileStorageServiceInt.ChangeOwnerAsync(folderIntIds, fileIntIds, inDto.UserId));
result.Concat(_fileStorageServiceString.ChangeOwnerAsync(folderStringIds, fileStringIds, inDto.UserId));
2022-03-03 17:33:11 +00:00
await foreach (var e in result)
{
yield return await _filesControllerHelperInt.GetFileEntryWrapperAsync(e);
}
}
2022-03-05 14:41:47 +00:00
private async Task<IEnumerable<FileShareDto>> SetSecurityInfoAsync(SecurityInfoRequestDto inDto)
{
2022-03-05 14:41:47 +00:00
var (folderIntIds, folderStringIds) = FileOperationsManager.GetIds(inDto.FolderIds);
var (fileIntIds, fileStringIds) = FileOperationsManager.GetIds(inDto.FileIds);
var result = new List<FileShareDto>();
2022-03-05 14:41:47 +00:00
result.AddRange(await _filesControllerHelperInt.SetSecurityInfoAsync(fileIntIds, folderIntIds, inDto.Share, inDto.Notify, inDto.SharingMessage));
result.AddRange(await _filesControllerHelperString.SetSecurityInfoAsync(fileStringIds, folderStringIds, inDto.Share, inDto.Notify, inDto.SharingMessage));
return result;
}
2022-03-03 17:33:11 +00:00
}