[#137] Add index page support #141
No reviewers
TrueCloudLab/storage-services-developers
Labels
No labels
P0
P1
P2
P3
good first issue
Infrastructure
blocked
bug
config
discussion
documentation
duplicate
enhancement
go
help wanted
internal
invalid
kludge
observability
perfomance
question
refactoring
wontfix
No milestone
No project
No assignees
4 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-http-gw#141
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "nzinkevich/frostfs-http-gw:feature/137/index_page"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Added index HTML-page response for
Get object
endpoint ifoid
parameter is:S3 object name
format (not ID) and is recognized as a path prefixCould we consider implementing an option to specify the path for the index page template within the configuration settings?
Looking ahead, it would be beneficial to have the capability to retrieve templates directly from the container in future versions.
6b35eb4527
to31b838f86a
@ -101,6 +101,11 @@ request_timeout: 5s # Timeout to check node health during rebalance.
rebalance_timer: 30s # Interval to check nodes health.
pool_error_threshold: 100 # The number of errors on connection after which node is considered as unhealthy.
# enable index page to see objects list for specified container and prefix
@ -0,0 +68,4 @@
return
}
respObjects := make([]ResponseObject, len(nodes))
if err = json.Unmarshal(jsonNodes, &respObjects); err != nil {
Can we write direct converter from
nodes
torespObjects
without JSON as a middle step?@ -155,6 +157,8 @@ type Handler struct {
cache *cache.BucketCache
}
type ListType int
Unused?
@ -50,3 +50,3 @@
AddedPathGetCidOid = "added path /get/{cid}/{oid}" // Info in ../../app.go
AddedPathGetByAttributeCidAttrKeyAttrVal = "added path /get_by_attribute/{cid}/{attr_key}/{attr_val:*}" // Info in ../../app.go
AddedPathZipCidPrefix = "added path /zip/{cid}/{prefix}" // Info in ../../app.go
AddedPathZipCidPrefix = "added path /zip/{cid}/{prefix:*}" // Info in ../../app.go
Can you add a small new issue on that? I am not sure this is the thing we need to fix, especially in this PR.
Codebase uses
{prefix:*}
but I am not sure this is required. Maybe we need to fix code.@ -77,0 +82,4 @@
GetNodeID() []uint64
}
type SubTreeStream interface {
Unused?
31b838f86a
to82bd6f0f8e
82bd6f0f8e
to5e24713418
@ -190,0 +292,4 @@
}
if len(intermediateNodes) == 0 {
return nil, layer.ErrNodeNotFound
I wonder, is it affected by an issue from TrueCloudLab/frostfs-s3-gw#488?
Should we adopt these s3 gateway changes here or it doesn't matter here?
I think it's okay because we don't extract err code from layer.error. Instead of that we check error and write to response a new one
if err != nil {
@ -160,8 +172,8 @@ func getLatestNode(nodes []NodeResponse) (NodeResponse, error) {
for i, node := range nodes {
currentCreationTime := node.GetTimestamp()
Can we synchronize this implementation with s3-gw?
We change this code anyway.
I think yes, they are quite similar
@ -20,3 +21,4 @@
return []uint64{n.response.GetNodeId()}
}
func (n GetNodeByPathResponseInfoWrapper) GetParentID() uint64 {
I suggest to synchronize this also with s3-gw and return
[]uint64
. We did this to fix some tree service split issues. We would like to keep this code similar.Overall this looks very pretty.
I suggest you to process comments or comment what you think about them.
5e24713418
to242bf356d3
New commits pushed, approval review dismissed automatically according to repository settings
242bf356d3
to733362dbb2
733362dbb2
to7b07002269
b3f3c4cd99
to21d9946f76
21d9946f76
to0c2f170252
@ -192,2 +195,4 @@
v.SetDefault(cfgPoolErrorThreshold, defaultPoolErrorThreshold)
v.SetDefault(cfgIndexPageEnabled, false)
v.SetDefault(cfgIndexPageTemplatePath, "")
Shouldn't we use
template/index.gotmpl
?@ -382,0 +390,4 @@
func (h *Handler) listObjects(ctx context.Context, bucketName, prefix string) ([]map[string]string, error) {
var (
log = h.log.With(zap.String("bucket", bucketName))
It's better to write:
0c2f170252
toa8b3833813
New commits pushed, approval review dismissed automatically according to repository settings
a8b3833813
to26b36e442c
@ -0,0 +90,4 @@
func (h *Handler) browseObjects(c *fasthttp.RequestCtx, bucketName, prefix string) {
var log = h.log.With(zap.String("bucket", bucketName))
ctx := utils.GetContextFromRequest(c)
nodes, err := h.listObjects(ctx, bucketName, prefix)
If
len(nodes) == 0
probably we should return not found errorI think we should return NotFound by default not only in that case but each time we browsing objects. Otherwise we would violate API
Could you clarify what do you mean?
By the way, currently we don't return
not found
if provided path ends with/
and doesn't existI mean that index page returns html with status code 200 in places, where API should return 404. If so, enabling index page would cause API requests to return incorrect status codes.
At first I thought that all index pages should return 404.
But it turns out, that some folders would return 200. For example, if we create object with key
/foo/bar/
, request/get/bucketName/foo/bar/
returns 200, but/get/bucketName/foo/
returns 404 (becausefoo/
stored only in a tree service I suppose)@ -96,0 +92,4 @@
zipCompression bool
clientCut bool
returnIndexPage bool
indexPageTemplatePath string
Why do we need this field in
appSettings
?@ -96,0 +93,4 @@
clientCut bool
returnIndexPage bool
indexPageTemplatePath string
indexPageTemplate string
Why do we actually need this template be reloadable?
#141 (comment)
That comment doesn't answer about realoadability
Why we should disable reloadability? Do you think that it's critical for reload performance?
@ -104,0 +104,4 @@
# Enable index page to see objects list for specified container and prefix
index_page:
enabled: false
template_path: /templates/index.gotmpl
Maybe it's better to provide path to real default config?
internal/handler/templates/index.gotmpl
@ -0,0 +18,4 @@
const (
dateFormat = "02-01-2006 15:04"
attrOID, attrCreated, attrFileName, attrSize = "OID", "Created", "FileName", "Size"
Let's keep each constant on separate line
@ -0,0 +88,4 @@
}
func (h *Handler) browseObjects(c *fasthttp.RequestCtx, bucketName, prefix string) {
var log = h.log.With(zap.String("bucket", bucketName))
It's better to write:
@ -39,0 +39,4 @@
func (n nodeResponse) GetNodeID() []uint64 {
return nil
}
func (n nodeResponse) GetParentID() []uint64 {
Please add empty line between methods
Still there isn't empty line
26b36e442c
tob25703aefa
b25703aefa
to329f43c079
329f43c079
to585971ebf7
@ -0,0 +37,4 @@
)
//go:embed templates/index.gotmpl
var defaultTemplate string
I suggest to move default setting out of handler and put it into configuration of app.go
This way we will have single place in application that manages actual template string. It will be easier to manage it later.
What you think?
If we move default template init to app.go, it wouldn't be so nice because
go:embed
allows only link files which is relative to current package (and prohibits using..
in path). Thus we should move (or at least symlink) template file to cmd/http-gw as well which I think we shouldn't doBut we still can introduce separate package for reading default template. And use it in app.go
@ -31,2 +31,4 @@
ZipCompression() bool
ClientCut() bool
IndexPageEnabled() bool
IndexPageTemplatePath() string
This interface method is unused. Remove it.
90d656d841
toc57dec966b
c57dec966b
to48fb600ae2
48fb600ae2
to440df2ca7e
@ -0,0 +66,4 @@
{{end}}
{{else if and (not .FileName) .Size}}
{{/* this is an object with body of current dir */}}
..{{parentDir $prefix}}/
It's quite confusing. At least it must be
../{{parentDir $prefix}}/
. But it can be understood as object with keyparent-dir/../parent-dir/
rather thanparent-dir/
Please consider something like this
I'd like to see
0B
if object has empty payload.Also, please fix link with case like this
objects:
/dir/
/dir/ //4
/dir/..
dir2/obj
tmp
tmp-raw
Just wondering. Why did you drop perfect tiny back arrow icon (⮐)?
440df2ca7e
toda9ce5f396
@ -0,0 +33,4 @@
<tr>
<th>Filename</th>
<th>Size</th>
<th>Created</th>
We must add fourth (
Download
for example)da9ce5f396
to8fe8f2dcc2
New commits pushed, approval review dismissed automatically according to repository settings