mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 02:02:18 +00:00
546196a6fa
* e2e docs * slasher docs * Merge branch 'other-package-godocs' of github.com:prysmaticlabs/prysm into other-package-godocs * all validator package comments * Merge branch 'master' into other-package-godocs * completed all other packages * Merge branch 'master' into other-package-godocs * Merge refs/heads/master into other-package-godocs
44 lines
1.1 KiB
Go
44 lines
1.1 KiB
Go
// Package pagination contains useful pagination-related helpers.
|
|
package pagination
|
|
|
|
import (
|
|
"fmt"
|
|
"strconv"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
)
|
|
|
|
// StartAndEndPage takes in the requested page token, wanted page size, total page size.
|
|
// It returns start, end page and the next page token.
|
|
func StartAndEndPage(pageToken string, pageSize int, totalSize int) (int, int, string, error) {
|
|
if pageToken == "" {
|
|
pageToken = "0"
|
|
}
|
|
if pageSize == 0 {
|
|
pageSize = params.BeaconConfig().DefaultPageSize
|
|
}
|
|
|
|
token, err := strconv.Atoi(pageToken)
|
|
if err != nil {
|
|
return 0, 0, "", errors.Wrap(err, "could not convert page token")
|
|
}
|
|
|
|
// Start page can not be greater than set size.
|
|
start := token * pageSize
|
|
if start >= totalSize {
|
|
return 0, 0, "", fmt.Errorf("page start %d >= list %d", start, totalSize)
|
|
}
|
|
|
|
// End page can not go out of bound.
|
|
end := start + pageSize
|
|
nextPageToken := strconv.Itoa(token + 1)
|
|
|
|
if end > totalSize {
|
|
end = totalSize
|
|
nextPageToken = "" // Return an empty next page token for the last page of a set
|
|
}
|
|
|
|
return start, end, nextPageToken, nil
|
|
}
|