-
Notifications
You must be signed in to change notification settings - Fork 5.2k
/
app.go
1152 lines (999 loc) · 32.5 KB
/
app.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
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Copyright 2017 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"
"io/ioutil"
"log"
"net/http"
"net/url"
"os"
"path/filepath"
"regexp"
"sort"
"strconv"
"strings"
"text/template"
"time"
"k8s.io/enhancements/api"
"github.com/google/go-github/v32/github"
"github.com/go-git/go-git/v5"
"github.com/go-git/go-git/v5/plumbing"
"github.com/go-git/go-git/v5/storage/memory"
yaml "gopkg.in/yaml.v3"
"golang.org/x/mod/semver"
)
const (
readmeTemplate = "readme.tmpl"
listTemplate = "list.tmpl"
aliasesTemplate = "aliases.tmpl"
liaisonsTemplate = "liaisons.tmpl"
headerTemplate = "header.tmpl"
annualReportIssueTemplate = "annual-report/github_issue.tmpl"
annualReportSIGTemplate = "annual-report/sig_report.tmpl"
annualReportWGTemplate = "annual-report/wg_report.tmpl"
sigsYamlFile = "sigs.yaml"
sigListOutput = "sig-list.md"
aliasesOutput = "OWNERS_ALIASES"
indexFilename = "README.md"
liaisonsFilename = "liaisons.md"
beginCustomMarkdown = "<!-- BEGIN CUSTOM CONTENT -->"
endCustomMarkdown = "<!-- END CUSTOM CONTENT -->"
beginCustomYaml = "## BEGIN CUSTOM CONTENT"
endCustomYaml = "## END CUSTOM CONTENT"
regexRawGitHubURL = "https://raw.githubusercontent.com/(?P<org>[^/]+)/(?P<repo>[^/]+)/(?P<branch>[^/]+)/(?P<path>.*)"
regexGitHubURL = "https://github.com/(?P<org>[^/]+)/(?P<repo>[^/]+)/(blob|tree)/(?P<branch>[^/]+)/(?P<path>.*)"
// For KEPs automation
kepURL = "https://storage.googleapis.com/k8s-keps/keps.json"
// For Subprojects automation
communityRepoURL = "https://github.com/kubernetes/community.git"
localRepoPath = "."
)
var (
baseGeneratorDir = ""
templateDir = "generator"
releases = Releases{}
cachedKEPs = []api.Proposal{}
repo = &git.Repository{}
annualReportYear = time.Time{}
currentYear = time.Time{}
commitFromAnnualReportYear = &plumbing.Hash{}
commitFromCurrentYear = &plumbing.Hash{}
)
type Releases struct {
Latest string
LatestMinusOne string
LatestMinusTwo string
}
// TODO: improve as suggested in https://github.com/kubernetes/community/pull/7038#discussion_r1069456087
func getLastThreeK8sReleases() (Releases, error) {
ctx := context.Background()
client := github.NewClient(nil)
releases, _, err := client.Repositories.ListReleases(ctx, "kubernetes", "kubernetes", nil)
if err != nil {
return Releases{}, err
}
var result Releases
for _, release := range releases {
if release.GetPrerelease() || release.GetDraft() {
continue
}
if result.Latest == "" {
result.Latest = semver.MajorMinor(release.GetTagName())
continue
}
if result.LatestMinusOne == "" {
result.LatestMinusOne = semver.MajorMinor(release.GetTagName())
continue
}
if result.LatestMinusTwo == "" {
result.LatestMinusTwo = semver.MajorMinor(release.GetTagName())
break
}
}
return result, nil
}
func getReleases() Releases {
return releases
}
func fetchKEPs() error {
url, err := url.Parse(kepURL)
if err != nil {
return fmt.Errorf("Error parsing url: %v", err)
}
req, err := http.NewRequest("GET", url.String(), nil)
if err != nil {
return fmt.Errorf("Error creating request: %v", err)
}
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return fmt.Errorf("Error fetching KEPs: %v", err)
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return fmt.Errorf("Error reading KEPs body: %v", err)
}
err = json.Unmarshal(body, &cachedKEPs)
if err != nil {
return fmt.Errorf("Error unmarshalling KEPs: %v", err)
}
return nil
}
func stageIfKEPsIsWorkedInReleases(kepMilestone api.Milestone, releases Releases) (api.Stage, bool) {
if strings.HasSuffix(kepMilestone.Stable, releases.Latest) || strings.HasSuffix(kepMilestone.Stable, releases.LatestMinusOne) || strings.HasSuffix(kepMilestone.Stable, releases.LatestMinusTwo) {
return api.StableStage, true
}
if strings.HasSuffix(kepMilestone.Beta, releases.Latest) || strings.HasSuffix(kepMilestone.Beta, releases.LatestMinusOne) || strings.HasSuffix(kepMilestone.Beta, releases.LatestMinusTwo) {
return api.BetaStage, true
}
if strings.HasSuffix(kepMilestone.Alpha, releases.Latest) || strings.HasSuffix(kepMilestone.Alpha, releases.LatestMinusOne) || strings.HasSuffix(kepMilestone.Alpha, releases.LatestMinusTwo) {
return api.AlphaStage, true
}
return "", false
}
func filterKEPs(owningSig string, releases Releases) (map[string][]api.Proposal, error) {
// TODO(palnabarun): Hack to allow unprefixed version strings in KEPs.
// Once all KEPs are updated to use the prefixed version strings, this can be removed.
// See: https://github.com/kubernetes/community/issues/7213#issuecomment-1484964640
unPrefixedReleases := Releases{
Latest: strings.TrimPrefix(releases.Latest, "v"),
LatestMinusOne: strings.TrimPrefix(releases.LatestMinusOne, "v"),
LatestMinusTwo: strings.TrimPrefix(releases.LatestMinusTwo, "v"),
}
kepsByStage := make(map[string][]api.Proposal)
for _, kep := range cachedKEPs {
if kep.OwningSIG == owningSig {
stage, ok := stageIfKEPsIsWorkedInReleases(kep.Milestone, unPrefixedReleases)
if !ok {
continue
}
kepsByStage[string(stage)] = append(kepsByStage[string(stage)], kep)
}
}
return kepsByStage, nil
}
// FoldedString is a string that will be serialized in FoldedStyle by go-yaml
type FoldedString string
// MarshalYAML customizes how FoldedStrings will be serialized by go-yaml
func (x FoldedString) MarshalYAML() (interface{}, error) {
return &yaml.Node{
Kind: yaml.ScalarNode,
Style: yaml.FoldedStyle,
Value: string(x),
}, nil
}
// Person represents an individual person holding a role in a group.
type Person struct {
GitHub string
Name string
Company string `yaml:"company,omitempty"`
// NOTE: this isn't displayed in the markdown files by design
// We collect this info for purposes like the [email protected] list
// You should reach out to SIGs via the group mailinglists, slack, and github
Email string `yaml:"email,omitempty"`
}
// Meeting represents a regular meeting for a group.
type Meeting struct {
Description string
Day string
Time string
TZ string
Frequency string
URL string `yaml:",omitempty"`
ArchiveURL string `yaml:"archive_url,omitempty"`
RecordingsURL string `yaml:"recordings_url,omitempty"`
CalendarURL string `yaml:"calendar_url,omitempty"`
}
// Contact represents the various contact points for a group.
type Contact struct {
Slack string `yaml:",omitempty"`
MailingList string `yaml:"mailing_list,omitempty"`
PrivateMailingList string `yaml:"private_mailing_list,omitempty"`
GithubTeams []GithubTeam `yaml:"teams,omitempty"`
Liaison Person `yaml:"liaison,omitempty"`
}
// GithubTeam represents a specific Github Team.
type GithubTeam struct {
Name string
Description string `yaml:",omitempty"`
}
// Subproject represents a specific subproject owned by the group
type Subproject struct {
Name string
Description string `yaml:",omitempty"`
Contact *Contact `yaml:",omitempty"`
Owners []string
Leads []Person `yaml:",omitempty"`
Meetings []Meeting `yaml:",omitempty"`
}
// LeadershipGroup represents the different groups of leaders within a group
type LeadershipGroup struct {
Chairs []Person
TechnicalLeads []Person `yaml:"tech_leads,omitempty"`
EmeritusLeads []Person `yaml:"emeritus_leads,omitempty"`
}
// PrefixToPersonMap returns a map of prefix to persons, useful for iteration over all persons
func (g *LeadershipGroup) PrefixToPersonMap() map[string][]Person {
return map[string][]Person{
"chair": g.Chairs,
"tech_lead": g.TechnicalLeads,
"emeritus_lead": g.EmeritusLeads,
}
}
// Owners returns a sorted and de-duped list of owners for a LeadershipGroup
func (g *LeadershipGroup) Owners() []Person {
o := append(g.Chairs, g.TechnicalLeads...)
// Sort
sort.Slice(o, func(i, j int) bool {
return o[i].GitHub < o[j].GitHub
})
// De-dupe
seen := make(map[string]struct{}, len(o))
i := 0
for _, p := range o {
if _, ok := seen[p.GitHub]; ok {
continue
}
seen[p.GitHub] = struct{}{}
o[i] = p
i++
}
return o[:i]
}
// Group represents either a Special Interest Group (SIG) or a Working Group (WG)
type Group struct {
Dir string
Prefix string `yaml:",omitempty"`
Name string
MissionStatement FoldedString `yaml:"mission_statement,omitempty"`
CharterLink string `yaml:"charter_link,omitempty"`
ReportingWGs []WGName `yaml:"-"` // populated by Context#Complete()
StakeholderSIGs []SIGName `yaml:"stakeholder_sigs,omitempty"`
Label string
Leadership LeadershipGroup `yaml:"leadership"`
Meetings []Meeting
Contact Contact
Subprojects []Subproject `yaml:",omitempty"`
KEPs map[string][]api.Proposal `yaml:",omitempty"`
}
type WGName string
func (n WGName) DirName() string {
return DirName("wg", string(n))
}
type SIGName string
func (n SIGName) DirName() string {
return DirName("sig", string(n))
}
// DirName returns the directory that a group's documentation will be
// generated into. It is composed of a prefix (sig for SIGs and wg for WGs),
// and a formatted version of the group's name (in kebab case).
func (g *Group) DirName(prefix string) string {
return DirName(prefix, g.Name)
}
func DirName(prefix, name string) string {
return fmt.Sprintf("%s-%s", prefix, strings.ToLower(strings.Replace(name, " ", "-", -1)))
}
// LabelName returns the expected label for a given group
func (g *Group) LabelName(prefix string) string {
return strings.Replace(g.DirName(prefix), fmt.Sprintf("%s-", prefix), "", 1)
}
// Context is the context for the sigs.yaml file.
type Context struct {
Sigs []Group
WorkingGroups []Group
UserGroups []Group
Committees []Group
}
func index(groups []Group, predicate func(Group) bool) int {
for i, group := range groups {
if predicate(group) {
return i
}
}
return -1
}
// PrefixToGroupMap returns a map of prefix to groups, useful for iteration over all groups
func (c *Context) PrefixToGroupMap() map[string][]Group {
return map[string][]Group{
"sig": c.Sigs,
"wg": c.WorkingGroups,
"ug": c.UserGroups,
"committee": c.Committees,
}
}
// Complete populates derived portions of the Context struct
func (c *Context) Complete() {
// Copy working group names into ReportingWGs list of their stakeholder sigs
for _, wg := range c.WorkingGroups {
for _, stakeholderSIG := range wg.StakeholderSIGs {
for i, sig := range c.Sigs {
if sig.Name == string(stakeholderSIG) {
c.Sigs[i].ReportingWGs = append(c.Sigs[i].ReportingWGs, WGName(wg.Name))
}
}
}
}
}
// Sort sorts all lists within the Context struct
func (c *Context) Sort() {
for _, groups := range c.PrefixToGroupMap() {
sort.Slice(groups, func(i, j int) bool {
return groups[i].Dir < groups[j].Dir
})
for _, group := range groups {
sort.Slice(group.ReportingWGs, func(i, j int) bool {
return group.ReportingWGs[i] < group.ReportingWGs[j]
})
sort.Slice(group.StakeholderSIGs, func(i, j int) bool {
return group.StakeholderSIGs[i] < group.StakeholderSIGs[j]
})
for _, people := range [][]Person{
group.Leadership.Chairs,
group.Leadership.TechnicalLeads,
group.Leadership.EmeritusLeads} {
sort.Slice(people, func(i, j int) bool {
// This ensure OWNERS / OWNERS_ALIASES files are ordered by github
return people[i].GitHub < people[j].GitHub
})
}
sort.Slice(group.Meetings, func(i, j int) bool {
return group.Meetings[i].Description < group.Meetings[j].Description
})
sort.Slice(group.Contact.GithubTeams, func(i, j int) bool {
return group.Contact.GithubTeams[i].Name < group.Contact.GithubTeams[j].Name
})
sort.Slice(group.Subprojects, func(i, j int) bool {
return group.Subprojects[i].Name < group.Subprojects[j].Name
})
for _, subproject := range group.Subprojects {
if subproject.Contact != nil {
sort.Slice(subproject.Contact.GithubTeams, func(i, j int) bool {
return subproject.Contact.GithubTeams[i].Name < subproject.Contact.GithubTeams[j].Name
})
}
sort.Slice(subproject.Leads, func(i, j int) bool {
return subproject.Leads[i].GitHub < subproject.Leads[j].GitHub
})
sort.Strings(subproject.Owners)
sort.Slice(subproject.Meetings, func(i, j int) bool {
return subproject.Meetings[i].Description < subproject.Meetings[j].Description
})
}
}
}
}
// Validate returns a list of errors encountered while validating a Context
func (c *Context) Validate() []error {
errors := []error{}
people := make(map[string]Person)
reRawGitHubURL := regexp.MustCompile(regexRawGitHubURL)
reGitHubURL := regexp.MustCompile(regexGitHubURL)
for prefix, groups := range c.PrefixToGroupMap() {
for _, group := range groups {
expectedDir := group.DirName(prefix)
if expectedDir != group.Dir {
errors = append(errors, fmt.Errorf("expected dir: %s, got: %s", expectedDir, group.Dir))
}
expectedLabel := group.LabelName(prefix)
if expectedLabel != group.Label {
errors = append(errors, fmt.Errorf("%s: expected label: %s, got: %s", group.Dir, expectedLabel, group.Label))
}
for prefix, persons := range group.Leadership.PrefixToPersonMap() {
for _, person := range persons {
if val, ok := people[person.GitHub]; ok {
if val.Name != person.Name || (prefix != "emeritus_lead" && val.Company != person.Company) {
errors = append(errors, fmt.Errorf("%s: %ss: expected person: %v, got: %v", group.Dir, prefix, val, person))
}
} else if prefix != "emeritus_lead" {
people[person.GitHub] = person
}
if prefix == "emeritus_lead" && person.Company != "" {
errors = append(errors, fmt.Errorf("%s: emeritus leads should not have company specified; company specified for: %s", group.Dir, person.Name))
}
}
}
if len(group.ReportingWGs) != 0 {
if prefix == "sig" {
for _, name := range group.ReportingWGs {
if index(c.WorkingGroups, func(g Group) bool { return g.Name == string(name) }) == -1 {
errors = append(errors, fmt.Errorf("%s: invalid reporting working group name %s", group.Dir, name))
}
}
} else {
errors = append(errors, fmt.Errorf("%s: only SIGs may have reporting WGs", group.Dir))
}
}
if len(group.StakeholderSIGs) != 0 {
if prefix == "wg" {
for _, name := range group.StakeholderSIGs {
if index(c.Sigs, func(g Group) bool { return g.Name == string(name) }) == -1 {
errors = append(errors, fmt.Errorf("%s: invalid stakeholder sig name %s", group.Dir, name))
}
}
} else {
errors = append(errors, fmt.Errorf("%s: only WGs may have stakeholder_sigs", group.Dir))
}
} else {
if prefix == "wg" {
errors = append(errors, fmt.Errorf("%s: WGs must have stakeholder_sigs", group.Dir))
}
}
if prefix == "sig" {
if group.CharterLink == "" {
errors = append(errors, fmt.Errorf("%s: has no charter", group.Dir))
}
// TODO(spiffxp): is this required though?
if group.MissionStatement == "" {
errors = append(errors, fmt.Errorf("%s: has no mission statement", group.Dir))
}
if len(group.Subprojects) == 0 {
errors = append(errors, fmt.Errorf("%s: has no subprojects", group.Dir))
}
}
if prefix != "committee" && prefix != "sig" {
if len(group.Subprojects) > 0 {
errors = append(errors, fmt.Errorf("%s: only sigs and committees can own code / have subprojects, found: %v", group.Dir, group.Subprojects))
}
}
for _, subproject := range group.Subprojects {
if len(subproject.Owners) == 0 {
errors = append(errors, fmt.Errorf("%s/%s: subproject has no owners", group.Dir, subproject.Name))
}
for _, ownerURL := range subproject.Owners {
if !reRawGitHubURL.MatchString(ownerURL) && !reGitHubURL.MatchString(ownerURL) {
errors = append(errors, fmt.Errorf("%s/%s: subproject owners should match regexp %s, found: %s", group.Dir, subproject.Name, regexRawGitHubURL, ownerURL))
}
}
}
}
}
return errors
}
func pathExists(path string) bool {
_, err := os.Stat(path)
return err == nil
}
func createDirIfNotExists(path string) error {
if !pathExists(path) {
return os.MkdirAll(path, 0755)
}
return nil
}
func getExistingContent(path string, fileFormat string) (string, error) {
capture := false
var captured []string
beginMarker := ""
endMarker := ""
switch fileFormat {
case "markdown":
beginMarker = beginCustomMarkdown
endMarker = endCustomMarkdown
case "yaml":
beginMarker = beginCustomYaml
endMarker = endCustomYaml
case "":
return "", nil
}
// NOTE: For some reason using bufio.Scanner with existing file pointer prepends
// a bunch of null ^@ characters, so using to ioutil.ReadFile instead.
content, err := ioutil.ReadFile(path)
if err != nil {
return "", err
}
for _, line := range strings.Split(string(content), "\n") {
if strings.Contains(line, endMarker) {
capture = false
}
if capture {
captured = append(captured, line)
}
if strings.Contains(line, beginMarker) {
capture = true
}
}
return strings.Join(captured, "\n"), nil
}
var funcMap = template.FuncMap{
"tzUrlEncode": tzURLEncode,
"trimSpace": strings.TrimSpace,
"trimSuffix": strings.TrimSuffix,
"githubURL": githubURL,
"orgRepoPath": orgRepoPath,
"now": time.Now,
"lastYear": lastYear,
"toUpper": strings.ToUpper,
"filterKEPs": filterKEPs,
"getReleases": getReleases,
"getCategorizedSubprojects": getCategorizedSubprojects,
"getCategorizedWorkingGroups": getCategorizedWorkingGroups,
}
// lastYear returns the last year as a string
func lastYear() string {
return time.Now().AddDate(-1, 0, 0).Format("2006")
}
// githubURL converts a raw GitHub url (links directly to file contents) into a
// regular GitHub url (links to Code view for file), otherwise returns url untouched
func githubURL(url string) string {
re := regexp.MustCompile(regexRawGitHubURL)
mat := re.FindStringSubmatchIndex(url)
if mat == nil {
return url
}
result := re.ExpandString([]byte{}, "https://github.com/${org}/${repo}/blob/${branch}/${path}", url, mat)
return string(result)
}
// orgRepoPath converts either
// - a regular GitHub url of form https://github.com/org/repo/blob/branch/path/to/file
// - a raw GitHub url of form https://raw.githubusercontent.com/org/repo/branch/path/to/file
//
// to a string of form 'org/repo/path/to/file'
func orgRepoPath(url string) string {
for _, regex := range []string{regexRawGitHubURL, regexGitHubURL} {
re := regexp.MustCompile(regex)
mat := re.FindStringSubmatchIndex(url)
if mat == nil {
continue
}
result := re.ExpandString([]byte{}, "${org}/${repo}/${path}", url, mat)
return string(result)
}
return url
}
// tzUrlEncode returns a url encoded string without the + shortcut. This is
// required as the timezone conversion site we are using doesn't recognize + as
// a valid url escape character.
func tzURLEncode(tz string) string {
return strings.Replace(url.QueryEscape(tz), "+", "%20", -1)
}
func writeTemplate(templatePath, outputPath string, fileFormat string, data interface{}) error {
// set up template
t, err := template.New(filepath.Base(templatePath)).
Funcs(funcMap).
ParseFiles(templatePath, filepath.Join(baseGeneratorDir, templateDir, headerTemplate))
if err != nil {
return err
}
// create if not exists
if !pathExists(outputPath) {
_, err = os.Create(outputPath)
if err != nil {
return err
}
}
// open file and truncate
f, err := os.OpenFile(outputPath, os.O_RDWR, 0644)
if err != nil {
return err
}
defer f.Close()
// get any existing content
content, err := getExistingContent(outputPath, fileFormat)
if err != nil {
return err
}
// ensure file is empty
f.Truncate(0)
// generated content
err = t.Execute(f, data)
if err != nil {
return err
}
writeCustomContentBlock(f, content, fileFormat)
return nil
}
func writeCustomContentBlock(f *os.File, content string, fileFormat string) {
beginMarker := ""
endMarker := ""
switch fileFormat {
case "markdown":
beginMarker = beginCustomMarkdown
endMarker = endCustomMarkdown
case "yaml":
beginMarker = beginCustomYaml
endMarker = endCustomYaml
case "":
return
}
lines := []string{beginMarker, "\n", content, "\n", endMarker, "\n"}
for _, line := range lines {
f.Write([]byte(line))
}
}
func createGroupReadme(groups []Group, prefix string) error {
// figure out if the user wants to generate one group
var selectedGroupName *string
if envVal, ok := os.LookupEnv("WHAT"); ok {
selectedGroupName = &envVal
}
for _, group := range groups {
// skip generation if the user specified only one group
if selectedGroupName != nil && strings.HasSuffix(group.Dir, *selectedGroupName) == false {
fmt.Printf("Skipping %s/README.md\n", group.Dir)
continue
}
fmt.Printf("Generating %s/README.md\n", group.Dir)
outputDir := filepath.Join(baseGeneratorDir, group.Dir)
if err := createDirIfNotExists(outputDir); err != nil {
return err
}
outputPath := filepath.Join(outputDir, indexFilename)
readmePath := filepath.Join(baseGeneratorDir, templateDir, fmt.Sprintf("%s_%s", prefix, readmeTemplate))
if err := writeTemplate(readmePath, outputPath, "markdown", group); err != nil {
return err
}
}
return nil
}
func createAnnualReportIssue(groups []Group, prefix string) error {
// figure out if the user wants to generate one group
var selectedGroupName *string
if envVal, ok := os.LookupEnv("WHAT"); ok {
selectedGroupName = &envVal
}
for _, group := range groups {
switch prefix {
case "sig":
group.Prefix = "sig"
case "wg":
group.Prefix = "wg"
default:
continue
}
outputDir := filepath.Join(baseGeneratorDir, "generator/generated")
// skip generation if the user specified only one group
if selectedGroupName != nil && !strings.HasSuffix(group.Dir, *selectedGroupName) {
fmt.Printf("Skipping %s/%s_%s.md\n", outputDir, lastYear(), group.Dir)
continue
}
fmt.Printf("Generating %s/%s_%s.md\n", outputDir, lastYear(), group.Dir)
if err := createDirIfNotExists(outputDir); err != nil {
return err
}
outputPath := filepath.Join(outputDir, fmt.Sprintf("%s_%s.md", lastYear(), group.Dir))
templatePath := filepath.Join(baseGeneratorDir, templateDir, annualReportIssueTemplate)
if err := writeTemplate(templatePath, outputPath, "", group); err != nil {
return err
}
}
return nil
}
func createAnnualReport(groups []Group, prefix string) error {
// figure out if the user wants to generate one group
var selectedGroupName *string
var templateFile string
if envVal, ok := os.LookupEnv("WHAT"); ok {
selectedGroupName = &envVal
}
for _, group := range groups {
switch prefix {
case "sig":
group.Prefix = "sig"
templateFile = annualReportSIGTemplate
case "wg":
group.Prefix = "wg"
templateFile = annualReportWGTemplate
default:
continue
}
outputDir := filepath.Join(baseGeneratorDir, group.Dir)
// skip generation if the user specified only one group
if selectedGroupName != nil && !strings.HasSuffix(group.Dir, *selectedGroupName) {
fmt.Printf("Skipping %s/annual-report-%s.md\n", outputDir, lastYear())
continue
}
fmt.Printf("Generating %s/annual-report-%s.md\n", outputDir, lastYear())
if err := createDirIfNotExists(outputDir); err != nil {
return err
}
outputPath := filepath.Join(outputDir, fmt.Sprintf("annual-report-%s.md", lastYear()))
templatePath := filepath.Join(baseGeneratorDir, templateDir, templateFile)
if err := writeTemplate(templatePath, outputPath, "", group); err != nil {
return err
}
}
return nil
}
// readSigsYaml decodes yaml stored in a file at path into the
// specified yaml.Node
func readYaml(path string, data interface{}) error {
file, err := os.Open(path)
if err != nil {
return err
}
defer file.Close()
decoder := yaml.NewDecoder(file)
decoder.KnownFields(true)
return decoder.Decode(data)
}
// writeSigsYaml writes the specified data to a file at path
// indent is set to 2 spaces
func writeYaml(data interface{}, path string) error {
file, err := os.Create(path)
if err != nil {
return err
}
defer file.Close()
enc := yaml.NewEncoder(file)
enc.SetIndent(2)
return enc.Encode(data)
}
// get the first commit on a given date
func getCommitByDate(repo *git.Repository, date time.Time) (*plumbing.Hash, error) {
// Get the commit iterator
iterator, err := repo.Log(&git.LogOptions{Order: git.LogOrderCommitterTime})
if err != nil {
return nil, err
}
// Iterate through the commits
var commit *plumbing.Hash
for {
// Get the next commit
c, err := iterator.Next()
if err != nil {
if err == io.EOF {
break
}
return nil, err
}
// Check if the commit date is less than or equal to the specified date
if c.Committer.When.Before(date) || c.Committer.When.Equal(date) {
commit = &c.Hash
break
}
}
return commit, nil
}
// get the "sigs.yaml" file from a given commit
func getFileFromCommit(repo *git.Repository, commit *plumbing.Hash, filename string) ([]byte, error) {
// Get the commit object
obj, err := repo.CommitObject(*commit)
if err != nil {
return nil, err
}
// Get the commit tree
tree, err := obj.Tree()
if err != nil {
return nil, err
}
// Get the file from the tree
entry, err := tree.FindEntry(filename)
if err != nil {
return nil, err
}
// Get the file content
file, err := repo.BlobObject(entry.Hash)
if err != nil {
return nil, err
}
reader, err := file.Reader()
if err != nil {
return nil, err
}
defer reader.Close()
content, err := ioutil.ReadAll(reader)
if err != nil {
return nil, err
}
return content, nil
}
func getSigsYamlFromCommit(repo *git.Repository, commitFromAnnualReportYear, commitFromCurrentYear plumbing.Hash) (Context, Context, error) {
var annualReportYearSigs, currentYearSigs Context
annualReportYearSigFile, err := getFileFromCommit(repo, &commitFromAnnualReportYear, sigsYamlFile)
if err != nil {
return Context{}, Context{}, err
}
err = yaml.Unmarshal([]byte(annualReportYearSigFile), &annualReportYearSigs)
if err != nil {
return Context{}, Context{}, err
}
currentYearSigFile, err := getFileFromCommit(repo, &commitFromCurrentYear, sigsYamlFile)
if err != nil {
return Context{}, Context{}, err
}
err = yaml.Unmarshal([]byte(currentYearSigFile), ¤tYearSigs)
if err != nil {
return Context{}, Context{}, err
}
return annualReportYearSigs, currentYearSigs, nil
}
func contains(strlist []string, val string) bool {
for _, str := range strlist {
if str == val {
return true
}
}
return false
}
func getCategorizedSubprojects(dir string) (map[string][]string, error) {
subprojectsMap := make(map[string][]string)
// set for the subprojects in the annual year
annualSubprojects := make(map[string]bool)
annualReportYearSigs, currentYearSigs, err := getSigsYamlFromCommit(repo, *commitFromAnnualReportYear, *commitFromCurrentYear)
if err != nil {
return nil, err
}
// iterate over sigs from the annual report year (say 2022)
for _, sig1 := range annualReportYearSigs.Sigs {
if sig1.Dir != dir {
continue
}
for _, sub1 := range sig1.Subprojects {
annualSubprojects[sub1.Name] = true
}
}
// iterate over sigs from the current year (say 2023)
for _, sig2 := range currentYearSigs.Sigs {
if sig2.Dir != dir {
continue
}
for _, sub2 := range sig2.Subprojects {
if annualSubprojects[sub2.Name] {
subprojectsMap["Continuing"] = append(subprojectsMap["Continuing"], sub2.Name)
delete(annualSubprojects, sub2.Name)
} else {
subprojectsMap["New"] = append(subprojectsMap["New"], sub2.Name)
}
}
}
for sub := range annualSubprojects {
subprojectsMap["Retired"] = append(subprojectsMap["Retired"], sub)
}
return subprojectsMap, nil
}
func getCategorizedWorkingGroups(dir string) (map[string][]string, error) {
workingGroupsMap := make(map[string][]string)
// set for the working groups in the annual year
annualWGs := make(map[string]bool)
annualReportYearSigs, currentYearSigs, err := getSigsYamlFromCommit(repo, *commitFromAnnualReportYear, *commitFromCurrentYear)
if err != nil {
return nil, err
}
annualReportYearSigs.Complete()
annualReportYearSigs.Sort()
currentYearSigs.Complete()
currentYearSigs.Sort()