forked from AliyunContainerService/pouch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gen_doc.go
51 lines (43 loc) · 1.25 KB
/
gen_doc.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
package main
import (
"fmt"
"os"
"github.com/spf13/cobra"
"github.com/spf13/cobra/doc"
)
// GenDocCommand is used to implement 'gen-doc' command.
type GenDocCommand struct {
cmd *cobra.Command
// path is the destination path of generated markdown documents.
path string
}
func init() {
genDocCommand := &GenDocCommand{}
genDocCommand.cmd = &cobra.Command{
Use: "gen-doc",
Short: "Generate document for pouchd CLI with MarkDown format",
Args: cobra.NoArgs,
SilenceErrors: true,
SilenceUsage: true,
RunE: func(cmd *cobra.Command, args []string) error {
return genDocCommand.runGenDoc(args)
},
}
genDocCommand.addFlags()
rootCmd.AddCommand(genDocCommand.cmd)
}
// addFlags adds flags for specific command.
func (g *GenDocCommand) addFlags() {
flagSet := g.cmd.Flags()
flagSet.StringVarP(&g.path, "path", "p", "/tmp", "destination path of generated markdown documents")
}
func (g *GenDocCommand) runGenDoc(args []string) error {
// FIXME: make document path configurable
if _, err := os.Stat(g.path); err != nil {
if os.IsNotExist(err) {
return fmt.Errorf("path %s does not exits, please check your gen-doc input flag --path", g.path)
}
return err
}
return doc.GenMarkdownTree(g.cmd.Parent(), g.path)
}