-
Notifications
You must be signed in to change notification settings - Fork 787
/
upgrade_extensions_repository.go
403 lines (374 loc) · 13 KB
/
upgrade_extensions_repository.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
package cmd
import (
"encoding/base64"
"fmt"
"io/ioutil"
"net/http"
"os"
"sort"
"strings"
"time"
"github.com/jenkins-x/jx/pkg/extensions"
"github.com/blang/semver"
"github.com/jenkins-x/jx/pkg/log"
jenkinsv1 "github.com/jenkins-x/jx/pkg/apis/jenkins.io/v1"
"github.com/jenkins-x/jx/pkg/util"
"github.com/pborman/uuid"
"github.com/pkg/errors"
"github.com/stoewer/go-strcase"
"github.com/ghodss/yaml"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/spf13/cobra"
)
// CreateExtensionsRepositoryOptions the flags for running create cluster
type UpgradeExtensionsRepositoryOptions struct {
UpgradeExtensionsOptions
Flags InitFlags
InputFile string
OutputFile string
}
type UpgradeExtensionsRepositoryFlags struct {
}
type httpError struct {
URL string
StatusCode int
Status string
}
func (e *httpError) Error() string {
return fmt.Sprintf("Error fetching %s. %s", util.ColorError(e.URL), util.ColorError(e.Status))
}
var (
upgradeExtensionsRepositoryLong = templates.LongDesc(`
This command upgrades the jenkins-x-extensions-repository.lock.yaml file from a jenkins-x-extensions-repository.yaml file
`)
upgradeExtensionsRepositoryExample = templates.Examples(`
# Updates a file called jenkins-x-extensions-repository.lock.yaml from a file called jenkins-x-extensions-repository.yaml in the same directory
jx upgrade extensions repository
# Allows the input and output file to specified
jx upgrade extensions repository -i my-repo.yaml -o my-repo.lock.yaml
`)
)
// NewCmdGet creates a command object for the generic "init" action, which
// installs the dependencies required to run the jenkins-x platform on a Kubernetes cluster.
func NewCmdUpgradeExtensionsRepository(commonOpts *CommonOptions) *cobra.Command {
options := &UpgradeExtensionsRepositoryOptions{
UpgradeExtensionsOptions: UpgradeExtensionsOptions{
CreateOptions: CreateOptions{
CommonOptions: commonOpts,
},
},
}
cmd := &cobra.Command{
Use: "repository",
Short: "Updates an extension repository",
Long: fmt.Sprintf(upgradeExtensionsRepositoryLong),
Example: upgradeExtensionsRepositoryExample,
Run: func(cmd2 *cobra.Command, args []string) {
options.Cmd = cmd2
options.Args = args
err := options.Run()
CheckErr(err)
},
}
cmd.Flags().StringVarP(&options.InputFile, "input-file", "i", "jenkins-x-extensions-repository.yaml", "The input file to read to generate the .lock file")
cmd.Flags().StringVarP(&options.OutputFile, "output-file", "o", "jenkins-x-extensions-repository.lock.yaml", "The output .lock file")
return cmd
}
func (o *UpgradeExtensionsRepositoryOptions) Run() error {
defRef := jenkinsv1.ExtensionDefinitionReferenceList{}
err := defRef.LoadFromFile(o.InputFile)
if err != nil {
return err
}
oldLock := jenkinsv1.ExtensionRepositoryLockList{}
err = oldLock.LoadFromFile(o.OutputFile)
if err != nil {
return err
}
oldLockNameMap := make(map[string]jenkinsv1.ExtensionSpec, 0)
oldLookupByUUID := make(map[string]jenkinsv1.ExtensionSpec, 0)
for _, l := range oldLock.Extensions {
oldLockNameMap[l.FullyQualifiedName()] = l
oldLookupByUUID[l.UUID] = l
}
newLock := jenkinsv1.ExtensionRepositoryLockList{
Extensions: make([]jenkinsv1.ExtensionSpec, 0),
}
newLock.Version = os.Getenv("VERSION")
lookupByName := make(map[string]jenkinsv1.ExtensionSpec, 0)
lookupByUUID := make(map[string]jenkinsv1.ExtensionSpec, 0)
for _, c := range defRef.Remotes {
e, err := o.walkRemote(c.Remote, c.Tag, oldLockNameMap, oldLookupByUUID)
if err != nil {
return err
}
newLock.Extensions = append(newLock.Extensions, e...)
for _, r := range e {
lookupByName[r.FullyQualifiedName()] = r
lookupByUUID[r.UUID] = r
}
}
if o.Verbose {
log.Infof("Extension to UUID mapping:\n")
for k, v := range lookupByName {
log.Infof(" %s: %s\n", util.ColorInfo(k), util.ColorInfo(v.UUID))
}
}
uuidResolveErrors := make([]string, 0)
seenExtensions := make(map[string]string, 0)
replacementLocks := newLock.Extensions[:0]
// Second pass over extensions to allow us to do things like resolve fqns into UUIDs, scan for dupes
for _, lock := range newLock.Extensions {
if v, seen := seenExtensions[lock.UUID]; !seen {
lock.Children, err = o.FixChildren(lock, lookupByName, lookupByUUID, &uuidResolveErrors)
if err != nil {
return err
}
seenExtensions[lock.UUID] = lock.Version
replacementLocks = append(replacementLocks, lock)
} else if seen && v != lock.Version {
return errors.New(fmt.Sprintf("Unable to add %s as two versions are available in the extension repository [ %s, %s ]", lock.FullyQualifiedName(), lock.Version, v))
}
// otherwise it's a duplicate and we can just ignore it
}
newLock.Extensions = replacementLocks
if len(uuidResolveErrors) > 0 {
bytes, err := yaml.Marshal(newLock)
if err != nil {
return err
}
errFile, err := ioutil.TempFile("", o.OutputFile)
if err != nil {
return err
}
err = ioutil.WriteFile(errFile.Name(), bytes, 0755)
if err != nil {
return err
}
return errors.New(fmt.Sprintf("Cannot resolve children %s in repository. Partial .lock file written to %s.", uuidResolveErrors, errFile.Name()))
}
// Sort the lock file to give us better changelogs
sort.Slice(newLock.Extensions, func(i, j int) bool {
return newLock.Extensions[i].UUID < newLock.Extensions[j].UUID
})
bytes, err := yaml.Marshal(newLock)
if err != nil {
return err
}
log.Infof("Updating extensions repository from %s to %s. ", util.ColorInfo(oldLock.Version), util.ColorInfo(newLock.Version))
err = ioutil.WriteFile(o.OutputFile, bytes, 0755)
if err != nil {
return err
}
diff, err := o.Git().Diff("")
if err != nil {
log.Warnf("Error finding diff %s", err.Error())
}
if o.Verbose && diff != "" {
log.Infof("Changes are \n\n%s\n\n", diff)
} else {
log.Infof("\n")
}
return nil
}
func (o *UpgradeExtensionsRepositoryOptions) walkRemote(remote string, tag string, oldLockNameMap map[string]jenkinsv1.ExtensionSpec, oldLookupByUUID map[string]jenkinsv1.ExtensionSpec) (result []jenkinsv1.ExtensionSpec, err error) {
result = make([]jenkinsv1.ExtensionSpec, 0)
if strings.HasPrefix(remote, "github.com") {
gitProvider, repoInfo, err := o.createGitProviderForURLWithoutKind(strings.TrimPrefix(remote, "github.com/"))
if err != nil {
return result, err
}
org := repoInfo.Organisation
repo := repoInfo.Name
resolvedTag := tag
if resolvedTag == "" {
resolvedTag = "latest"
}
if resolvedTag == "latest" {
resolvedTag, err = util.GetLatestVersionStringFromGitHub(org, repo)
if err != nil {
return result, err
}
resolvedTag = fmt.Sprintf("v%s", resolvedTag)
}
content, err := gitProvider.GetContent(org, repo, extensions.ExtensionsDefinitionFile, resolvedTag)
if err != nil {
return result, err
}
extensionDefinitions := jenkinsv1.ExtensionDefinitionList{}
if content != nil {
bs, err := base64.StdEncoding.DecodeString(content.Content)
if err != nil {
return result, err
}
err = yaml.Unmarshal(bs, &extensionDefinitions)
if err != nil {
return result, err
}
} else {
return result, fmt.Errorf("No content returned")
}
for _, ed := range extensionDefinitions.Extensions {
// It's best practice to assign a UUID to an extension, but if it doesn't have one we
// try to give it the one it had last
UUID := ed.UUID
if UUID == "" {
UUID = oldLockNameMap[ed.FullyQualifiedName()].UUID
}
// If the UUID is still empty, generate one
if UUID == "" {
UUID = uuid.New()
log.Infof("No UUID found for %s. Generated UUID %s, please update your extension definition "+
"accordingly.\n", ed.FullyQualifiedName(), UUID)
}
newVersion := strings.TrimPrefix(resolvedTag, "v")
oldSemanticVersion, err := semver.Parse(oldLookupByUUID[UUID].Version)
if err != nil {
log.Infof("Cannot determine existing version for %s. Upgrading to %s anyway.\n", ed.FullyQualifiedName(), newVersion)
oldSemanticVersion = semver.Version{}
}
newSemanticVersion, err := semver.Parse(newVersion)
if err != nil {
return result, fmt.Errorf("Unable to determine new version for %s. %v", ed.FullyQualifiedName(), err)
}
if oldSemanticVersion.LT(newSemanticVersion) || tag == "latest" {
var script string
children := make([]string, 0)
// If the children is present, there is no script
if len(ed.Children) == 0 {
scriptFile := ed.ScriptFile
if scriptFile == "" {
scriptFile = fmt.Sprintf("%s.sh", strings.ToLower(strcase.SnakeCase(ed.Name)))
}
content, err = gitProvider.GetContent(org, repo, scriptFile, resolvedTag)
if err != nil {
return result, err
}
if content != nil {
bs, err := base64.StdEncoding.DecodeString(content.Content)
if err != nil {
return result, err
}
script = string(bs)
} else {
return result, fmt.Errorf("No content returned")
}
if err != nil {
return result, err
}
} else {
for _, c := range ed.Children {
if c.UUID != "" {
children = append(children, c.UUID)
} else {
children = append(children, c.FullyQualifiedName())
}
if c.Remote != "" {
r, err := o.walkRemote(c.Remote, c.Tag, oldLockNameMap, oldLookupByUUID)
if err != nil {
return result, err
}
result = append(result, r...)
}
}
}
extension := jenkinsv1.ExtensionSpec{
Name: ed.Name,
Namespace: ed.Namespace,
Version: newVersion,
UUID: UUID,
Description: ed.Description,
Parameters: ed.Parameters,
When: ed.When,
Given: ed.Given,
Script: strings.TrimSuffix(script, "\n"),
Children: children,
}
if o.Verbose {
log.Infof("Found extension %s version %s\n", util.ColorInfo(extension.FullyQualifiedName()), util.ColorInfo(extension.Version))
}
result = append(result, extension)
} else {
children, err := o.walkLock(oldLookupByUUID[UUID], oldLookupByUUID)
if err != nil {
return result, err
}
result = append(result, children...)
}
}
return result, nil
} else {
return result, errors.New(fmt.Sprintf("Only github.com is supported, use a format like %s", util.ColorInfo("github.com/jenkins-x/ext-jacoco")))
}
}
func (o *UpgradeExtensionsRepositoryOptions) walkLock(extension jenkinsv1.ExtensionSpec, lookupByUUID map[string]jenkinsv1.ExtensionSpec) (extensions []jenkinsv1.ExtensionSpec, err error) {
result := make([]jenkinsv1.ExtensionSpec, 0)
for _, childUUID := range extension.Children {
child, ok := lookupByUUID[childUUID]
if !ok {
return result, errors.New(fmt.Sprintf("Unable to find extension for UUID %s", util.ColorError(childUUID)))
}
children, err := o.walkLock(child, lookupByUUID)
if err != nil {
return result, err
}
result = append(result, children...)
}
result = append(result, extension)
return result, nil
}
func (o *UpgradeExtensionsRepositoryOptions) FixChildren(extension jenkinsv1.ExtensionSpec, lookupByName map[string]jenkinsv1.ExtensionSpec, lookupByUUID map[string]jenkinsv1.ExtensionSpec, resolveErrors *[]string) (children []string, err error) {
children = make([]string, 0)
for _, childUUID := range extension.Children {
if uuid.Parse(childUUID) == nil {
if c, ok := lookupByName[childUUID]; ok {
log.Infof("We recommend you explicitly specify the UUID for childUUID %s on extension %s as this will stop the "+
"extension breaking if names are changed.\n"+
"If you are the maintainer of the extension definition add \n"+
"\n"+
" UUID: %s\n"+
"\n"+
"to the childUUID definition. \n"+
"If you aren't the maintainer of the extension definition we recommend you contact them and ask"+
"them to add the UUID.\n"+
"\n"+
"This does not stop you using the extension, as we have been able to discover and attach the "+
"UUID to the childUUID based on the fully qualified name.\n", util.ColorWarning(childUUID), util.ColorWarning(extension.FullyQualifiedName()), util.ColorWarning(c.UUID))
childUUID = c.UUID
} else {
// Record the error in the loop, but don't error until end. This allows us to report all the errors
// up front
*resolveErrors = append(*resolveErrors, childUUID)
}
}
if _, ok := lookupByUUID[childUUID]; ok {
children = append(children, childUUID)
} else {
return children, errors.New(fmt.Sprintf("Unable to find extension for UUID %s", util.ColorError(childUUID)))
}
}
return children, nil
}
func (o *UpgradeExtensionsRepositoryOptions) LoadAsStringFromURL(url string) (result string, err error) {
httpClient := &http.Client{Timeout: 10 * time.Second}
resp, err := httpClient.Get(fmt.Sprintf("%s?version=%d", url, time.Now().UnixNano()/int64(time.Millisecond)))
if err != nil {
return "", err
}
if resp.StatusCode < 200 || resp.StatusCode >= 300 {
return "", &httpError{
URL: url,
Status: resp.Status,
StatusCode: resp.StatusCode,
}
}
defer resp.Body.Close()
if err != nil {
return "", err
}
bytes, err := ioutil.ReadAll(resp.Body)
if err != nil {
return "", err
}
return string(bytes), nil
}