drone/types/enum/webhook.go

139 lines
4.6 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"
// WebhookAttr defines webhook attributes that can be used for sorting and filtering.
type WebhookAttr int
const (
WebhookAttrNone WebhookAttr = iota
WebhookAttrID
WebhookAttrDisplayName
WebhookAttrCreated
WebhookAttrUpdated
)
// ParseWebhookAttr parses the webhook attribute string
// and returns the equivalent enumeration.
func ParseWebhookAttr(s string) WebhookAttr {
switch strings.ToLower(s) {
case id:
return WebhookAttrID
case displayName:
return WebhookAttrDisplayName
case created, createdAt:
return WebhookAttrCreated
case updated, updatedAt:
return WebhookAttrUpdated
default:
return WebhookAttrNone
}
}
// String returns the string representation of the attribute.
func (a WebhookAttr) String() string {
switch a {
case WebhookAttrID:
return id
case WebhookAttrDisplayName:
return displayName
case WebhookAttrCreated:
return created
case WebhookAttrUpdated:
return updated
case WebhookAttrNone:
return ""
default:
return undefined
}
}
// WebhookParent defines different types of parents of a webhook.
type WebhookParent string
func (WebhookParent) Enum() []interface{} { return toInterfaceSlice(webhookParents) }
const (
// WebhookParentRepo describes a repo as webhook owner.
WebhookParentRepo WebhookParent = "repo"
// WebhookParentSpace describes a space as webhook owner.
WebhookParentSpace WebhookParent = "space"
)
var webhookParents = sortEnum([]WebhookParent{
WebhookParentRepo,
WebhookParentSpace,
})
// WebhookExecutionResult defines the different results of a webhook execution.
type WebhookExecutionResult string
func (WebhookExecutionResult) Enum() []interface{} { return toInterfaceSlice(webhookExecutionResults) }
const (
// WebhookExecutionResultSuccess describes a webhook execution result that succeeded.
WebhookExecutionResultSuccess WebhookExecutionResult = "success"
// WebhookExecutionResultRetriableError describes a webhook execution result that failed with a retriable error.
WebhookExecutionResultRetriableError WebhookExecutionResult = "retriable_error"
// WebhookExecutionResultFatalError describes a webhook execution result that failed with an unrecoverable error.
WebhookExecutionResultFatalError WebhookExecutionResult = "fatal_error"
)
var webhookExecutionResults = sortEnum([]WebhookExecutionResult{
WebhookExecutionResultSuccess,
WebhookExecutionResultRetriableError,
WebhookExecutionResultFatalError,
})
// WebhookTrigger defines the different types of webhook triggers available.
type WebhookTrigger string
func (WebhookTrigger) Enum() []interface{} { return toInterfaceSlice(webhookTriggers) }
func (s WebhookTrigger) Sanitize() (WebhookTrigger, bool) { return Sanitize(s, GetAllWebhookTriggers) }
func GetAllWebhookTriggers() ([]WebhookTrigger, WebhookTrigger) {
return webhookTriggers, "" // No default value
}
const (
// WebhookTriggerBranchCreated gets triggered when a branch gets created.
WebhookTriggerBranchCreated WebhookTrigger = "branch_created"
// WebhookTriggerBranchUpdated gets triggered when a branch gets updated.
WebhookTriggerBranchUpdated WebhookTrigger = "branch_updated"
// WebhookTriggerBranchDeleted gets triggered when a branch gets deleted.
WebhookTriggerBranchDeleted WebhookTrigger = "branch_deleted"
// WebhookTriggerTagCreated gets triggered when a tag gets created.
WebhookTriggerTagCreated WebhookTrigger = "tag_created"
// WebhookTriggerTagUpdated gets triggered when a tag gets updated.
WebhookTriggerTagUpdated WebhookTrigger = "tag_updated"
// WebhookTriggerTagDeleted gets triggered when a tag gets deleted.
WebhookTriggerTagDeleted WebhookTrigger = "tag_deleted"
// WebhookTriggerPullReqCreated gets triggered when a pull request gets created.
WebhookTriggerPullReqCreated WebhookTrigger = "pullreq_created"
// WebhookTriggerPullReqReopened gets triggered when a pull request gets reopened.
WebhookTriggerPullReqReopened WebhookTrigger = "pullreq_reopened"
// WebhookTriggerPullReqBranchUpdated gets triggered when a pull request source branch gets updated.
WebhookTriggerPullReqBranchUpdated WebhookTrigger = "pullreq_branch_updated"
)
var webhookTriggers = sortEnum([]WebhookTrigger{
WebhookTriggerBranchCreated,
WebhookTriggerBranchUpdated,
WebhookTriggerBranchDeleted,
WebhookTriggerTagCreated,
WebhookTriggerTagUpdated,
WebhookTriggerTagDeleted,
WebhookTriggerPullReqCreated,
WebhookTriggerPullReqReopened,
WebhookTriggerPullReqBranchUpdated,
})