1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 17:42:49 -05:00

Prepare for send direct upload (#1174)

* Add sendId to path

Event Grid returns the blob path, which will be used to grab a Send and verify file size

* Re-validate access upon file download

Increment access count only when file is downloaded. File
name and size are leaked, but this is a good first step toward
solving the access-download race
This commit is contained in:
Matt Gibson
2021-03-01 15:01:04 -06:00
committed by GitHub
parent 13f12aaf58
commit 8d5fc21b51
7 changed files with 119 additions and 34 deletions

View File

@ -12,7 +12,7 @@ namespace Bit.Core.Services
return Task.FromResult(0);
}
public Task DeleteFileAsync(string fileId)
public Task DeleteFileAsync(Send send, string fileId)
{
return Task.FromResult(0);
}
@ -27,7 +27,7 @@ namespace Bit.Core.Services
return Task.FromResult(0);
}
public Task<string> GetSendFileDownloadUrlAsync(string fileId)
public Task<string> GetSendFileDownloadUrlAsync(Send send, string fileId)
{
return Task.FromResult((string)null);
}