JMS #25: Added support for help flags

This commit is contained in:
Jeremy Saenz
2013-07-24 07:35:45 -07:00
parent 933a037bf0
commit 70eacca641
5 changed files with 54 additions and 22 deletions

34
help.go
View File

@@ -51,30 +51,36 @@ var helpCommand = Command{
Action: func(c *Context) {
args := c.Args()
if len(args) > 0 {
showCommandHelp(c)
ShowCommandHelp(c, args[0])
} else {
showAppHelp(c)
ShowAppHelp(c)
}
},
}
func showAppHelp(c *Context) {
// Prints help for the App
func ShowAppHelp(c *Context) {
printHelp(AppHelpTemplate, c.App)
}
func showCommandHelp(c *Context) {
name := c.Args()[0]
// Prints help for the given command
func ShowCommandHelp(c *Context, command string) {
for _, c := range c.App.Commands {
if c.HasName(name) {
if c.HasName(command) {
printHelp(CommandHelpTemplate, c)
return
}
}
fmt.Printf("No help topic for '%v'\n", name)
fmt.Printf("No help topic for '%v'\n", command)
os.Exit(1)
}
// Prints the version number of the App
func ShowVersion(c *Context) {
fmt.Printf("%v version %v\n", c.App.Name, c.App.Version)
}
func printHelp(templ string, data interface{}) {
w := tabwriter.NewWriter(os.Stdout, 0, 8, 1, '\t', 0)
t := template.Must(template.New("help").Parse(templ))
@@ -82,6 +88,16 @@ func printHelp(templ string, data interface{}) {
w.Flush()
}
func showVersion(c *Context) {
fmt.Printf("%v version %v\n", c.App.Name, c.App.Version)
func checkVersion(c *Context) {
if c.GlobalBool("version") {
ShowVersion(c)
os.Exit(0)
}
}
func checkHelp(c *Context) {
if c.GlobalBool("h") || c.GlobalBool("help") {
ShowAppHelp(c)
os.Exit(0)
}
}