-
Notifications
You must be signed in to change notification settings - Fork 15
/
main.go
156 lines (138 loc) · 3.81 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
/*
Copyright The Kubepack 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 (
"bytes"
"fmt"
"io"
iofs "io/fs"
"os"
"path/filepath"
"strings"
"text/template"
"kubepack.dev/chart-doc-gen/api"
"kubepack.dev/chart-doc-gen/templates"
"github.com/olekukonko/tablewriter"
flag "github.com/spf13/pflag"
ylib "k8s.io/apimachinery/pkg/util/yaml"
"sigs.k8s.io/kustomize/kyaml/yaml"
yaml2 "sigs.k8s.io/yaml"
)
var (
docFile = flag.StringP("doc", "d", "", "Path to a project's doc.{json|yaml} info file")
chartFile = flag.StringP("chart", "c", "", "Path to Chart.yaml file")
valuesFile = flag.StringP("values", "v", "", "Path to chart values file")
tplFile = flag.StringP("template", "t", "readme2.tpl", "Path to a doc template file")
)
func main() {
flag.Parse()
f, err := os.Open(*docFile)
if err != nil {
panic(err)
}
reader := ylib.NewYAMLOrJSONDecoder(f, 2048)
var doc api.DocInfo
err = reader.Decode(&doc)
if err != nil && err != io.EOF {
panic(err)
}
data, err := os.ReadFile(*valuesFile)
if err != nil {
panic(err)
}
obj, err := yaml.Parse(string(data))
if err == nil {
rows, err := GenerateValuesTable(obj)
if err != nil {
panic(err)
}
var params [][]string
for _, row := range rows {
params = append(params, []string{
row[0],
row[1],
fmt.Sprintf(
"<code>%s</code>", // use a html code block instead of backtics so the whole block get highlighted
strings.ReplaceAll( // replace all newlines, they generate new table columns with tablewriter
strings.ReplaceAll(row[2], "|", "|"), // replace all pipe symbols with their ACSII representation, because they break the markdown table
"\n",
" ",
),
),
})
}
var buf bytes.Buffer
table := tablewriter.NewWriter(&buf)
table.SetHeader([]string{"Parameter", "Description", "Default"})
table.SetAutoFormatHeaders(false)
table.SetBorders(tablewriter.Border{Left: true, Top: false, Right: true, Bottom: false})
table.SetAutoWrapText(false)
table.SetCenterSeparator("|")
table.AppendBulk(params) // Add Bulk Data
table.Render()
doc.Chart.Values = buf.String()
if doc.Chart.ValuesExample == "" || strings.HasPrefix(doc.Chart.ValuesExample, "-- generate from values file --") {
for _, row := range rows {
if row[2] != "" &&
row[2] != `""` &&
row[2] != "{}" &&
row[2] != "[]" &&
row[2] != "true" &&
row[2] != "false" &&
row[2] != "not-ca-cert" {
doc.Chart.ValuesExample = fmt.Sprintf("%v=%v", row[0], row[2])
break
}
}
}
} else if err == io.EOF {
doc.Chart.Values = ""
doc.Chart.ValuesExample = ""
} else {
panic(err)
}
{
if *chartFile == "" {
*chartFile = filepath.Join(filepath.Dir(*valuesFile), "Chart.yaml")
}
data, err := os.ReadFile(*chartFile)
if err != nil {
panic(err)
}
var ci api.ChartInfo
if err = yaml2.Unmarshal(data, &ci); err != nil {
panic(err)
}
doc.Chart.Name = ci.Name
doc.Chart.Version = ci.Version
}
tplReadme, err := os.ReadFile(*tplFile)
if err != nil {
if os.IsNotExist(err) {
tplReadme, err = iofs.ReadFile(templates.FS(), "readme.tpl")
if err != nil {
panic(err)
}
} else {
panic(err)
}
}
tmpl, err := template.New("readme").Parse(string(tplReadme))
if err != nil {
panic(err)
}
err = tmpl.Execute(os.Stdout, doc)
if err != nil {
panic(err)
}
}