mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
3da905c851
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6745 GitOrigin-RevId: 609368683839c092bc88bf946e4a0f1d246a3256
465 lines
14 KiB
Go
465 lines
14 KiB
Go
package commands
|
|
|
|
import (
|
|
"bufio"
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"path/filepath"
|
|
"sort"
|
|
"strings"
|
|
|
|
"github.com/hasura/graphql-engine/cli/v2"
|
|
"github.com/hasura/graphql-engine/cli/v2/internal/errors"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/cobra/doc"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
var rootPath string = "/hasura-cli/commands/"
|
|
var sidebarPositionMap = make(map[string]int)
|
|
var sidebarPosition int = 0
|
|
|
|
// NewDocsCmd returns the docs command
|
|
func NewDocsCmd(ec *cli.ExecutionContext) *cobra.Command {
|
|
var docType, docDirectory string
|
|
docsCmd := &cobra.Command{
|
|
Use: "docs",
|
|
Short: "Generate CLI docs in various formats",
|
|
Hidden: true,
|
|
SilenceUsage: true,
|
|
PreRunE: func(cmd *cobra.Command, args []string) error {
|
|
ec.Viper = viper.New()
|
|
return nil
|
|
},
|
|
RunE: func(cmd *cobra.Command, args []string) (err error) {
|
|
op := genOpName(cmd, "RunE")
|
|
err = os.MkdirAll(docDirectory, os.ModePerm)
|
|
if err != nil {
|
|
return errors.E(op, fmt.Errorf("unable to create directory: %w", err))
|
|
}
|
|
switch docType {
|
|
case "man":
|
|
err = doc.GenManTree(rootCmd, &doc.GenManHeader{Title: "HASURA", Section: "3"}, docDirectory)
|
|
case "mdx":
|
|
generateSidebarPositions(rootCmd)
|
|
err = genMarkdownXTreeCustom(rootCmd, docDirectory,
|
|
func(s string) string { return "" },
|
|
func(s string) string { return fmt.Sprintf("%s%s", rootPath, strings.Replace(s, " ", "_", -1)) },
|
|
)
|
|
case "md":
|
|
err = doc.GenMarkdownTree(rootCmd, docDirectory)
|
|
case "rest":
|
|
err = genReSTTreeCustom(rootCmd, docDirectory, "Hasura CLI: ", func(s string) string { return "" }, sphinxLinkHandler)
|
|
case "yaml":
|
|
err = doc.GenYamlTree(rootCmd, docDirectory)
|
|
default:
|
|
return errors.E(op, "unknown type")
|
|
}
|
|
if err != nil {
|
|
return errors.E(op, fmt.Errorf("generating docs failed: %w", err))
|
|
}
|
|
ec.Logger.Infof("[%s] docs generated in [%s]", docType, docDirectory)
|
|
return nil
|
|
},
|
|
}
|
|
|
|
f := docsCmd.Flags()
|
|
f.StringVar(&docType, "type", "md", "type of documentation to generate (man, md, mdx, rest, yaml)")
|
|
f.StringVar(&docDirectory, "directory", "docs", "directory where docs should be generated")
|
|
return docsCmd
|
|
}
|
|
|
|
func sphinxLinkHandler(name, ref string) string {
|
|
return fmt.Sprintf(":ref:`%s <%s>`", name, ref)
|
|
}
|
|
|
|
// taken from https://github.com/spf13/cobra/blob/master/doc/rest_docs.go
|
|
func printOptionsReST(buf *bytes.Buffer, cmd *cobra.Command, name string) error {
|
|
flags := cmd.NonInheritedFlags()
|
|
flags.SetOutput(buf)
|
|
if flags.HasFlags() {
|
|
buf.WriteString("Options\n")
|
|
buf.WriteString("~~~~~~~\n\n::\n\n")
|
|
flags.PrintDefaults()
|
|
buf.WriteString("\n")
|
|
}
|
|
|
|
parentFlags := cmd.InheritedFlags()
|
|
parentFlags.SetOutput(buf)
|
|
if parentFlags.HasFlags() {
|
|
buf.WriteString("Options inherited from parent commands\n")
|
|
buf.WriteString("~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n::\n\n")
|
|
parentFlags.PrintDefaults()
|
|
buf.WriteString("\n")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
/* linkHandler for default ReST hyperlink markup
|
|
func defaultLinkHandler(name, ref string) string {
|
|
return fmt.Sprintf("`%s <%s.rst>`_", name, ref)
|
|
}
|
|
|
|
// genReST creates reStructured Text output.
|
|
func genReST(cmd *cobra.Command, w io.Writer, titlePrefix string) error {
|
|
return genReSTCustom(cmd, w, titlePrefix, defaultLinkHandler)
|
|
}*/
|
|
|
|
// genReSTCustom creates custom reStructured Text output.
|
|
func genReSTCustom(cmd *cobra.Command, w io.Writer, titlePrefix string, linkHandler func(string, string) string) error {
|
|
var op errors.Op = "commands.genReSTCustom"
|
|
cmd.InitDefaultHelpCmd()
|
|
cmd.InitDefaultHelpFlag()
|
|
|
|
buf := new(bytes.Buffer)
|
|
name := cmd.CommandPath()
|
|
ref := strings.Replace(name, " ", "_", -1)
|
|
short := cmd.Short
|
|
long := cmd.Long
|
|
if len(long) == 0 {
|
|
long = short
|
|
}
|
|
info := short
|
|
buf.WriteString(".. meta::\n")
|
|
buf.WriteString(" :description: " + info + " using the Hasura CLI\n")
|
|
buf.WriteString(" :keywords: hasura, docs, CLI")
|
|
if cmd.CommandPath() != "hasura" {
|
|
buf.WriteString(", " + cmd.CommandPath() + "\n")
|
|
} else {
|
|
buf.WriteString("\n")
|
|
}
|
|
buf.WriteString("\n")
|
|
buf.WriteString(".. _" + ref + ":\n\n")
|
|
|
|
buf.WriteString(titlePrefix + name + "\n")
|
|
buf.WriteString(strings.Repeat("-", len(titlePrefix+name)) + "\n\n")
|
|
buf.WriteString(info + ".\n\n")
|
|
|
|
buf.WriteString("Synopsis\n")
|
|
buf.WriteString("~~~~~~~~\n\n")
|
|
if name == "hasura" {
|
|
buf.WriteString("::")
|
|
}
|
|
buf.WriteString("\n" + long)
|
|
if name != "hasura" && name != "hasura scripts update-project-v2" {
|
|
buf.WriteString(".")
|
|
}
|
|
buf.WriteString("\n\n")
|
|
|
|
if cmd.Runnable() {
|
|
buf.WriteString(fmt.Sprintf("::\n\n %s\n\n", cmd.UseLine()))
|
|
}
|
|
|
|
if len(cmd.Aliases) > 0 {
|
|
buf.WriteString("Alias: " + strings.Join(cmd.Aliases, ", ") + "\n\n")
|
|
}
|
|
|
|
if len(cmd.Example) > 0 {
|
|
buf.WriteString("Examples\n")
|
|
buf.WriteString("~~~~~~~~\n\n")
|
|
buf.WriteString(fmt.Sprintf("::\n\n%s\n\n", indentString(cmd.Example, " ")))
|
|
}
|
|
|
|
if err := printOptionsReST(buf, cmd, name); err != nil {
|
|
return errors.E(op, err)
|
|
}
|
|
if hasSeeAlso(cmd) {
|
|
buf.WriteString("SEE ALSO\n")
|
|
buf.WriteString("~~~~~~~~\n\n")
|
|
if cmd.HasParent() {
|
|
parent := cmd.Parent()
|
|
pname := parent.CommandPath()
|
|
ref = strings.Replace(pname, " ", "_", -1)
|
|
buf.WriteString(fmt.Sprintf("* %s \t - %s\n", linkHandler(pname, ref), parent.Short))
|
|
cmd.VisitParents(func(c *cobra.Command) {
|
|
if c.DisableAutoGenTag {
|
|
cmd.DisableAutoGenTag = c.DisableAutoGenTag
|
|
}
|
|
})
|
|
}
|
|
|
|
children := cmd.Commands()
|
|
sort.Sort(byName(children))
|
|
|
|
for _, child := range children {
|
|
if !child.IsAvailableCommand() || child.IsAdditionalHelpTopicCommand() {
|
|
continue
|
|
}
|
|
cname := name + " " + child.Name()
|
|
ref = strings.Replace(cname, " ", "_", -1)
|
|
buf.WriteString(fmt.Sprintf("* %s \t - %s\n", linkHandler(cname, ref), child.Short))
|
|
}
|
|
buf.WriteString("\n")
|
|
}
|
|
if !cmd.DisableAutoGenTag {
|
|
buf.WriteString("*Auto generated by spf13/cobra*\n")
|
|
}
|
|
_, err := buf.WriteTo(w)
|
|
if err != nil {
|
|
return errors.E(op, err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// genReSTTree will generate a ReST page for this command and all
|
|
// descendants in the directory given.
|
|
// This function may not work correctly if your command names have `-` in them.
|
|
// If you have `cmd` with two subcmds, `sub` and `sub-third`,
|
|
// and `sub` has a subcommand called `third`, it is undefined which
|
|
/* help output will be in the file `cmd-sub-third.1`.
|
|
func genReSTTree(cmd *cobra.Command, dir, titlePrefix string) error {
|
|
emptyStr := func(s string) string { return "" }
|
|
return genReSTTreeCustom(cmd, dir, titlePrefix, emptyStr, defaultLinkHandler)
|
|
}*/
|
|
|
|
// genReSTTreeCustom is the the same as genReSTTree, but
|
|
// with custom filePrepender and linkHandler.
|
|
func genReSTTreeCustom(cmd *cobra.Command, dir, titlePrefix string, filePrepender func(string) string, linkHandler func(string, string) string) error {
|
|
var op errors.Op = "commands.genReSTTreeCustom"
|
|
for _, c := range cmd.Commands() {
|
|
if !c.IsAvailableCommand() || c.IsAdditionalHelpTopicCommand() {
|
|
continue
|
|
}
|
|
if err := genReSTTreeCustom(c, dir, titlePrefix, filePrepender, linkHandler); err != nil {
|
|
return errors.E(op, err)
|
|
}
|
|
}
|
|
basename := strings.Replace(cmd.CommandPath(), " ", "_", -1) + ".rst"
|
|
filename := filepath.Join(dir, basename)
|
|
f, err := os.Create(filename)
|
|
if err != nil {
|
|
return errors.E(op, err)
|
|
}
|
|
defer f.Close()
|
|
|
|
if _, err := io.WriteString(f, filePrepender(filename)); err != nil {
|
|
return errors.E(op, err)
|
|
}
|
|
if err := genReSTCustom(cmd, f, titlePrefix, linkHandler); err != nil {
|
|
return errors.E(op, err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func printOptionsMarkdownX(buf *bytes.Buffer, cmd *cobra.Command, name string) error {
|
|
localBuf := new(bytes.Buffer)
|
|
flags := cmd.NonInheritedFlags()
|
|
flags.SetOutput(localBuf)
|
|
if flags.HasAvailableFlags() {
|
|
flags.PrintDefaults()
|
|
scanner := bufio.NewScanner(localBuf)
|
|
// sass highlighting seems to work for this section
|
|
buf.WriteString("## Options\n\n```sass\n")
|
|
for scanner.Scan() {
|
|
buf.WriteString(fmt.Sprintf("%s\n", strings.TrimPrefix(scanner.Text(), " ")))
|
|
}
|
|
buf.WriteString("```\n\n")
|
|
}
|
|
|
|
localBuf = new(bytes.Buffer)
|
|
parentFlags := cmd.InheritedFlags()
|
|
parentFlags.SetOutput(localBuf)
|
|
if parentFlags.HasAvailableFlags() {
|
|
parentFlags.PrintDefaults()
|
|
scanner := bufio.NewScanner(localBuf)
|
|
// sass highlighting seems to work for this section
|
|
buf.WriteString("## Options inherited from parent commands\n\n```sass\n")
|
|
for scanner.Scan() {
|
|
buf.WriteString(fmt.Sprintf("%s\n", strings.TrimPrefix(scanner.Text(), " ")))
|
|
}
|
|
buf.WriteString("```\n\n")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// genMarkdownXCustom creates custom markdown output.
|
|
func genMarkdownXCustom(cmd *cobra.Command, w io.Writer, linkHandler func(string) string) error {
|
|
var op errors.Op = "commands.genMarkdownXCustom"
|
|
cmd.InitDefaultHelpCmd()
|
|
cmd.InitDefaultHelpFlag()
|
|
|
|
buf := new(bytes.Buffer)
|
|
name := cmd.CommandPath()
|
|
short := cmd.Short
|
|
long := cmd.Long
|
|
if len(long) == 0 {
|
|
long = short
|
|
}
|
|
|
|
info := short
|
|
buf.WriteString("---\n")
|
|
buf.WriteString(fmt.Sprintf("sidebar_label: %s\n", name))
|
|
buf.WriteString(fmt.Sprintf("sidebar_position: %d\n", getSidebarPositionForCmd(cmd.CommandPath())))
|
|
buf.WriteString(fmt.Sprintf("description: %s using the Hasura CLI\n", info))
|
|
buf.WriteString("keywords:\n - hasura\n - docs\n - CLI\n")
|
|
if name != "hasura" {
|
|
buf.WriteString(fmt.Sprintf(" - %s\n", name))
|
|
}
|
|
buf.WriteString("---\n\n")
|
|
|
|
buf.WriteString(fmt.Sprintf("# Hasura CLI: %s\n\n", name))
|
|
buf.WriteString(cmd.Short + "." + "\n\n")
|
|
buf.WriteString("## Synopsis\n\n")
|
|
if name == "hasura" {
|
|
buf.WriteString("```\n\n")
|
|
buf.WriteString(fmt.Sprintf("%s\n\n", long))
|
|
buf.WriteString("```\n\n")
|
|
} else {
|
|
buf.WriteString(fmt.Sprintf("%s\n\n", long+"."))
|
|
}
|
|
|
|
if cmd.Runnable() {
|
|
buf.WriteString(fmt.Sprintf("```bash\n%s\n```\n\n", cmd.UseLine()))
|
|
}
|
|
|
|
if len(cmd.Aliases) > 0 {
|
|
buf.WriteString(fmt.Sprintf("**Alias:** %s\n\n", strings.Join(cmd.Aliases, ", ")))
|
|
}
|
|
|
|
if len(cmd.Example) > 0 {
|
|
buf.WriteString("## Examples\n\n")
|
|
scanner := bufio.NewScanner(strings.NewReader(cmd.Example))
|
|
buf.WriteString("```bash\n")
|
|
for scanner.Scan() {
|
|
buf.WriteString(fmt.Sprintf("%s\n", strings.TrimPrefix(scanner.Text(), " ")))
|
|
}
|
|
buf.WriteString("```\n\n")
|
|
}
|
|
|
|
if err := printOptionsMarkdownX(buf, cmd, name); err != nil {
|
|
return errors.E(op, err)
|
|
}
|
|
if hasSeeAlso(cmd) {
|
|
buf.WriteString("## SEE ALSO\n\n")
|
|
if cmd.HasParent() {
|
|
parent := cmd.Parent()
|
|
pname := parent.CommandPath()
|
|
link := pname + ".mdx"
|
|
link = strings.ReplaceAll(link, " ", "_")
|
|
buf.WriteString(fmt.Sprintf("* [%s](%s)\t - %s\n", pname, linkHandler(link), parent.Short))
|
|
cmd.VisitParents(func(c *cobra.Command) {
|
|
if c.DisableAutoGenTag {
|
|
cmd.DisableAutoGenTag = c.DisableAutoGenTag
|
|
}
|
|
})
|
|
}
|
|
|
|
children := cmd.Commands()
|
|
sort.Sort(byName(children))
|
|
|
|
for _, child := range children {
|
|
if !child.IsAvailableCommand() || child.IsAdditionalHelpTopicCommand() {
|
|
continue
|
|
}
|
|
cname := name + " " + child.Name()
|
|
link := cname + ".mdx"
|
|
link = strings.ReplaceAll(link, " ", "_")
|
|
buf.WriteString(fmt.Sprintf("* [%s](%s)\t - %s\n", cname, linkHandler(link), child.Short))
|
|
}
|
|
buf.WriteString("\n")
|
|
}
|
|
if !cmd.DisableAutoGenTag {
|
|
buf.WriteString("_Auto generated by spf13/cobra_\n")
|
|
}
|
|
_, err := buf.WriteTo(w)
|
|
if err != nil {
|
|
return errors.E(op, err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// genMarkdownXTreeCustom is the the same as GenMarkdownTree, but
|
|
// with custom filePrepender and linkHandler.
|
|
func genMarkdownXTreeCustom(cmd *cobra.Command, dir string, filePrepender, linkHandler func(string) string) error {
|
|
var op errors.Op = "commands.genMarkdownXTreeCustom"
|
|
for _, c := range cmd.Commands() {
|
|
if !c.IsAvailableCommand() || c.IsAdditionalHelpTopicCommand() {
|
|
continue
|
|
}
|
|
if err := genMarkdownXTreeCustom(c, dir, filePrepender, linkHandler); err != nil {
|
|
return errors.E(op, err)
|
|
}
|
|
}
|
|
|
|
basename := strings.ReplaceAll(cmd.CommandPath(), " ", "_") + ".mdx"
|
|
filename := filepath.Join(dir, basename)
|
|
f, err := os.Create(filename)
|
|
if err != nil {
|
|
return errors.E(op, err)
|
|
}
|
|
defer f.Close()
|
|
|
|
if _, err := io.WriteString(f, filePrepender(filename)); err != nil {
|
|
return errors.E(op, err)
|
|
}
|
|
if err := genMarkdownXCustom(cmd, f, linkHandler); err != nil {
|
|
return errors.E(op, err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// adapted from: https://github.com/kr/text/blob/main/indent.go
|
|
func indentString(s, p string) string {
|
|
var res []byte
|
|
b := []byte(s)
|
|
prefix := []byte(p)
|
|
bol := true
|
|
for _, c := range b {
|
|
if bol && c != '\n' {
|
|
res = append(res, prefix...)
|
|
}
|
|
res = append(res, c)
|
|
bol = c == '\n'
|
|
}
|
|
return string(res)
|
|
}
|
|
|
|
// Test to see if we have a reason to print See Also information in docs
|
|
// Basically this is a test for a parent commend or a subcommand which is
|
|
// both not deprecated and not the autogenerated help command.
|
|
func hasSeeAlso(cmd *cobra.Command) bool {
|
|
if cmd.HasParent() {
|
|
return true
|
|
}
|
|
for _, c := range cmd.Commands() {
|
|
if !c.IsAvailableCommand() || c.IsAdditionalHelpTopicCommand() {
|
|
continue
|
|
}
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
// Returns the sidebar position for a command
|
|
func getSidebarPositionForCmd(commandPath string) int {
|
|
return sidebarPositionMap[commandPath]
|
|
}
|
|
|
|
// Allocates a sidebar position to commands using DFS
|
|
func generateSidebarPositions(cmd *cobra.Command) {
|
|
sidebarPosition = sidebarPosition + 1
|
|
sidebarPositionMap[cmd.CommandPath()] = sidebarPosition
|
|
for _, c := range cmd.Commands() {
|
|
generateSidebarPositions(c)
|
|
}
|
|
}
|
|
|
|
// Temporary workaround for yaml lib generating incorrect yaml with long strings
|
|
/* that do not contain \n.
|
|
func forceMultiLine(s string) string {
|
|
if len(s) > 60 && !strings.Contains(s, "\n") {
|
|
s = s + "\n"
|
|
}
|
|
return s
|
|
}*/
|
|
|
|
type byName []*cobra.Command
|
|
|
|
func (s byName) Len() int { return len(s) }
|
|
func (s byName) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
|
|
func (s byName) Less(i, j int) bool { return s[i].Name() < s[j].Name() }
|