[#181] index_page: Ignore deleted objects in versioned buckets
Some checks failed
/ Vulncheck (pull_request) Successful in 3m1s
/ DCO (pull_request) Successful in 5m23s
/ Builds (pull_request) Successful in 3m43s
/ Lint (pull_request) Failing after 3m46s
/ Tests (pull_request) Successful in 3m26s

Signed-off-by: Nikita Zinkevich <n.zinkevich@yadro.com>
This commit is contained in:
Nikita Zinkevich 2024-12-16 13:01:50 +03:00
parent dc100f03a6
commit 37e6307d3f
Signed by: nzinkevich
GPG key ID: 748EA1D0B2E6420A

View file

@ -28,6 +28,7 @@ const (
attrFileName = "FileName"
attrFilePath = "FilePath"
attrSize = "Size"
attrDeleteMarker = "IsDeleteMarker"
)
type (
@ -46,6 +47,7 @@ type (
Size string
IsDir bool
GetURL string
IsDeleteMarker bool
}
)
@ -56,6 +58,7 @@ func newListObjectsResponseS3(attrs map[string]string) ResponseObject {
FileName: attrs[attrFileName],
Size: attrs[attrSize],
IsDir: attrs[attrOID] == "",
IsDeleteMarker: attrs[attrDeleteMarker] == "true",
}
}
@ -179,6 +182,9 @@ func (h *Handler) getDirObjectsS3(ctx context.Context, bucketInfo *data.BucketIn
attrs[m.GetKey()] = string(m.GetValue())
}
obj := newListObjectsResponseS3(attrs)
if obj.IsDeleteMarker {
continue
}
obj.FilePath = prefix + obj.FileName
obj.GetURL = "/get/" + bucketInfo.Name + urlencode(obj.FilePath)
result.objects = append(result.objects, obj)