add /buckets endpoint paging links
parent
bce744f08d
commit
cb8f7a1744
26
bucket.go
26
bucket.go
|
@ -75,12 +75,26 @@ type BucketFilter struct {
|
|||
Organization *string
|
||||
}
|
||||
|
||||
// FindOptions represents options passed to all find methods with multiple results.
|
||||
type FindOptions struct {
|
||||
Limit int
|
||||
Offset int
|
||||
SortBy string
|
||||
Descending bool
|
||||
// QueryParams Converts BucketFilter fields to url query params.
|
||||
func (f BucketFilter) QueryParams() map[string][]string {
|
||||
qp := map[string][]string{}
|
||||
if f.ID != nil {
|
||||
qp["id"] = []string{f.ID.String()}
|
||||
}
|
||||
|
||||
if f.Name != nil {
|
||||
qp["name"] = []string{*f.Name}
|
||||
}
|
||||
|
||||
if f.OrganizationID != nil {
|
||||
qp["orgID"] = []string{f.OrganizationID.String()}
|
||||
}
|
||||
|
||||
if f.Organization != nil {
|
||||
qp["org"] = []string{*f.Organization}
|
||||
}
|
||||
|
||||
return qp
|
||||
}
|
||||
|
||||
// InternalBucketID returns the ID for an organization's specified internal bucket
|
||||
|
|
|
@ -11,7 +11,7 @@ import (
|
|||
"time"
|
||||
|
||||
"github.com/influxdata/platform"
|
||||
errors "github.com/influxdata/platform/kit/errors"
|
||||
"github.com/influxdata/platform/kit/errors"
|
||||
"github.com/julienschmidt/httprouter"
|
||||
)
|
||||
|
||||
|
@ -195,8 +195,8 @@ func newBucketResponse(b *platform.Bucket) *bucketResponse {
|
|||
}
|
||||
|
||||
type bucketsResponse struct {
|
||||
Links map[string]string `json:"links"`
|
||||
Buckets []*bucketResponse `json:"buckets"`
|
||||
Links *platform.PagingLinks `json:"links"`
|
||||
Buckets []*bucketResponse `json:"buckets"`
|
||||
}
|
||||
|
||||
func newBucketsResponse(opts platform.FindOptions, f platform.BucketFilter, bs []*platform.Bucket) *bucketsResponse {
|
||||
|
@ -205,10 +205,7 @@ func newBucketsResponse(opts platform.FindOptions, f platform.BucketFilter, bs [
|
|||
rs = append(rs, newBucketResponse(b))
|
||||
}
|
||||
return &bucketsResponse{
|
||||
// TODO(desa): update links to include paging and filter information
|
||||
Links: map[string]string{
|
||||
"self": "/api/v2/buckets",
|
||||
},
|
||||
Links: newPagingLinks(bucketsPath, opts, f, len(bs)),
|
||||
Buckets: rs,
|
||||
}
|
||||
}
|
||||
|
@ -357,14 +354,13 @@ func (h *BucketHandler) handleGetBuckets(w http.ResponseWriter, r *http.Request)
|
|||
return
|
||||
}
|
||||
|
||||
opts := platform.FindOptions{}
|
||||
bs, _, err := h.BucketService.FindBuckets(ctx, req.filter, opts)
|
||||
bs, _, err := h.BucketService.FindBuckets(ctx, req.filter, req.opts)
|
||||
if err != nil {
|
||||
EncodeError(ctx, err, w)
|
||||
return
|
||||
}
|
||||
|
||||
if err := encodeResponse(ctx, w, http.StatusOK, newBucketsResponse(opts, req.filter, bs)); err != nil {
|
||||
if err := encodeResponse(ctx, w, http.StatusOK, newBucketsResponse(req.opts, req.filter, bs)); err != nil {
|
||||
EncodeError(ctx, err, w)
|
||||
return
|
||||
}
|
||||
|
@ -372,12 +368,20 @@ func (h *BucketHandler) handleGetBuckets(w http.ResponseWriter, r *http.Request)
|
|||
|
||||
type getBucketsRequest struct {
|
||||
filter platform.BucketFilter
|
||||
opts platform.FindOptions
|
||||
}
|
||||
|
||||
func decodeGetBucketsRequest(ctx context.Context, r *http.Request) (*getBucketsRequest, error) {
|
||||
qp := r.URL.Query()
|
||||
req := &getBucketsRequest{}
|
||||
|
||||
opts, err := decodeFindOptions(ctx, r)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
req.opts = *opts
|
||||
|
||||
if orgID := qp.Get("orgID"); orgID != "" {
|
||||
id, err := platform.IDFromString(orgID)
|
||||
if err != nil {
|
||||
|
|
|
@ -59,14 +59,26 @@ func TestService_handleGetBuckets(t *testing.T) {
|
|||
},
|
||||
},
|
||||
},
|
||||
args: args{},
|
||||
args: args{
|
||||
map[string][]string{
|
||||
"limit": []string{"1"},
|
||||
},
|
||||
},
|
||||
wants: wants{
|
||||
statusCode: http.StatusOK,
|
||||
contentType: "application/json; charset=utf-8",
|
||||
body: `
|
||||
{
|
||||
"links": {
|
||||
"self": "/api/v2/buckets"
|
||||
"prev": {
|
||||
"prev": ""
|
||||
},
|
||||
"self": {
|
||||
"self": "/api/v2/buckets?descending=false&limit=1&offset=0"
|
||||
},
|
||||
"next": {
|
||||
"next": "/api/v2/buckets?descending=false&limit=1&offset=1"
|
||||
}
|
||||
},
|
||||
"buckets": [
|
||||
{
|
||||
|
@ -105,14 +117,26 @@ func TestService_handleGetBuckets(t *testing.T) {
|
|||
},
|
||||
},
|
||||
},
|
||||
args: args{},
|
||||
args: args{
|
||||
map[string][]string{
|
||||
"limit": []string{"1"},
|
||||
},
|
||||
},
|
||||
wants: wants{
|
||||
statusCode: http.StatusOK,
|
||||
contentType: "application/json; charset=utf-8",
|
||||
body: `
|
||||
{
|
||||
"links": {
|
||||
"self": "/api/v2/buckets"
|
||||
"prev": {
|
||||
"prev": ""
|
||||
},
|
||||
"self": {
|
||||
"self": "/api/v2/buckets?descending=false&limit=1&offset=0"
|
||||
},
|
||||
"next": {
|
||||
"next": ""
|
||||
}
|
||||
},
|
||||
"buckets": []
|
||||
}`,
|
||||
|
|
Loading…
Reference in New Issue