2018-07-12 10:55:13 +03:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
2018-07-16 16:21:21 +03:00
|
|
|
"fmt"
|
2018-09-16 02:45:59 +03:00
|
|
|
"sort"
|
2018-08-13 19:32:11 +03:00
|
|
|
|
2018-07-19 13:30:25 +03:00
|
|
|
"github.com/spf13/cobra"
|
2018-07-12 10:55:13 +03:00
|
|
|
)
|
|
|
|
|
2018-09-16 02:45:59 +03:00
|
|
|
var (
|
|
|
|
commandsDesc bool
|
|
|
|
)
|
|
|
|
|
|
|
|
type commandSorterByName []*cobra.Command
|
|
|
|
|
|
|
|
func (c commandSorterByName) Len() int { return len(c) }
|
|
|
|
func (c commandSorterByName) Swap(i, j int) { c[i], c[j] = c[j], c[i] }
|
|
|
|
func (c commandSorterByName) Less(i, j int) bool { return c[i].CommandPath() < c[j].CommandPath() }
|
2018-07-16 16:21:21 +03:00
|
|
|
|
2018-07-19 13:30:25 +03:00
|
|
|
func runCommands(cmd *cobra.Command, args []string) error {
|
2018-07-16 16:21:21 +03:00
|
|
|
first := true
|
|
|
|
|
2018-09-16 02:45:59 +03:00
|
|
|
var allCmds []*cobra.Command
|
|
|
|
queue := []*cobra.Command{RootCmd}
|
|
|
|
|
|
|
|
for len(queue) > 0 {
|
|
|
|
cmd := queue[0]
|
|
|
|
queue = queue[1:]
|
|
|
|
allCmds = append(allCmds, cmd)
|
|
|
|
for _, c := range cmd.Commands() {
|
|
|
|
queue = append(queue, c)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sort.Sort(commandSorterByName(allCmds))
|
2018-07-16 23:38:52 +03:00
|
|
|
|
2018-07-19 13:30:25 +03:00
|
|
|
for _, cmd := range allCmds {
|
2018-07-16 16:21:21 +03:00
|
|
|
if !first {
|
|
|
|
fmt.Println()
|
|
|
|
}
|
|
|
|
|
|
|
|
first = false
|
|
|
|
|
2018-07-19 13:30:25 +03:00
|
|
|
if commandsDesc {
|
|
|
|
fmt.Printf("# %s\n", cmd.Short)
|
|
|
|
}
|
2018-07-16 23:38:52 +03:00
|
|
|
|
2018-09-16 02:45:59 +03:00
|
|
|
fmt.Print(cmd.UseLine())
|
2018-07-19 13:30:25 +03:00
|
|
|
|
|
|
|
if commandsDesc {
|
|
|
|
fmt.Println()
|
2018-07-16 16:21:21 +03:00
|
|
|
}
|
2018-07-19 13:30:25 +03:00
|
|
|
}
|
2018-07-16 16:21:21 +03:00
|
|
|
|
2018-07-19 13:30:25 +03:00
|
|
|
if !commandsDesc {
|
|
|
|
fmt.Println()
|
2018-07-16 16:21:21 +03:00
|
|
|
}
|
2018-07-12 10:55:13 +03:00
|
|
|
|
2018-07-16 16:21:21 +03:00
|
|
|
return nil
|
2018-07-12 10:55:13 +03:00
|
|
|
}
|
|
|
|
|
2018-07-19 13:30:25 +03:00
|
|
|
var commandsCmd = &cobra.Command{
|
|
|
|
Use: "commands [<option>...]",
|
2019-02-24 16:46:08 +03:00
|
|
|
Short: "Display available commands.",
|
2018-07-19 13:30:25 +03:00
|
|
|
RunE: runCommands,
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2018-07-20 16:46:14 +03:00
|
|
|
RootCmd.AddCommand(commandsCmd)
|
2018-07-19 13:30:25 +03:00
|
|
|
|
2018-09-10 19:16:16 +03:00
|
|
|
commandsCmd.Flags().SortFlags = false
|
|
|
|
|
2018-07-19 13:30:25 +03:00
|
|
|
commandsCmd.Flags().BoolVarP(&commandsDesc, "pretty", "p", false,
|
|
|
|
"Output the command description as well as Markdown compatible comment",
|
|
|
|
)
|
2018-07-12 10:55:13 +03:00
|
|
|
}
|