drone/types/enum/path.go
Johannes Batzill 5337c46a4f Add Query and Sorting Capability to ListBranches API (#42)
This change adds the following to the list branches api:
- 'query' parameter for querying branches using arbitrary substrings
- 'sort' parameter for sorting the branches (name and date supported)
- 'direction' parameter for specifing the direction of the sorted output
2022-10-21 20:45:26 -07:00

57 lines
1.4 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"
// PathTargetType defines the type of the target of a path.
type PathTargetType string
const (
PathTargetTypeRepo PathTargetType = "repo"
PathTargetTypeSpace PathTargetType = "space"
)
// TODO: Should we replace Path.IsAlias with a Path.Type property? Unless needed, bool would be more efficient
// // Defines the type of a path
// type PathType string
// const (
// // Path is only an alias - it doesn't dictate where the target is actually residing.
// PathTypeAlias PathTargetType = "alias"
// // Path is representing the residency of a resource (e.g. chain of parent spaces)
// PathTypePrimary PathTargetType = "primary"
// )
// PathAttr defines path attributes that can be used for sorting and filtering.
type PathAttr int
// Order enumeration.
const (
PathAttrNone PathAttr = iota
PathAttrID
PathAttrPath
PathAttrCreated
PathAttrUpdated
)
// ParsePathAttr parses the path attribute string
// and returns the equivalent enumeration.
func ParsePathAttr(s string) PathAttr {
switch strings.ToLower(s) {
case id:
return PathAttrID
case path:
return PathAttrPath
case created, createdAt:
return PathAttrCreated
case updated, updatedAt:
return PathAttrUpdated
default:
return PathAttrNone
}
}