2019-01-05 22:44:33 +00:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
cmdsCmd.AddCommand(cmdsLsCmd)
|
|
|
|
cmdsLsCmd.Flags().StringP("event", "e", "", "event name, without 'before' or 'after'")
|
|
|
|
}
|
|
|
|
|
|
|
|
var cmdsLsCmd = &cobra.Command{
|
|
|
|
Use: "ls",
|
|
|
|
Short: "List all commands for each event",
|
|
|
|
Long: `List all commands for each event.`,
|
|
|
|
Args: cobra.NoArgs,
|
2024-04-01 16:24:06 +00:00
|
|
|
Run: python(func(cmd *cobra.Command, _ []string, d pythonData) {
|
2019-01-07 20:24:23 +00:00
|
|
|
s, err := d.store.Settings.Get()
|
2019-01-05 22:44:33 +00:00
|
|
|
checkErr(err)
|
2019-01-08 14:07:55 +00:00
|
|
|
evt := mustGetString(cmd.Flags(), "event")
|
2019-01-05 22:44:33 +00:00
|
|
|
|
|
|
|
if evt == "" {
|
|
|
|
printEvents(s.Commands)
|
|
|
|
} else {
|
|
|
|
show := map[string][]string{}
|
|
|
|
show["before_"+evt] = s.Commands["before_"+evt]
|
|
|
|
show["after_"+evt] = s.Commands["after_"+evt]
|
|
|
|
printEvents(show)
|
|
|
|
}
|
2019-01-07 20:24:23 +00:00
|
|
|
}, pythonConfig{}),
|
2019-01-05 22:44:33 +00:00
|
|
|
}
|