mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-05 01:10:12 -05:00
Adding Paged responses helper
This commit is contained in:
parent
e0d3f04d90
commit
54339f3615
@ -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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user