Adding Paged responses helper

This commit is contained in:
gfleury 2020-03-16 13:31:26 -03:00
parent e0d3f04d90
commit 54339f3615

View File

@ -508,6 +508,7 @@ func NewBitbucketAPIResponse(r *http.Response) (*APIResponse, error) {
return response, err
}
// NewRawAPIResponse create new API response from http.response with raw data
func NewRawAPIResponse(r *http.Response) (*APIResponse, error) {
response := &APIResponse{Response: r}
raw, err := ioutil.ReadAll(r.Body)
@ -518,3 +519,10 @@ func NewRawAPIResponse(r *http.Response) (*APIResponse, error) {
response.Payload = raw
return response, nil
}
// HasNextPage returns if response is paged and has next page and where it does start
func HasNextPage(response *APIResponse) (bool, int) {
isLastPage := response.Values["isLastPage"].(bool)
nextPageStart := int(response.Values["nextPageStart"].(float64))
return !isLastPage, nextPageStart
}