forked from argoproj/argo-cd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
236 lines (212 loc) · 6.51 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
package main
import (
"bytes"
"fmt"
"io"
"os"
"path"
"path/filepath"
"strings"
"github.com/spf13/cobra/doc"
"github.com/argoproj/argo-cd/v2/cmd/argocd/commands/admin"
"github.com/argoproj/notifications-engine/pkg/services"
"github.com/argoproj/notifications-engine/pkg/triggers"
"github.com/argoproj/notifications-engine/pkg/util/misc"
"github.com/ghodss/yaml"
"github.com/olekukonko/tablewriter"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
v1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
func main() {
var command = &cobra.Command{
Use: "gen",
Run: func(c *cobra.Command, args []string) {
c.HelpFunc()(c, args)
},
}
command.AddCommand(newDocsCommand())
command.AddCommand(newCatalogCommand())
if err := command.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}
func newCatalogCommand() *cobra.Command {
return &cobra.Command{
Use: "catalog",
Run: func(c *cobra.Command, args []string) {
cm := v1.ConfigMap{
TypeMeta: metav1.TypeMeta{
Kind: "ConfigMap",
APIVersion: "v1",
},
ObjectMeta: metav1.ObjectMeta{
Name: "argocd-notifications-cm",
},
Data: make(map[string]string),
}
wd, err := os.Getwd()
dieOnError(err, "Failed to get current working directory")
target := path.Join(wd, "notifications_catalog/install.yaml")
templatesDir := path.Join(wd, "notifications_catalog/templates")
triggersDir := path.Join(wd, "notifications_catalog/triggers")
templates, triggers, err := buildConfigFromFS(templatesDir, triggersDir)
dieOnError(err, "Failed to build catalog config")
misc.IterateStringKeyMap(triggers, func(name string) {
trigger := triggers[name]
t, err := yaml.Marshal(trigger)
dieOnError(err, "Failed to marshal trigger")
cm.Data[fmt.Sprintf("trigger.%s", name)] = string(t)
})
misc.IterateStringKeyMap(templates, func(name string) {
template := templates[name]
t, err := yaml.Marshal(template)
dieOnError(err, "Failed to marshal template")
cm.Data[fmt.Sprintf("template.%s", name)] = string(t)
})
d, err := yaml.Marshal(cm)
dieOnError(err, "Failed to marshal final configmap")
err = os.WriteFile(target, d, 0644)
dieOnError(err, "Failed to write builtin configmap")
},
}
}
func newDocsCommand() *cobra.Command {
return &cobra.Command{
Use: "docs",
Run: func(c *cobra.Command, args []string) {
var builtItDocsData bytes.Buffer
wd, err := os.Getwd()
dieOnError(err, "Failed to get current working directory")
templatesDir := path.Join(wd, "notifications_catalog/templates")
triggersDir := path.Join(wd, "notifications_catalog/triggers")
notificationTemplates, notificationTriggers, err := buildConfigFromFS(templatesDir, triggersDir)
dieOnError(err, "Failed to build builtin config")
generateBuiltInTriggersDocs(&builtItDocsData, notificationTriggers, notificationTemplates)
if err := os.WriteFile("./docs/operator-manual/notifications/catalog.md", builtItDocsData.Bytes(), 0644); err != nil {
log.Fatal(err)
}
var commandDocs bytes.Buffer
if err := generateCommandsDocs(&commandDocs); err != nil {
log.Fatal(err)
}
if err := os.WriteFile("./docs/operator-manual/notifications/troubleshooting-commands.md", commandDocs.Bytes(), 0644); err != nil {
log.Fatal(err)
}
},
}
}
func generateBuiltInTriggersDocs(out io.Writer, triggers map[string][]triggers.Condition, templates map[string]services.Notification) {
_, _ = fmt.Fprintln(out, "# Triggers and Templates Catalog")
_, _ = fmt.Fprintln(out, "## Triggers")
w := tablewriter.NewWriter(out)
w.SetHeader([]string{"NAME", "DESCRIPTION", "TEMPLATE"})
w.SetBorders(tablewriter.Border{Left: true, Top: false, Right: true, Bottom: false})
w.SetCenterSeparator("|")
w.SetAutoWrapText(false)
misc.IterateStringKeyMap(triggers, func(name string) {
t := triggers[name]
desc := ""
template := ""
if len(t) > 0 {
desc = t[0].Description
template = strings.Join(t[0].Send, ",")
}
w.Append([]string{name, desc, fmt.Sprintf("[%s](#%s)", template, template)})
})
w.Render()
_, _ = fmt.Fprintln(out, "")
_, _ = fmt.Fprintln(out, "## Templates")
misc.IterateStringKeyMap(templates, func(name string) {
t := templates[name]
yamlData, err := yaml.Marshal(t)
if err != nil {
panic(err)
}
_, _ = fmt.Fprintf(out, "### %s\n**definition**:\n```yaml\n%s\n```\n", name, string(yamlData))
})
}
func generateCommandsDocs(out io.Writer) error {
// create parents so that CommandPath() is correctly resolved
mainCmd := &cobra.Command{Use: "argocd"}
adminCmd := &cobra.Command{Use: "admin"}
toolCmd := admin.NewNotificationsCommand()
adminCmd.AddCommand(toolCmd)
mainCmd.AddCommand(adminCmd)
for _, mainSubCommand := range mainCmd.Commands() {
for _, adminSubCommand := range mainSubCommand.Commands() {
for _, toolSubCommand := range adminSubCommand.Commands() {
for _, c := range toolSubCommand.Commands() {
var cmdDesc bytes.Buffer
if err := doc.GenMarkdown(c, &cmdDesc); err != nil {
return err
}
for _, line := range strings.Split(cmdDesc.String(), "\n") {
if strings.HasPrefix(line, "### SEE ALSO") {
break
}
_, _ = fmt.Fprintf(out, "%s\n", line)
}
}
}
}
}
return nil
}
func dieOnError(err error, msg string) {
if err != nil {
fmt.Printf("[ERROR] %s: %v", msg, err)
os.Exit(1)
}
}
func buildConfigFromFS(templatesDir string, triggersDir string) (map[string]services.Notification, map[string][]triggers.Condition, error) {
templatesCfg := map[string]services.Notification{}
err := filepath.Walk(templatesDir, func(p string, info os.FileInfo, e error) error {
if e != nil {
return e
}
if info.IsDir() {
return nil
}
data, err := os.ReadFile(p)
if err != nil {
return err
}
name := strings.Split(path.Base(p), ".")[0]
var template services.Notification
if err := yaml.Unmarshal(data, &template); err != nil {
return err
}
templatesCfg[name] = template
return nil
})
if err != nil {
return nil, nil, err
}
triggersCfg := map[string][]triggers.Condition{}
err = filepath.Walk(triggersDir, func(p string, info os.FileInfo, e error) error {
if e != nil {
return e
}
if info.IsDir() {
return nil
}
data, err := os.ReadFile(p)
if err != nil {
return err
}
name := strings.Split(path.Base(p), ".")[0]
var trigger []triggers.Condition
if err := yaml.Unmarshal(data, &trigger); err != nil {
return err
}
triggersCfg[name] = trigger
return nil
})
if err != nil {
return nil, nil, err
}
return templatesCfg, triggersCfg, nil
}