Add content size to direct_link and a etag

This commit is contained in:
Timothy Baldridge 2022-01-07 15:20:10 -07:00
parent a729c4f1e0
commit cd324905dd

View File

@ -184,6 +184,8 @@ public class AuthoredFiles : ControllerBase
Response.Headers.ContentDisposition =
new StringValues($"attachment; filename={definition.OriginalFileName}");
Response.Headers.ContentType = new StringValues("application/octet-stream");
Response.Headers.ContentLength = definition.Size;
Response.Headers.ETag = definition.MungedName + "_direct";
foreach (var part in definition.Parts)
{
await using var partStream = await _authoredFiles.StreamForPart(mungedName, (int)part.Index);