drone/types/enum/path.go
Enver Bisevac f03528e862 [MAINT] initial config for ci linter (#17)
* initial config for ci linter

* more linter work

* linter errors fix

* linter errors fix

* linter conf minor changes
2022-09-19 18:13:18 +02:00

57 lines
1.4 KiB
Go

// Copyright 2021 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", "created_at":
return PathAttrCreated
case "updated", "updated_at":
return PathAttrUpdated
default:
return PathAttrNone
}
}