-
Notifications
You must be signed in to change notification settings - Fork 2
/
configrepo.go
404 lines (326 loc) · 12 KB
/
configrepo.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
package gocd
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
"os"
"path/filepath"
"strings"
"github.com/jinzhu/copier"
"github.com/nikhilsbhat/gocd-sdk-go/pkg/errors"
)
type PipelineFiles struct {
Name string
Path string
}
// GetConfigRepo fetches information of a specific config-repo from GoCD server.
func (conf *client) GetConfigRepo(repo string) (ConfigRepo, error) {
newClient := &client{}
if err := copier.CopyWithOption(newClient, conf, copier.Option{IgnoreEmpty: true, DeepCopy: true}); err != nil {
return ConfigRepo{}, err
}
var repoConf ConfigRepo
resp, err := newClient.httpClient.R().
SetHeaders(map[string]string{
"Accept": HeaderVersionFour,
}).
Get(filepath.Join(ConfigReposEndpoint, repo))
if err != nil {
return ConfigRepo{}, &errors.APIError{Err: err, Message: "get config-repo"}
}
if resp.StatusCode() != http.StatusOK {
return ConfigRepo{}, &errors.NonOkError{Code: resp.StatusCode(), Response: resp}
}
if err = json.Unmarshal(resp.Body(), &repoConf); err != nil {
return ConfigRepo{}, &errors.MarshalError{Err: err}
}
if len(resp.Header().Get("ETag")) == 0 {
return repoConf, &errors.NilHeaderError{Header: "ETag", Message: "getting config-repo"}
}
repoConf.ETAG = resp.Header().Get("ETag")
return repoConf, nil
}
// GetConfigRepos fetches information of all config-repos from GoCD server.
func (conf *client) GetConfigRepos() ([]ConfigRepo, error) {
newClient := &client{}
if err := copier.CopyWithOption(newClient, conf, copier.Option{IgnoreEmpty: true, DeepCopy: true}); err != nil {
return nil, err
}
var reposConf ConfigRepoConfig
resp, err := newClient.httpClient.R().
SetHeaders(map[string]string{
"Accept": HeaderVersionFour,
}).
Get(ConfigReposEndpoint)
if err != nil {
return nil, &errors.APIError{Err: err, Message: "get config-repos"}
}
if resp.StatusCode() != http.StatusOK {
return nil, &errors.NonOkError{Code: resp.StatusCode(), Response: resp}
}
if err = json.Unmarshal(resp.Body(), &reposConf); err != nil {
return nil, &errors.MarshalError{Err: err}
}
return reposConf.ConfigRepos.ConfigRepos, nil
}
// GetConfigReposInternal fetches information about all config repos from the GoCD server using GoCD's internal API.
// Use GetConfigRepos for fetching all config-repos information; use this only if you know why it is being used.
func (conf *client) GetConfigReposInternal() ([]ConfigRepo, error) {
newClient := &client{}
if err := copier.CopyWithOption(newClient, conf, copier.Option{IgnoreEmpty: true, DeepCopy: true}); err != nil {
return nil, err
}
var reposConf ConfigRepoConfig
resp, err := newClient.httpClient.R().
SetHeaders(map[string]string{
"Accept": HeaderVersionFour,
}).
Get(ConfigReposInternalEndpoint)
if err != nil {
return nil, &errors.APIError{Err: err, Message: "get config-repos using internal API"}
}
if resp.StatusCode() != http.StatusOK {
return nil, &errors.NonOkError{Code: resp.StatusCode(), Response: resp}
}
if err = json.Unmarshal(resp.Body(), &reposConf); err != nil {
return nil, &errors.MarshalError{Err: err}
}
return reposConf.ConfigRepos.ConfigRepos, nil
}
// GetConfigRepoDefinitions fetches information of a specific config-repo from GoCD server.
func (conf *client) GetConfigRepoDefinitions(repo string) (ConfigRepo, error) {
newClient := &client{}
if err := copier.CopyWithOption(newClient, conf, copier.Option{IgnoreEmpty: true, DeepCopy: true}); err != nil {
return ConfigRepo{}, err
}
var repoConf ConfigRepo
resp, err := newClient.httpClient.R().
SetHeaders(map[string]string{
"Accept": HeaderVersionFour,
}).
Get(filepath.Join(ConfigReposEndpoint, repo, "definitions"))
if err != nil {
return ConfigRepo{}, &errors.APIError{Err: err, Message: fmt.Sprintf("get config-repo definitions for '%s'", repo)}
}
if resp.StatusCode() != http.StatusOK {
return ConfigRepo{}, &errors.NonOkError{Code: resp.StatusCode(), Response: resp}
}
if err = json.Unmarshal(resp.Body(), &repoConf); err != nil {
return ConfigRepo{}, &errors.MarshalError{Err: err}
}
return repoConf, nil
}
// CreateConfigRepo fetches information of all config-repos in GoCD server.
func (conf *client) CreateConfigRepo(repoObj ConfigRepo) error {
newClient := &client{}
if err := copier.CopyWithOption(newClient, conf, copier.Option{IgnoreEmpty: true, DeepCopy: true}); err != nil {
return err
}
resp, err := newClient.httpClient.R().
SetHeaders(map[string]string{
"Accept": HeaderVersionFour,
"Content-Type": ContentJSON,
}).
SetBody(repoObj).
Post(ConfigReposEndpoint)
if err != nil {
return &errors.APIError{Err: err, Message: "create config repo"}
}
if resp.StatusCode() != http.StatusOK {
return &errors.NonOkError{Code: resp.StatusCode(), Response: resp}
}
return nil
}
// UpdateConfigRepo updates the config repo configurations with the latest configurations provided.
func (conf *client) UpdateConfigRepo(repo ConfigRepo) (string, error) {
newClient := &client{}
if err := copier.CopyWithOption(newClient, conf, copier.Option{IgnoreEmpty: true, DeepCopy: true}); err != nil {
return "", err
}
resp, err := newClient.httpClient.R().
SetHeaders(map[string]string{
"Accept": HeaderVersionFour,
"Content-Type": ContentJSON,
"If-Match": repo.ETAG,
}).
SetBody(repo).
Put(filepath.Join(ConfigReposEndpoint, repo.ID))
if err != nil {
return "", &errors.APIError{Err: err, Message: "call made to update config repo"}
}
if resp.StatusCode() != http.StatusOK {
return "", &errors.NonOkError{Code: resp.StatusCode(), Response: resp}
}
return resp.Header().Get("ETag"), nil
}
// DeleteConfigRepo deletes a specific config repo.
func (conf *client) DeleteConfigRepo(repo string) error {
newClient := &client{}
if err := copier.CopyWithOption(newClient, conf, copier.Option{IgnoreEmpty: true, DeepCopy: true}); err != nil {
return err
}
resp, err := newClient.httpClient.R().
SetHeaders(map[string]string{
"Accept": HeaderVersionFour,
"Content-Type": ContentJSON,
}).
Delete(filepath.Join(ConfigReposEndpoint, repo))
if err != nil {
return &errors.APIError{Err: err, Message: fmt.Sprintf("delete config repo '%s'", repo)}
}
if resp.StatusCode() != http.StatusOK {
return &errors.NonOkError{Code: resp.StatusCode(), Response: resp}
}
return nil
}
// ConfigRepoTriggerUpdate triggers config repo update for a specific config-repo.
func (conf *client) ConfigRepoTriggerUpdate(name string) (map[string]string, error) {
newClient := &client{}
if err := copier.CopyWithOption(newClient, conf, copier.Option{IgnoreEmpty: true, DeepCopy: true}); err != nil {
return nil, err
}
resp, err := newClient.httpClient.R().
SetHeaders(map[string]string{
"Accept": HeaderVersionFour,
HeaderConfirm: "true",
}).
Post(filepath.Join(ConfigReposEndpoint, name, "trigger_update"))
if err != nil {
return nil, &errors.APIError{Err: err, Message: fmt.Sprintf("trigger update configrepo '%s'", name)}
}
if (resp.StatusCode() != http.StatusCreated) && (resp.StatusCode() != http.StatusConflict) {
return nil, &errors.NonOkError{Code: resp.StatusCode(), Response: resp}
}
var response map[string]string
if err = json.Unmarshal(resp.Body(), &response); err != nil {
return response, &errors.MarshalError{Err: err}
}
return response, nil
}
// ConfigRepoStatus fetches the latest available status of the specified config repo.
func (conf *client) ConfigRepoStatus(repo string) (map[string]bool, error) {
newClient := &client{}
if err := copier.CopyWithOption(newClient, conf, copier.Option{IgnoreEmpty: true, DeepCopy: true}); err != nil {
return nil, err
}
resp, err := newClient.httpClient.R().
SetHeaders(map[string]string{
"Accept": HeaderVersionFour,
}).
Get(filepath.Join(ConfigReposEndpoint, repo, "status"))
if err != nil {
return nil, &errors.APIError{Err: err, Message: fmt.Sprintf("get status of configrepo '%s'", repo)}
}
if resp.StatusCode() != http.StatusOK {
return nil, &errors.NonOkError{Code: resp.StatusCode(), Response: resp}
}
var response map[string]bool
if err = json.Unmarshal(resp.Body(), &response); err != nil {
return response, &errors.MarshalError{Err: err}
}
return response, nil
}
// ConfigRepoPreflightCheck runs the pre-flight checks on the config-repo with the provided pipeline files.
// Checks posted definition file(s) for syntax and merge errors without updating the current GoCD configuration.
func (conf *client) ConfigRepoPreflightCheck(pipelines map[string]string, pluginID string, repoID string) (bool, error) {
newClient := &client{}
if err := copier.CopyWithOption(newClient, conf, copier.Option{IgnoreEmpty: true, DeepCopy: true}); err != nil {
return false, err
}
request := newClient.httpClient.R().
SetHeaders(map[string]string{
"Accept": HeaderVersionOne,
}).
SetQueryParam("pluginId", pluginID).
SetQueryParam("repoId", repoID)
for name, path := range pipelines {
pipelineBytes, err := os.ReadFile(path)
if err != nil {
return false, err
}
request.SetFileReader("files[]", name, bytes.NewReader(pipelineBytes))
}
resp, err := request.Post(PreflightCheckEndpoint)
if err != nil {
return false, &errors.APIError{Err: err, Message: fmt.Sprintf("preflight check of confirepo '%s'", repoID)}
}
if resp.StatusCode() != http.StatusOK {
return false, &errors.NonOkError{Code: resp.StatusCode(), Response: resp}
}
var response map[string]interface{}
if err = json.Unmarshal(resp.Body(), &response); err != nil {
return false, &errors.MarshalError{Err: err}
}
if value, ok := response["errors"]; ok {
errorSlice := GetSLice(value)
if len(errorSlice) != 0 {
return false, &errors.GoCDSDKError{Message: strings.Join(errorSlice, "\n")}
}
}
return response["valid"].(bool), nil
}
// SetPipelineFiles transforms an array of pipeline files([]PipelineFiles) to map which could be utilised by ConfigRepoPreflightCheck.
func (conf *client) SetPipelineFiles(pipelines []PipelineFiles) map[string]string {
fileMap := make(map[string]string)
for _, pipeline := range pipelines {
fileMap[pipeline.Name] = pipeline.Path
}
return fileMap
}
// GetPipelineFiles reads the pipeline file or recursively read the directory to get all the pipelines matching the pattern and transforms to []PipelineFiles
// So that SetPipelineFiles can convert them to format that ConfigRepoPreflightCheck understands.
func (conf *client) GetPipelineFiles(path string, pipelines []string, patterns ...string) ([]PipelineFiles, error) {
var pipelineFiles []PipelineFiles
if len(pipelines) != 0 {
for _, goCDPipeline := range pipelines {
conf.logger.Debugf("finding absolute path of the pipeline '%s'", goCDPipeline)
_, err := os.Stat(goCDPipeline)
if err != nil {
return nil, err
}
absFilePath, err := filepath.Abs(goCDPipeline)
if err != nil {
return pipelineFiles, err
}
_, fileName := filepath.Split(absFilePath)
pipelineFiles = append(pipelineFiles, PipelineFiles{
Name: fileName,
Path: absFilePath,
})
}
return pipelineFiles, nil
}
if len(patterns) == 0 {
return nil, &errors.GoCDSDKError{Message: "pipeline files pattern not passed (ex: *.gocd.yaml)"}
}
conf.logger.Debugf("pipeline files path '%s' is a directory, finding all the files matching the pattern '%s'", path, strings.Join(patterns, ","))
if err := filepath.Walk(path, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
for _, pattern := range patterns {
match, err := filepath.Match(pattern, info.Name())
if err != nil {
conf.logger.Errorf("matching GoCD pipeline file errored with '%s'", err)
}
if match {
conf.logger.Debugf("identified pipeline '%s' under path '%s'", info.Name(), filepath.Dir(path))
absPath, err := filepath.Abs(path)
if err != nil {
conf.logger.Errorf("finding absolute path of pipeline '%s' errored with '%s'", info.Name(), err)
} else {
path = absPath
}
pipelineFiles = append(pipelineFiles, PipelineFiles{
Name: info.Name(),
Path: path,
})
}
}
return nil
}); err != nil {
return nil, err
}
return pipelineFiles, nil
}