| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- package gitutil
- import (
- "github.com/cockroachdb/errors"
- )
- // TagsPage contains a list of tags and pagination information.
- type TagsPage struct {
- // List of tags in the current page.
- Tags []string
- // Whether the results include the latest tag.
- HasLatest bool
- // When results do not include the latest tag, an indicator of 'after' to go back.
- PreviousAfter string
- // Whether there are more tags in the next page.
- HasNext bool
- }
- func (module) ListTagsAfter(repoPath, after string, limit int) (*TagsPage, error) {
- all, err := Module.RepoTags(repoPath)
- if err != nil {
- return nil, errors.Wrap(err, "get tags")
- }
- total := len(all)
- if limit < 0 {
- limit = 0
- }
- // Returns everything when no filter and no limit
- if after == "" && limit == 0 {
- return &TagsPage{
- Tags: all,
- HasLatest: true,
- }, nil
- }
- // No filter but has a limit, returns first X tags
- if after == "" && limit > 0 {
- endIdx := limit
- if limit > total {
- endIdx = total
- }
- return &TagsPage{
- Tags: all[:endIdx],
- HasLatest: true,
- HasNext: limit < total,
- }, nil
- }
- // Loop over all tags see if we can find the filter
- previousAfter := ""
- found := false
- tags := make([]string, 0, len(all))
- for i := range all {
- if all[i] != after {
- continue
- }
- found = true
- if limit > 0 && i-limit >= 0 {
- previousAfter = all[i-limit]
- }
- // In case filter is the oldest one
- if i+1 < total {
- tags = all[i+1:]
- }
- break
- }
- if !found {
- tags = all
- }
- // If all tags after match is equal to the limit, it reaches the oldest tag as well.
- if limit == 0 || len(tags) <= limit {
- return &TagsPage{
- Tags: tags,
- HasLatest: !found,
- PreviousAfter: previousAfter,
- }, nil
- }
- return &TagsPage{
- Tags: tags[:limit],
- HasLatest: !found,
- PreviousAfter: previousAfter,
- HasNext: true,
- }, nil
- }
|