@@ -8,22 +8,26 @@ package config
8
8
import (
9
9
"errors"
10
10
"fmt"
11
+ "maps"
11
12
"os"
12
13
"path/filepath"
13
14
"runtime"
15
+ "slices"
14
16
15
17
"github.com/buildkite/cli/v3/internal/pipeline"
18
+ "github.com/buildkite/go-buildkite/v4"
16
19
"github.com/go-git/go-git/v5"
17
20
"github.com/spf13/afero"
18
21
"github.com/spf13/viper"
19
22
)
20
23
21
24
const (
22
25
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"
27
31
)
28
32
29
33
// Config contains the configuration for the currently selected organization
@@ -86,6 +90,7 @@ func New(fs afero.Fs, repo *git.Repository) *Config {
86
90
// This will search for configuration in that order.
87
91
func (conf * Config ) OrganizationSlug () string {
88
92
return firstNonEmpty (
93
+ os .Getenv ("BUILDKITE_ORGANIZATION_SLUG" ),
89
94
conf .localConfig .GetString ("selected_org" ),
90
95
conf .userConfig .GetString ("selected_org" ),
91
96
)
@@ -101,7 +106,10 @@ func (conf *Config) SelectOrganization(org string) error {
101
106
func (conf * Config ) APIToken () string {
102
107
slug := conf .OrganizationSlug ()
103
108
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
+ )
105
113
}
106
114
107
115
// 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 {
114
122
115
123
func (conf * Config ) ConfiguredOrganizations () []string {
116
124
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 )
120
128
}
121
- return keys
129
+ return orgs
122
130
}
123
131
124
132
func (conf * Config ) GetGraphQLEndpoint () string {
@@ -129,10 +137,17 @@ func (conf *Config) GetGraphQLEndpoint() string {
129
137
return DefaultGraphQLEndpoint
130
138
}
131
139
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
+
132
149
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 )
136
151
}
137
152
138
153
// PreferredPipelines will retrieve the list of pipelines from local configuration
@@ -169,16 +184,14 @@ func (conf *Config) SetPreferredPipelines(pipelines []pipeline.Pipeline) error {
169
184
return conf .localConfig .WriteConfig ()
170
185
}
171
186
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 != "" {
177
190
return k
178
191
}
179
192
}
180
193
181
- return empty
194
+ return ""
182
195
}
183
196
184
197
// Config path precedence: XDG_CONFIG_HOME, AppData (windows only), HOME.
0 commit comments