-
Notifications
You must be signed in to change notification settings - Fork 787
/
step_changelog.go
720 lines (658 loc) · 22.8 KB
/
step_changelog.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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
package cmd
import (
"bufio"
"bytes"
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
"regexp"
"strings"
"text/template"
"time"
"github.com/pkg/errors"
"github.com/jenkins-x/jx/pkg/users"
"github.com/ghodss/yaml"
"github.com/jenkins-x/jx/pkg/apis/jenkins.io"
"github.com/jenkins-x/jx/pkg/apis/jenkins.io/v1"
"github.com/jenkins-x/jx/pkg/gits"
"github.com/jenkins-x/jx/pkg/issues"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/jenkins-x/jx/pkg/kube"
"github.com/jenkins-x/jx/pkg/log"
"github.com/jenkins-x/jx/pkg/util"
"github.com/spf13/cobra"
"gopkg.in/AlecAivazis/survey.v1/terminal"
"gopkg.in/src-d/go-git.v4/plumbing/object"
chgit "github.com/antham/chyle/chyle/git"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
// StepChangelogOptions contains the command line flags
type StepChangelogOptions struct {
StepOptions
PreviousRevision string
PreviousDate string
CurrentRevision string
TemplatesDir string
ReleaseYamlFile string
CrdYamlFile string
Dir string
Version string
Build string
Header string
HeaderFile string
Footer string
FooterFile string
OutputMarkdownFile string
OverwriteCRD bool
GenerateCRD bool
GenerateReleaseYaml bool
UpdateRelease bool
NoReleaseInDev bool
IncludeMergeCommits bool
State StepChangelogState
}
type StepChangelogState struct {
GitInfo *gits.GitRepository
GitProvider gits.GitProvider
Tracker issues.IssueProvider
FoundIssueNames map[string]bool
LoggedIssueKind bool
Release *v1.Release
}
const (
ReleaseName = `{{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}`
SpecName = `{{ .Chart.Name }}`
SpecVersion = `{{ .Chart.Version }}`
ReleaseCrdYaml = `apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition
metadata:
creationTimestamp: 2018-02-24T14:56:33Z
name: releases.jenkins.io
resourceVersion: "557150"
selfLink: /apis/apiextensions.k8s.io/v1beta1/customresourcedefinitions/releases.jenkins.io
uid: e77f4e08-1972-11e8-988e-42010a8401df
spec:
group: jenkins.io
names:
kind: Release
listKind: ReleaseList
plural: releases
shortNames:
- rel
singular: release
categories:
- all
scope: Namespaced
version: v1`
)
var (
GitAccessDescription = `
By default jx commands look for a file '~/.jx/gitAuth.yaml' to find the API tokens for Git servers. You can use 'jx create git token' to create a Git token.
Alternatively if you are running this command inside a CI server you can use environment variables to specify the username and API token.
e.g. define environment variables GIT_USERNAME and GIT_API_TOKEN
`
StepChangelogLong = templates.LongDesc(`
Generates a Changelog for the latest tag
This command will generate a Changelog as markdown for the git commit range given.
If you are using GitHub it will also update the GitHub Release with the changelog. You can disable that by passing'--update-release=false'
If you have just created a git tag this command will try default to the changes between the last tag and the previous one. You can always specify the exact Git references (tag/sha) directly via '--previous-rev' and '--rev'
The changelog is generated by parsing the git commits. It will also detect any text like 'fixes #123' to link to issue fixes. You can also use Conventional Commits notation: https://conventionalcommits.org/ to get a nicer formatted changelog. e.g. using commits like 'fix:(my feature) this my fix' or 'feat:(cheese) something'
This command also generates a Release Custom Resource Definition you can include in your helm chart to give metadata about the changelog of the application along with metadata about the release (git tag, url, commits, issues fixed etc). Including this metadata in a helm charts means we can do things like automatically comment on issues when they hit Staging or Production; or give detailed descriptions of what things have changed when using GitOps to update versions in an environment by referencing the fixed issues in the Pull Request.
You can opt out of the release YAML generation via the '--generate-yaml=false' option
To update the release notes on GitHub / Gitea this command needs a git API token.
`) + GitAccessDescription
StepChangelogExample = templates.Examples(`
# generate a changelog on the current source
jx step changelog
# specify the version to use
jx step changelog --version 1.2.3
# specify the version and a header template
jx step changelog --header-file docs/dev/changelog-header.md --version 1.2.3
`)
GitHubIssueRegex = regexp.MustCompile(`(\#\d+)`)
JIRAIssueRegex = regexp.MustCompile(`[A-Z][A-Z]+-(\d+)`)
)
func NewCmdStepChangelog(f Factory, in terminal.FileReader, out terminal.FileWriter, errOut io.Writer) *cobra.Command {
options := StepChangelogOptions{
StepOptions: StepOptions{
CommonOptions: CommonOptions{
Factory: f,
In: in,
Out: out,
Err: errOut,
},
},
}
cmd := &cobra.Command{
Use: "changelog",
Short: "Creates a changelog for a git tag",
Aliases: []string{"changes"},
Long: StepChangelogLong,
Example: StepChangelogExample,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
options.addCommonFlags(cmd)
cmd.Flags().StringVarP(&options.PreviousRevision, "previous-rev", "p", "", "the previous tag revision")
cmd.Flags().StringVarP(&options.PreviousDate, "previous-date", "", "", "the previous date to find a revision in format 'MonthName dayNumber year'")
cmd.Flags().StringVarP(&options.CurrentRevision, "rev", "r", "", "the current tag revision")
cmd.Flags().StringVarP(&options.TemplatesDir, "templates-dir", "t", "", "the directory containing the helm chart templates to generate the resources")
cmd.Flags().StringVarP(&options.ReleaseYamlFile, "release-yaml-file", "", "release.yaml", "the name of the file to generate the Release YAML")
cmd.Flags().StringVarP(&options.CrdYamlFile, "crd-yaml-file", "", "release-crd.yaml", "the name of the file to generate the Release CustomResourceDefinition YAML")
cmd.Flags().StringVarP(&options.Version, "version", "v", "", "The version to release")
cmd.Flags().StringVarP(&options.Build, "build", "", "", "The Build number which is used to update the PipelineActivity. If not specified its defaulted from the '$BUILD_NUMBER' environment variable")
cmd.Flags().StringVarP(&options.Dir, "dir", "", "", "The directory of the Git repository. Defaults to the current working directory")
cmd.Flags().StringVarP(&options.OutputMarkdownFile, "output-markdown", "", "", "The file to generate for the changelog output if not updating a Git provider release")
cmd.Flags().BoolVarP(&options.OverwriteCRD, "overwrite", "o", false, "overwrites the Release CRD YAML file if it exists")
cmd.Flags().BoolVarP(&options.GenerateCRD, "crd", "c", false, "Generate the CRD in the chart")
cmd.Flags().BoolVarP(&options.GenerateReleaseYaml, "generate-yaml", "y", true, "Generate the Release YAML in the local helm chart")
cmd.Flags().BoolVarP(&options.UpdateRelease, "update-release", "", true, "Should we update the release on the Git repository with the changelog")
cmd.Flags().BoolVarP(&options.NoReleaseInDev, "no-dev-release", "", false, "Disables the generation of Release CRDs in the development namespace to track releases being performed")
cmd.Flags().BoolVarP(&options.IncludeMergeCommits, "include-merge-commits", "", false,
"Include merge commits when generating the changelog")
cmd.Flags().StringVarP(&options.Header, "header", "", "", "The changelog header in markdown for the changelog. Can use go template expressions on the ReleaseSpec object: https://golang.org/pkg/text/template/")
cmd.Flags().StringVarP(&options.HeaderFile, "header-file", "", "", "The file name of the changelog header in markdown for the changelog. Can use go template expressions on the ReleaseSpec object: https://golang.org/pkg/text/template/")
cmd.Flags().StringVarP(&options.Footer, "footer", "", "", "The changelog footer in markdown for the changelog. Can use go template expressions on the ReleaseSpec object: https://golang.org/pkg/text/template/")
cmd.Flags().StringVarP(&options.FooterFile, "footer-file", "", "", "The file name of the changelog footer in markdown for the changelog. Can use go template expressions on the ReleaseSpec object: https://golang.org/pkg/text/template/")
return cmd
}
func (o *StepChangelogOptions) Run() error {
// lets enable batch mode if we detect we are inside a pipeline
if !o.BatchMode && o.getBuildNumber() != "" {
log.Infoln("Using batch mode as inside a pipeline")
o.BatchMode = true
}
apisClient, err := o.ApiExtensionsClient()
if err != nil {
return err
}
err = kube.RegisterPipelineActivityCRD(apisClient)
if err != nil {
return err
}
err = kube.RegisterGitServiceCRD(apisClient)
if err != nil {
return err
}
err = kube.RegisterReleaseCRD(apisClient)
if err != nil {
return err
}
err = o.registerUserCRD()
if err != nil {
return err
}
dir := o.Dir
if dir == "" {
dir, err = os.Getwd()
if err != nil {
return err
}
}
// Ensure we don't have a shallow checkout in git
err = gits.Unshallow(dir, o.Git())
if err != nil {
return errors.Wrapf(err, "error unshallowing git repo in %s", dir)
}
previousRev := o.PreviousRevision
if previousRev == "" {
previousDate := o.PreviousDate
if previousDate != "" {
previousRev, err = o.Git().GetRevisionBeforeDateText(dir, previousDate)
if err != nil {
return fmt.Errorf("Failed to find commits before date %s: %s", previousDate, err)
}
}
}
if previousRev == "" {
previousRev, err = o.Git().GetPreviousGitTagSHA(dir)
if err != nil {
return err
}
if previousRev == "" {
log.Info("no previous commit version found so change diff unavailable")
return nil
}
}
currentRev := o.CurrentRevision
if currentRev == "" {
currentRev, err = o.Git().GetCurrentGitTagSHA(dir)
if err != nil {
return err
}
}
templatesDir := o.TemplatesDir
if templatesDir == "" {
chartFile, err := o.FindHelmChart()
if err != nil {
return fmt.Errorf("Could not find helm chart %s", err)
}
path, _ := filepath.Split(chartFile)
templatesDir = filepath.Join(path, "templates")
}
err = os.MkdirAll(templatesDir, util.DefaultWritePermissions)
if err != nil {
return fmt.Errorf("Failed to create the templates directory %s due to %s", templatesDir, err)
}
log.Infof("Generating change log from git ref %s => %s\n", util.ColorInfo(previousRev), util.ColorInfo(currentRev))
gitDir, gitConfDir, err := o.Git().FindGitConfigDir(dir)
if err != nil {
return err
}
if gitDir == "" || gitConfDir == "" {
log.Warnf("No git directory could be found from dir %s\n", dir)
return nil
}
gitUrl, err := o.Git().DiscoverUpstreamGitURL(gitConfDir)
if err != nil {
return err
}
gitInfo, err := gits.ParseGitURL(gitUrl)
if err != nil {
return err
}
o.State.GitInfo = gitInfo
tracker, err := o.createIssueProvider(dir)
if err != nil {
return err
}
o.State.Tracker = tracker
authConfigSvc, err := o.CreateGitAuthConfigService()
if err != nil {
return err
}
jxClient, devNs, err := o.JXClientAndDevNamespace()
if err != nil {
return err
}
gitKind, err := o.GitServerKind(gitInfo)
foundGitProvider := true
gitProvider, err := o.State.GitInfo.CreateProvider(o.IsInCluster(), authConfigSvc, gitKind, o.Git(), o.BatchMode, o.In, o.Out, o.Err)
if err != nil {
foundGitProvider = false
log.Warnf("Could not create GitProvide so cannot update the release notes: %s\n", err)
}
o.State.GitProvider = gitProvider
o.State.FoundIssueNames = map[string]bool{}
commits, err := chgit.FetchCommits(gitDir, previousRev, currentRev)
if err != nil {
return err
}
version := o.Version
if version == "" {
version = SpecVersion
}
release := &v1.Release{
TypeMeta: metav1.TypeMeta{
Kind: "Release",
APIVersion: jenkinsio.GroupAndVersion,
},
ObjectMeta: metav1.ObjectMeta{
Name: ReleaseName,
CreationTimestamp: metav1.Time{
Time: time.Now(),
},
//ResourceVersion: "1",
DeletionTimestamp: &metav1.Time{},
},
Spec: v1.ReleaseSpec{
Name: SpecName,
Version: version,
GitOwner: gitInfo.Organisation,
GitRepository: gitInfo.Name,
GitHTTPURL: gitInfo.HttpsURL(),
GitCloneURL: gitInfo.HttpCloneURL(),
Commits: []v1.CommitSummary{},
Issues: []v1.IssueSummary{},
PullRequests: []v1.IssueSummary{},
},
}
resolver := users.GitUserResolver{
GitProvider: gitProvider,
Namespace: devNs,
JXClient: jxClient,
}
if commits != nil {
for _, commit := range *commits {
if o.IncludeMergeCommits || len(commit.ParentHashes) <= 1 {
o.addCommit(&release.Spec, &commit, &resolver)
}
}
}
// lets try to update the release
markdown, err := gits.GenerateMarkdown(&release.Spec, gitInfo)
if err != nil {
return err
}
header, err := o.getTemplateResult(&release.Spec, "header", o.Header, o.HeaderFile)
if err != nil {
return err
}
footer, err := o.getTemplateResult(&release.Spec, "footer", o.Footer, o.FooterFile)
if err != nil {
return err
}
markdown = header + markdown + footer
if version != "" && o.UpdateRelease && foundGitProvider {
releaseInfo := &gits.GitRelease{
Name: version,
TagName: version,
Body: markdown,
}
err = gitProvider.UpdateRelease(gitInfo.Organisation, gitInfo.Name, version, releaseInfo)
url := releaseInfo.HTMLURL
if url == "" {
url = releaseInfo.URL
}
if url == "" {
url = util.UrlJoin(gitInfo.HttpsURL(), "releases/tag", version)
}
release.Spec.ReleaseNotesURL = url
if err != nil {
log.Warnf("Failed to update the release at %s: %s\n", url, err)
return nil
}
log.Infof("Updated the release information at %s\n", util.ColorInfo(url))
} else if o.OutputMarkdownFile != "" {
err := ioutil.WriteFile(o.OutputMarkdownFile, []byte(markdown), util.DefaultWritePermissions)
if err != nil {
return err
}
log.Infof("\nGenerated Changelog: %s\n", util.ColorInfo(o.OutputMarkdownFile))
} else {
log.Infof("\nGenerated Changelog:\n")
log.Infof("%s\n\n", markdown)
}
o.State.Release = release
// now lets marshal the release YAML
data, err := yaml.Marshal(release)
if err != nil {
return err
}
if data == nil {
return fmt.Errorf("Could not marshal release to yaml")
}
releaseFile := filepath.Join(templatesDir, o.ReleaseYamlFile)
crdFile := filepath.Join(templatesDir, o.CrdYamlFile)
if o.GenerateReleaseYaml {
err = ioutil.WriteFile(releaseFile, data, util.DefaultWritePermissions)
if err != nil {
return fmt.Errorf("Failed to save Release YAML file %s: %s", releaseFile, err)
}
log.Infof("generated: %s\n", util.ColorInfo(releaseFile))
}
cleanVersion := strings.TrimPrefix(version, "v")
release.Spec.Version = cleanVersion
if o.GenerateCRD {
exists, err := util.FileExists(crdFile)
if err != nil {
return fmt.Errorf("Failed to check for CRD YAML file %s: %s", crdFile, err)
}
if o.OverwriteCRD || !exists {
err = ioutil.WriteFile(crdFile, []byte(ReleaseCrdYaml), util.DefaultWritePermissions)
if err != nil {
return fmt.Errorf("Failed to save Release CRD YAML file %s: %s", crdFile, err)
}
log.Infof("generated: %s\n", util.ColorInfo(crdFile))
}
}
appName := ""
if gitInfo != nil {
appName = gitInfo.Name
}
if appName == "" {
appName = release.Spec.Name
}
if appName == "" {
appName = release.Spec.GitRepository
}
if !o.NoReleaseInDev {
devRelease := *release
devRelease.ResourceVersion = ""
devRelease.Namespace = devNs
devRelease.Name = kube.ToValidName(appName + "-" + cleanVersion)
devRelease.Spec.Name = appName
_, err := kube.GetOrCreateRelease(jxClient, devNs, &devRelease)
if err != nil {
log.Warnf("%s", err)
} else {
log.Infof("Created Release %s resource in namespace %s\n", devRelease.Name, devNs)
}
}
releaseNotesURL := release.Spec.ReleaseNotesURL
pipeline := ""
build := o.Build
pipeline, build = o.GetPipelineName(gitInfo, pipeline, build, appName)
if pipeline != "" && build != "" {
name := kube.ToValidName(pipeline + "-" + build)
// lets see if we can update the pipeline
activities := jxClient.JenkinsV1().PipelineActivities(devNs)
lastCommitSha := ""
lastCommitMessage := ""
lastCommitURL := ""
commits := release.Spec.Commits
if len(commits) > 0 {
lastCommit := commits[len(commits)-1]
lastCommitSha = lastCommit.SHA
lastCommitMessage = lastCommit.Message
lastCommitURL = lastCommit.URL
}
log.Infof("Updating PipelineActivity %s with version %s\n", name, cleanVersion)
key := &kube.PromoteStepActivityKey{
PipelineActivityKey: kube.PipelineActivityKey{
Name: name,
Pipeline: pipeline,
Build: build,
ReleaseNotesURL: releaseNotesURL,
LastCommitSHA: lastCommitSha,
LastCommitMessage: lastCommitMessage,
LastCommitURL: lastCommitURL,
Version: cleanVersion,
GitInfo: gitInfo,
},
}
a, created, err := key.GetOrCreate(jxClient, o.currentNamespace)
if err == nil && a != nil && !created {
_, err = activities.Update(a)
if err != nil {
log.Warnf("Failed to update PipelineActivities %s: %s\n", name, err)
} else {
log.Infof("Updated PipelineActivities %s with release notes URL: %s\n", util.ColorInfo(name), util.ColorInfo(releaseNotesURL))
}
}
} else {
log.Infof("No pipeline and build number available on $JOB_NAME and $BUILD_NUMBER so cannot update PipelineActivities with the ReleaseNotesURL\n")
}
return nil
}
func (o *StepChangelogOptions) addCommit(spec *v1.ReleaseSpec, commit *object.Commit, resolver *users.GitUserResolver) {
// TODO
url := ""
branch := "master"
sha := commit.Hash.String()
author, err := resolver.GitSignatureAsUser(&commit.Author)
if err != nil {
log.Warnf("Failed to enrich commits with issues: %v\n", err)
}
committer, err := resolver.GitSignatureAsUser(&commit.Committer)
if err != nil {
log.Warnf("Failed to enrich commits with issues: %v\n", err)
}
var authorDetails, committerDetails v1.UserDetails
if author != nil {
authorDetails = author.Spec
}
if committer != nil {
committerDetails = committer.Spec
}
commitSummary := v1.CommitSummary{
Message: commit.Message,
URL: url,
SHA: sha,
Author: &authorDetails,
Branch: branch,
Committer: &committerDetails,
}
err = o.addIssuesAndPullRequests(spec, &commitSummary, commit)
spec.Commits = append(spec.Commits, commitSummary)
if err != nil {
log.Warnf("Failed to enrich commits with issues: %s\n", err)
}
}
func (o *StepChangelogOptions) addIssuesAndPullRequests(spec *v1.ReleaseSpec, commit *v1.CommitSummary, rawCommit *object.Commit) error {
tracker := o.State.Tracker
gitProvider := o.State.GitProvider
if gitProvider == nil || !gitProvider.HasIssues() {
return nil
}
regex := GitHubIssueRegex
issueKind := issues.GetIssueProvider(tracker)
if !o.State.LoggedIssueKind {
o.State.LoggedIssueKind = true
log.Infof("Finding issues in commit messages using %s format\n", issueKind)
}
if issueKind == issues.Jira {
regex = JIRAIssueRegex
}
message := fullCommitMessageText(rawCommit)
matches := regex.FindAllStringSubmatch(message, -1)
jxClient, ns, err := o.JXClientAndDevNamespace()
if err != nil {
return err
}
resolver := users.GitUserResolver{
JXClient: jxClient,
Namespace: ns,
GitProvider: gitProvider,
}
for _, match := range matches {
for _, result := range match {
result = strings.TrimPrefix(result, "#")
if _, ok := o.State.FoundIssueNames[result]; !ok {
o.State.FoundIssueNames[result] = true
issue, err := tracker.GetIssue(result)
if err != nil {
log.Warnf("Failed to lookup issue %s in issue tracker %s due to %s\n", result, tracker.HomeURL(), err)
continue
}
if issue == nil {
log.Warnf("Failed to find issue %s for repository %s\n", result, tracker.HomeURL())
continue
}
var user v1.UserDetails
if issue.User == nil {
log.Warnf("Failed to find user for issue %s repository %s\n", result, tracker.HomeURL())
} else {
u, err := resolver.Resolve(issue.User)
if err != nil {
return err
}
user = u.Spec
}
var closedBy v1.UserDetails
if issue.ClosedBy == nil {
log.Warnf("Failed to find closedBy user for issue %s repository %s\n", result, tracker.HomeURL())
} else {
u, err := resolver.Resolve(issue.User)
if err != nil {
return err
}
closedBy = u.Spec
}
var assignees []v1.UserDetails
if issue.Assignees == nil {
log.Warnf("Failed to find assignees for issue %s repository %s\n", result, tracker.HomeURL())
} else {
u, err := resolver.GitUserSliceAsUserDetailsSlice(issue.Assignees)
if err != nil {
return err
}
assignees = u
}
labels := toV1Labels(issue.Labels)
commit.IssueIDs = append(commit.IssueIDs, result)
issueSummary := v1.IssueSummary{
ID: result,
URL: issue.URL,
Title: issue.Title,
Body: issue.Body,
User: &user,
CreationTimestamp: kube.ToMetaTime(issue.CreatedAt),
ClosedBy: &closedBy,
Assignees: assignees,
Labels: labels,
}
state := issue.State
if state != nil {
issueSummary.State = *state
}
if issue.IsPullRequest {
spec.PullRequests = append(spec.PullRequests, issueSummary)
} else {
spec.Issues = append(spec.Issues, issueSummary)
}
}
}
}
return nil
}
// toV1Labels converts git labels to IssueLabel
func toV1Labels(labels []gits.GitLabel) []v1.IssueLabel {
answer := []v1.IssueLabel{}
for _, label := range labels {
answer = append(answer, v1.IssueLabel{
URL: label.URL,
Name: label.Name,
Color: label.Color,
})
}
return answer
}
// fullCommitMessageText returns the commit message plus any extra omitted commit message
// lines from parent commits as a result of a PR
func fullCommitMessageText(commit *object.Commit) string {
answer := commit.Message
fn := func(parent *object.Commit) error {
text := parent.Message
if text != "" {
sep := "\n"
if strings.HasSuffix(answer, "\n") {
sep = ""
}
answer += sep + text
}
return nil
}
commit.Parents().ForEach(fn)
return answer
}
func (o *StepChangelogOptions) getTemplateResult(releaseSpec *v1.ReleaseSpec, templateName string, templateText string, templateFile string) (string, error) {
if templateText == "" {
if templateFile == "" {
return "", nil
}
data, err := ioutil.ReadFile(templateFile)
if err != nil {
return "", err
}
templateText = string(data)
}
if templateText == "" {
return "", nil
}
tmpl, err := template.New(templateName).Parse(templateText)
if err != nil {
return "", err
}
var buffer bytes.Buffer
writer := bufio.NewWriter(&buffer)
err = tmpl.Execute(writer, releaseSpec)
writer.Flush()
return buffer.String(), err
}