forked from kubernetes/release
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
328 lines (282 loc) · 8.64 KB
/
main.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
/*
Copyright 2019 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"context"
"encoding/json"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strings"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"k8s.io/release/pkg/git"
"k8s.io/release/pkg/log"
"k8s.io/release/pkg/notes"
"k8s.io/release/pkg/notes/options"
"k8s.io/release/pkg/util"
)
var (
opts = options.New()
cmd = &cobra.Command{
Short: "release-notes - The Kubernetes Release Notes Generator",
Use: "release-notes",
SilenceUsage: true,
SilenceErrors: true,
RunE: run,
PreRunE: func(*cobra.Command, []string) error {
return opts.ValidateAndFinish()
},
}
)
func init() {
// githubOrg contains name of github organization that holds the repo to scrape.
cmd.PersistentFlags().StringVar(
&opts.GithubOrg,
"github-org",
util.EnvDefault("GITHUB_ORG", notes.DefaultOrg),
"Name of github organization",
)
// githubRepo contains name of github repository to scrape.
cmd.PersistentFlags().StringVar(
&opts.GithubRepo,
"github-repo",
util.EnvDefault("GITHUB_REPO", notes.DefaultRepo),
"Name of github repository",
)
// output contains the path on the filesystem to where the resultant
// release notes should be printed.
cmd.PersistentFlags().StringVar(
&opts.Output,
"output",
util.EnvDefault("OUTPUT", ""),
"The path to the where the release notes will be printed",
)
// branch is which branch to scrape.
cmd.PersistentFlags().StringVar(
&opts.Branch,
"branch",
util.EnvDefault("BRANCH", git.Master),
"Select which branch to scrape. Defaults to `master`",
)
// startSHA contains the commit SHA where the release note generation
// begins.
cmd.PersistentFlags().StringVar(
&opts.StartSHA,
"start-sha",
util.EnvDefault("START_SHA", ""),
"The commit hash to start at",
)
// endSHA contains the commit SHA where the release note generation ends.
cmd.PersistentFlags().StringVar(
&opts.EndSHA,
"end-sha",
util.EnvDefault("END_SHA", ""),
"The commit hash to end at",
)
// startRev contains any valid git object where the release note generation
// begins. Can be used as alternative to start-sha.
cmd.PersistentFlags().StringVar(
&opts.StartRev,
"start-rev",
util.EnvDefault("START_REV", ""),
"The git revision to start at. Can be used as alternative to start-sha.",
)
// endRev contains any valid git object where the release note generation
// ends. Can be used as alternative to start-sha.
cmd.PersistentFlags().StringVar(
&opts.EndRev,
"end-rev",
util.EnvDefault("END_REV", ""),
"The git revision to end at. Can be used as alternative to end-sha.",
)
// repoPath contains the path to a local Kubernetes repository to avoid the
// delay during git clone
cmd.PersistentFlags().StringVar(
&opts.RepoPath,
"repo-path",
util.EnvDefault("REPO_PATH", filepath.Join(os.TempDir(), "k8s-repo")),
"Path to a local Kubernetes repository, used only for tag discovery.",
)
// releaseVersion is the version number you want to tag the notes with.
cmd.PersistentFlags().StringVar(
&opts.ReleaseVersion,
"release-version",
util.EnvDefault("RELEASE_VERSION", ""),
"Which release version to tag the entries as.",
)
// format is the output format to produce the notes in.
cmd.PersistentFlags().StringVar(
&opts.Format,
"format",
util.EnvDefault("FORMAT", "markdown"),
"The format for notes output (options: markdown, json)",
)
cmd.PersistentFlags().StringVar(
&opts.RequiredAuthor,
"required-author",
util.EnvDefault("REQUIRED_AUTHOR", "k8s-ci-robot"),
"Only commits from this GitHub user are considered. Set to empty string to include all users",
)
cmd.PersistentFlags().BoolVar(
&opts.Debug,
"debug",
util.IsEnvSet("DEBUG"),
"Enable debug logging",
)
cmd.PersistentFlags().StringVar(
&opts.DiscoverMode,
"discover",
util.EnvDefault("DISCOVER", options.RevisionDiscoveryModeNONE),
fmt.Sprintf("The revision discovery mode for automatic revision retrieval (options: %s)",
strings.Join([]string{
options.RevisionDiscoveryModeNONE,
options.RevisionDiscoveryModeMergeBaseToLatest,
options.RevisionDiscoveryModePatchToPatch,
options.RevisionDiscoveryModeMinorToMinor,
}, ", "),
),
)
cmd.PersistentFlags().StringVar(
&opts.ReleaseBucket,
"release-bucket",
util.EnvDefault("RELEASE_BUCKET", "kubernetes-release"),
"Specify gs bucket to point to in generated notes",
)
cmd.PersistentFlags().StringVar(
&opts.ReleaseTars,
"release-tars",
util.EnvDefault("RELEASE_TARS", ""),
"Directory of tars to sha512 sum for display",
)
cmd.PersistentFlags().BoolVar(
&opts.TableOfContents,
"toc",
util.IsEnvSet("TOC"),
"Enable the rendering of the table of contents",
)
cmd.PersistentFlags().StringVar(
&opts.RecordDir,
"record",
util.EnvDefault("RECORD", ""),
"Record the API into a directory",
)
cmd.PersistentFlags().StringVar(
&opts.ReplayDir,
"replay",
util.EnvDefault("REPLAY", ""),
"Replay a previously recorded API from a directory",
)
}
func GetReleaseNotes() (notes.ReleaseNotes, notes.ReleaseNotesHistory, error) {
logrus.Info("fetching all commits. This might take a while...")
gatherer := notes.NewGatherer(context.Background(), opts)
releaseNotes, history, err := gatherer.ListReleaseNotes()
if err != nil {
return nil, nil, errors.Wrapf(err, "listing release notes")
}
return releaseNotes, history, nil
}
func WriteReleaseNotes(releaseNotes notes.ReleaseNotes, history notes.ReleaseNotesHistory) (err error) {
logrus.Info("got the commits, performing rendering")
// Open a handle to the file which will contain the release notes output
var output *os.File
var existingNotes notes.ReleaseNotes
if opts.Output != "" {
output, err = os.OpenFile(opts.Output, os.O_RDWR|os.O_CREATE, os.FileMode(0644))
if err != nil {
return errors.Wrapf(err, "opening the supplied output file")
}
} else {
output, err = ioutil.TempFile("", "release-notes-")
if err != nil {
return errors.Wrapf(err, "creating a temporary file to write the release notes to")
}
}
// Contextualized release notes can be printed in a variety of formats
switch opts.Format {
case "json":
byteValue, err := ioutil.ReadAll(output)
if err != nil {
return err
}
if len(byteValue) > 0 {
if err := json.Unmarshal(byteValue, &existingNotes); err != nil {
return errors.Wrapf(err, "unmarshalling existing notes")
}
}
if len(existingNotes) > 0 {
if err := output.Truncate(0); err != nil {
return err
}
if _, err := output.Seek(0, 0); err != nil {
return err
}
for i := 0; i < len(existingNotes); i++ {
_, ok := releaseNotes[existingNotes[i].PrNumber]
if !ok {
releaseNotes[existingNotes[i].PrNumber] = existingNotes[i]
}
}
}
enc := json.NewEncoder(output)
enc.SetIndent("", " ")
if err := enc.Encode(releaseNotes); err != nil {
return errors.Wrapf(err, "encoding JSON output")
}
case "markdown":
doc, err := notes.CreateDocument(releaseNotes, history)
if err != nil {
return errors.Wrapf(err, "creating release note document")
}
markdown, err := doc.RenderMarkdown(
opts.ReleaseBucket, opts.ReleaseTars, opts.StartRev, opts.EndRev,
)
if err != nil {
return errors.Wrapf(err, "rendering release note document to markdown")
}
if opts.TableOfContents {
toc, err := notes.GenerateTOC(markdown)
if err != nil {
return errors.Wrap(err, "generating table of contents")
}
markdown = toc + "\n" + markdown
}
if _, err := output.WriteString(markdown); err != nil {
return errors.Wrap(err, "writing output file")
}
default:
return errors.Errorf("%q is an unsupported format", opts.Format)
}
logrus.
WithField("path", output.Name()).
WithField("format", opts.Format).
Info("release notes written to file")
return nil
}
func run(*cobra.Command, []string) error {
releaseNotes, history, err := GetReleaseNotes()
if err != nil {
return errors.Wrapf(err, "retrieving release notes")
}
return WriteReleaseNotes(releaseNotes, history)
}
func main() {
logrus.SetFormatter(&logrus.TextFormatter{DisableTimestamp: true})
logrus.AddHook(log.NewFilenameHook())
if err := cmd.Execute(); err != nil {
logrus.Fatal(err)
}
}