urfave-cli/help.go

204 lines
4.3 KiB
Go
Raw Normal View History

package cli
2013-07-20 15:44:09 +00:00
import (
"fmt"
"io"
2013-07-20 15:44:09 +00:00
)
2013-07-15 00:37:43 +00:00
// The text template for the Default help topic.
// cli.go uses text/template to render templates. You can
// render custom help text by setting this variable.
var AppHelpTemplate = `NAME:
{{.Name}} - {{.Usage}}
USAGE:
{{.Name}} [global options] command [command options] [arguments...]
VERSION:
{{.Version}}
COMMANDS:
{{range .Commands}}{{.Name}}{{with .ShortName}}, {{.}}{{end}}{{ "\t" }}{{.Usage}}
{{end}}
GLOBAL OPTIONS:
{{range .Flags}}{{.}}
{{end}}
`
// The text template for the command help topic.
// cli.go uses text/template to render templates. You can
// render custom help text by setting this variable.
var CommandHelpTemplate = `NAME:
{{.Name}} - {{.Usage}}
USAGE:
command {{.Name}} [command options] [arguments...]
DESCRIPTION:
{{.Description}}
OPTIONS:
{{range .Flags}}{{.}}
{{end}}
`
// The text template for the subcommand help topic.
// cli.go uses text/template to render templates. You can
// render custom help text by setting this variable.
var SubcommandHelpTemplate = `NAME:
{{.Name}} - {{.Usage}}
USAGE:
{{.Name}} [global options] command [command options] [arguments...]
COMMANDS:
{{range .Commands}}{{.Name}}{{with .ShortName}}, {{.}}{{end}}{{ "\t" }}{{.Usage}}
{{end}}
OPTIONS:
{{range .Flags}}{{.}}
{{end}}
`
2013-07-19 22:23:42 +00:00
var helpCommand = Command{
Name: "help",
ShortName: "h",
Usage: "Shows a list of commands or help for one command",
2013-07-19 22:23:42 +00:00
Action: func(c *Context) {
args := c.Args()
2013-11-24 13:40:21 +00:00
if args.Present() {
ShowCommandHelp(c, args.First())
} else {
2013-07-24 14:35:45 +00:00
ShowAppHelp(c)
}
},
}
var helpSubcommand = Command{
Name: "help",
ShortName: "h",
Usage: "Shows a list of commands or help for one command",
Action: func(c *Context) {
args := c.Args()
if args.Present() {
ShowCommandHelp(c, args.First())
} else {
ShowSubcommandHelp(c)
}
},
}
2013-07-24 14:35:45 +00:00
// Prints help for the App
type helpPrinter func(templ string, data interface{})
var HelpPrinter helpPrinter = nil
2013-07-24 14:35:45 +00:00
func ShowAppHelp(c *Context) {
HelpPrinter(AppHelpTemplate, c.App)
}
2013-07-15 00:37:43 +00:00
// Prints the list of subcommands as the default app completion method
func DefaultAppComplete(c *Context) {
for _, command := range c.App.Commands {
2014-12-02 04:50:04 +00:00
io.WriteString(c.App.Writer, fmt.Sprintln(command.Name))
if command.ShortName != "" {
2014-12-02 04:50:04 +00:00
io.WriteString(c.App.Writer, fmt.Sprintln(command.ShortName))
}
}
}
2013-07-24 14:35:45 +00:00
// Prints help for the given command
func ShowCommandHelp(c *Context, command string) {
for _, c := range c.App.Commands {
2013-07-24 14:35:45 +00:00
if c.HasName(command) {
2014-04-26 23:02:33 +00:00
HelpPrinter(CommandHelpTemplate, c)
return
}
}
2013-07-15 00:37:43 +00:00
if c.App.CommandNotFound != nil {
c.App.CommandNotFound(c, command)
} else {
2014-12-02 04:50:04 +00:00
io.WriteString(c.App.Writer, fmt.Sprintf("No help topic for '%v'\n", command))
}
}
2013-07-15 00:37:43 +00:00
// Prints help for the given subcommand
func ShowSubcommandHelp(c *Context) {
HelpPrinter(SubcommandHelpTemplate, c.App)
}
2013-07-24 14:35:45 +00:00
// Prints the version number of the App
func ShowVersion(c *Context) {
2014-12-02 04:50:04 +00:00
io.WriteString(c.App.Writer, fmt.Sprintf("%v version %v\n", c.App.Name, c.App.Version))
2013-07-24 14:35:45 +00:00
}
2014-04-10 17:14:13 +00:00
// Prints the lists of commands within a given context
func ShowCompletions(c *Context) {
a := c.App
if a != nil && a.BashComplete != nil {
a.BashComplete(c)
2014-04-10 17:14:13 +00:00
}
}
// Prints the custom completions for a given command
func ShowCommandCompletions(ctx *Context, command string) {
c := ctx.App.Command(command)
if c != nil && c.BashComplete != nil {
c.BashComplete(ctx)
}
}
func checkVersion(c *Context) bool {
2013-07-24 14:35:45 +00:00
if c.GlobalBool("version") {
ShowVersion(c)
return true
2013-07-24 14:35:45 +00:00
}
return false
2013-07-24 14:35:45 +00:00
}
func checkHelp(c *Context) bool {
2013-07-24 14:35:45 +00:00
if c.GlobalBool("h") || c.GlobalBool("help") {
ShowAppHelp(c)
return true
2013-07-24 14:35:45 +00:00
}
return false
2013-07-20 15:44:09 +00:00
}
2013-08-14 04:40:39 +00:00
func checkCommandHelp(c *Context, name string) bool {
2013-08-14 04:40:39 +00:00
if c.Bool("h") || c.Bool("help") {
ShowCommandHelp(c, name)
return true
2013-08-14 04:40:39 +00:00
}
return false
2013-08-14 04:40:39 +00:00
}
2014-04-10 17:14:13 +00:00
func checkSubcommandHelp(c *Context) bool {
if c.GlobalBool("h") || c.GlobalBool("help") {
ShowSubcommandHelp(c)
return true
}
return false
}
2014-04-10 17:14:13 +00:00
func checkCompletions(c *Context) bool {
if c.GlobalBool(BashCompletionFlag.Name) && c.App.EnableBashCompletion {
2014-04-10 17:14:13 +00:00
ShowCompletions(c)
return true
}
return false
}
func checkCommandCompletions(c *Context, name string) bool {
if c.Bool(BashCompletionFlag.Name) && c.App.EnableBashCompletion {
2014-04-10 17:14:13 +00:00
ShowCommandCompletions(c, name)
return true
}
return false
}