external-dns/internal/gen/docs/flags/main.go
Michel Loiseleur ac4049bf03
ci(docs): add markdown linters and editorconfig (#5055)
* ci(docs): add markdown linters

* fixes issues in md detected by the linter

* fix workflow

* pre commit

* add editor config

* fix test

* review
2025-02-09 14:07:56 -08:00

119 lines
3.0 KiB
Go

/*
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 (
"bytes"
"fmt"
"os"
"strings"
"text/template"
cfg "sigs.k8s.io/external-dns/pkg/apis/externaldns"
)
type Flag struct {
Name string
Description string
}
type Flags []Flag
// AddFlag adds a new flag to the Flags struct
func (f *Flags) addFlag(name, description string) {
*f = append(*f, Flag{Name: name, Description: description})
}
const markdownTemplate = `# Flags
<!-- THIS FILE MUST NOT BE EDITED BY HAND -->
<!-- ON NEW FLAG ADDED PLEASE RUN 'make generate-flags-documentation' -->
<!-- markdownlint-disable MD013 -->
| Flag | Description |
| :------ | :----------- |
{{- range . }}
| {{ .Name }} | {{ .Description }} |
{{- end -}}
`
// It generates a markdown file
// with the supported flags and writes it to the 'docs/flags.md' file.
// to re-generate `docs/flags.md` execute 'go run internal/gen/main.go'
func main() {
testPath, _ := os.Getwd()
path := fmt.Sprintf("%s/docs/flags.md", testPath)
fmt.Printf("generate file '%s' with supported flags\n", path)
flags := computeFlags()
content, err := flags.generateMarkdownTable()
if err != nil {
_ = fmt.Errorf("failed to generate markdown file '%s': %v\n", path, err.Error())
}
content = content + "\n"
_ = writeToFile(path, content)
}
func computeFlags() Flags {
app := cfg.App(&cfg.Config{})
modelFlags := app.Model().Flags
flags := Flags{}
for _, flag := range modelFlags {
// do not include helpers and completion flags
if strings.Contains(flag.Name, "help") || strings.Contains(flag.Name, "completion-") {
continue
}
flagString := ""
flagName := flag.Name
if flag.IsBoolFlag() {
flagName = "[no-]" + flagName
}
flagString += fmt.Sprintf("--%s", flagName)
if !flag.IsBoolFlag() {
flagString += fmt.Sprintf("=%s", flag.FormatPlaceHolder())
}
flags.addFlag(fmt.Sprintf("`%s`", flagString), flag.HelpWithEnvar())
}
return flags
}
func (f *Flags) generateMarkdownTable() (string, error) {
tmpl := template.Must(template.New("flags.md.tpl").Parse(markdownTemplate))
var b bytes.Buffer
err := tmpl.Execute(&b, f)
if err != nil {
return "", err
}
return b.String(), nil
}
func writeToFile(filename string, content string) error {
file, fileErr := os.Create(filename)
if fileErr != nil {
_ = fmt.Errorf("failed to create file: %v", fileErr)
}
defer file.Close()
_, writeErr := file.WriteString(content)
if writeErr != nil {
_ = fmt.Errorf("failed to write to file: %s", filename)
}
return nil
}