forked from kubepack/chart-doc-gen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
127 lines (110 loc) · 2.87 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
/*
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"
"io/ioutil"
"os"
"text/template"
"kubepack.dev/chart-doc-gen/api"
"kubepack.dev/chart-doc-gen/templates"
"github.com/olekukonko/tablewriter"
flag "github.com/spf13/pflag"
y2 "k8s.io/apimachinery/pkg/util/yaml"
"sigs.k8s.io/kustomize/kyaml/yaml"
)
var (
docFile *string = flag.StringP("doc", "d", "", "Path to a project's doc.{json|yaml} info file")
valuesFile *string = flag.StringP("values", "v", "", "Path to chart values file")
tplFile *string = 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 := y2.NewYAMLOrJSONDecoder(f, 2048)
var doc api.DocInfo
err = reader.Decode(&doc)
if err != nil && err != io.EOF {
panic(err)
}
data, err := ioutil.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("`%s`", row[2]),
})
}
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()
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)
}
tplReadme, err := ioutil.ReadFile(*tplFile)
if err != nil {
if os.IsNotExist(err) {
tplReadme, err = templates.Asset("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)
}
}