[#181] index_page: Ignore deleted objects in versioned buckets
All checks were successful
/ DCO (pull_request) Successful in 4m5s
/ Vulncheck (pull_request) Successful in 4m17s
/ Builds (pull_request) Successful in 1m40s
/ Lint (pull_request) Successful in 2m54s
/ Tests (pull_request) Successful in 1m44s

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 bbc7c7367d
commit 96efac1de8
Signed by: nzinkevich
GPG key ID: 748EA1D0B2E6420A

View file

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