drone/types/enum/git.go
Johannes Batzill 2d4db78991 Add Tag Listing API (#49)
This change is adding the List Tags API. To do so, a few changes were necessary:
- Refactor List Branches on giteaAdapter / repo_service
- Expose WalkReferences via giteaAdapter
2022-10-28 13:10:26 -07:00

80 lines
1.8 KiB
Go

// Copyright 2022 Harness Inc. All rights reserved.
// Use of this source code is governed by the Polyform Free Trial License
// that can be found in the LICENSE.md file for this repository.
package enum
import "strings"
// BranchSortOption specifies the available sort options for branches.
type BranchSortOption int
const (
BranchSortOptionDefault BranchSortOption = iota
BranchSortOptionName
BranchSortOptionDate
)
// ParseBranchSortOption parses the branch sort option string
// and returns the equivalent enumeration.
func ParseBranchSortOption(s string) BranchSortOption {
switch strings.ToLower(s) {
case name:
return BranchSortOptionName
case date:
return BranchSortOptionDate
default:
return BranchSortOptionDefault
}
}
// String returns a string representation of the branch sort option.
func (o BranchSortOption) String() string {
switch o {
case BranchSortOptionName:
return name
case BranchSortOptionDate:
return date
case BranchSortOptionDefault:
return defaultString
default:
return undefined
}
}
// TagSortOption specifies the available sort options for tags.
type TagSortOption int
const (
TagSortOptionDefault TagSortOption = iota
TagSortOptionName
TagSortOptionDate
)
// ParseTagSortOption parses the tag sort option string
// and returns the equivalent enumeration.
func ParseTagSortOption(s string) TagSortOption {
switch strings.ToLower(s) {
case name:
return TagSortOptionName
case date:
return TagSortOptionDate
default:
return TagSortOptionDefault
}
}
// String returns a string representation of the tag sort option.
func (o TagSortOption) String() string {
switch o {
case TagSortOptionName:
return name
case TagSortOptionDate:
return date
case TagSortOptionDefault:
return defaultString
default:
return undefined
}
}