Skip to content

Commit 870be22

Browse files
moskybmcncl
andauthored
Environment Variable config (#408)
* Upgrade Go to 1.23.3 * Allow configuring API token and org slug via environment variable * Allow configuring REST API endpoint by environment variable --------- Co-authored-by: Ben McNicholl <[email protected]>
1 parent 4e066fd commit 870be22

File tree

3 files changed

+34
-20
lines changed

3 files changed

+34
-20
lines changed

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/buildkite/cli/v3
22

3-
go 1.22
3+
go 1.23
44

5-
toolchain go1.22.5
5+
toolchain go1.23.3
66

77
require (
88
github.com/AlecAivazis/survey/v2 v2.3.7

internal/config/config.go

+31-18
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,26 @@ package config
88
import (
99
"errors"
1010
"fmt"
11+
"maps"
1112
"os"
1213
"path/filepath"
1314
"runtime"
15+
"slices"
1416

1517
"github.com/buildkite/cli/v3/internal/pipeline"
18+
"github.com/buildkite/go-buildkite/v4"
1619
"github.com/go-git/go-git/v5"
1720
"github.com/spf13/afero"
1821
"github.com/spf13/viper"
1922
)
2023

2124
const (
2225
DefaultGraphQLEndpoint = "https://graphql.buildkite.com/v1"
23-
appData = "AppData"
24-
configFilePath = "bk.yaml"
25-
localConfigFilePath = "." + configFilePath
26-
xdgConfigHome = "XDG_CONFIG_HOME"
26+
27+
appData = "AppData"
28+
configFilePath = "bk.yaml"
29+
localConfigFilePath = "." + configFilePath
30+
xdgConfigHome = "XDG_CONFIG_HOME"
2731
)
2832

2933
// Config contains the configuration for the currently selected organization
@@ -86,6 +90,7 @@ func New(fs afero.Fs, repo *git.Repository) *Config {
8690
// This will search for configuration in that order.
8791
func (conf *Config) OrganizationSlug() string {
8892
return firstNonEmpty(
93+
os.Getenv("BUILDKITE_ORGANIZATION_SLUG"),
8994
conf.localConfig.GetString("selected_org"),
9095
conf.userConfig.GetString("selected_org"),
9196
)
@@ -101,7 +106,10 @@ func (conf *Config) SelectOrganization(org string) error {
101106
func (conf *Config) APIToken() string {
102107
slug := conf.OrganizationSlug()
103108
key := fmt.Sprintf("organizations.%s.api_token", slug)
104-
return conf.userConfig.GetString(key)
109+
return firstNonEmpty(
110+
os.Getenv("BUILDKITE_API_TOKEN"),
111+
conf.userConfig.GetString(key),
112+
)
105113
}
106114

107115
// SetTokenForOrg sets the token for the given org in the user configuration file. Tokens are not stored in the local
@@ -114,11 +122,11 @@ func (conf *Config) SetTokenForOrg(org, token string) error {
114122

115123
func (conf *Config) ConfiguredOrganizations() []string {
116124
m := conf.userConfig.GetStringMap("organizations")
117-
keys := make([]string, 0, len(m))
118-
for k := range m {
119-
keys = append(keys, k)
125+
orgs := slices.Collect(maps.Keys(m))
126+
if o := os.Getenv("BUILDKITE_ORGANIZATION_SLUG"); o != "" {
127+
orgs = append(orgs, o)
120128
}
121-
return keys
129+
return orgs
122130
}
123131

124132
func (conf *Config) GetGraphQLEndpoint() string {
@@ -129,10 +137,17 @@ func (conf *Config) GetGraphQLEndpoint() string {
129137
return DefaultGraphQLEndpoint
130138
}
131139

140+
func (conf *Config) RESTAPIEndpoint() string {
141+
value := os.Getenv("BUILDKITE_REST_API_ENDPOINT")
142+
if value != "" {
143+
return value
144+
}
145+
146+
return buildkite.DefaultBaseURL
147+
}
148+
132149
func (conf *Config) HasConfiguredOrganization(slug string) bool {
133-
m := conf.userConfig.GetStringMap("organizations")
134-
_, ok := m[slug]
135-
return ok
150+
return slices.Contains(conf.ConfiguredOrganizations(), slug)
136151
}
137152

138153
// PreferredPipelines will retrieve the list of pipelines from local configuration
@@ -169,16 +184,14 @@ func (conf *Config) SetPreferredPipelines(pipelines []pipeline.Pipeline) error {
169184
return conf.localConfig.WriteConfig()
170185
}
171186

172-
func firstNonEmpty[T comparable](t ...T) T {
173-
var empty T
174-
175-
for _, k := range t {
176-
if k != empty {
187+
func firstNonEmpty(s ...string) string {
188+
for _, k := range s {
189+
if k != "" {
177190
return k
178191
}
179192
}
180193

181-
return empty
194+
return ""
182195
}
183196

184197
// Config path precedence: XDG_CONFIG_HOME, AppData (windows only), HOME.

pkg/cmd/factory/factory.go

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ func New(version string) (*Factory, error) {
4040
repo, _ := git.PlainOpenWithOptions(".", &git.PlainOpenOptions{DetectDotGit: true, EnableDotGitCommonDir: true})
4141
conf := config.New(nil, repo)
4242
buildkiteClient, err := buildkite.NewOpts(
43+
buildkite.WithBaseURL(conf.RESTAPIEndpoint()),
4344
buildkite.WithTokenAuth(conf.APIToken()),
4445
buildkite.WithUserAgent(userAgent),
4546
)

0 commit comments

Comments
 (0)