1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/pkg/orchestrator/orchestrator.go
Christopher Fenner 4525c1daa4
fix: use orchestrator specific stage name (#3127)
* extend orchestator to provide stage name

* use orchestrator specific stage name

* fix test case

* remove comment

* fix test case

* prettify

* change something..

* do not exit

* Update pkg/orchestrator/azureDevOps.go

Co-authored-by: Oliver Nocon <33484802+OliverNocon@users.noreply.github.com>
2021-09-29 08:31:45 +02:00

85 lines
1.7 KiB
Go

package orchestrator
import (
"errors"
"os"
)
type Orchestrator int
const (
Unknown Orchestrator = iota
AzureDevOps
GitHubActions
Jenkins
)
type OrchestratorSpecificConfigProviding interface {
GetStageName() string
GetBranch() string
GetBuildUrl() string
GetCommit() string
GetPullRequestConfig() PullRequestConfig
GetRepoUrl() string
IsPullRequest() bool
}
type PullRequestConfig struct {
Branch string
Base string
Key string
}
func NewOrchestratorSpecificConfigProvider() (OrchestratorSpecificConfigProviding, error) {
switch DetectOrchestrator() {
case AzureDevOps:
return &AzureDevOpsConfigProvider{}, nil
case GitHubActions:
return &GitHubActionsConfigProvider{}, nil
case Jenkins:
return &JenkinsConfigProvider{}, nil
case Unknown:
fallthrough
default:
return nil, errors.New("unable to detect a supported orchestrator (Azure DevOps, GitHub Actions, Jenkins)")
}
}
func DetectOrchestrator() Orchestrator {
if isAzure() {
return Orchestrator(AzureDevOps)
} else if isGitHubActions() {
return Orchestrator(GitHubActions)
} else if isJenkins() {
return Orchestrator(Jenkins)
} else {
return Orchestrator(Unknown)
}
}
func (o Orchestrator) String() string {
return [...]string{"Unknown", "AzureDevOps", "GitHubActions", "Jenkins"}[o]
}
func areIndicatingEnvVarsSet(envVars []string) bool {
for _, v := range envVars {
if truthy(v) {
return true
}
}
return false
}
// Checks if var is set and neither empty nor false
func truthy(key string) bool {
val, exists := os.LookupEnv(key)
if !exists {
return false
}
if len(val) == 0 || val == "no" || val == "false" || val == "off" || val == "0" {
return false
}
return true
}