2015-04-03 05:42:05 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2015-06-18 22:56:42 +00:00
|
|
|
// PathHelpCommand is a Command that lists the mounts.
|
|
|
|
type PathHelpCommand struct {
|
2015-04-03 05:42:05 +00:00
|
|
|
Meta
|
|
|
|
}
|
|
|
|
|
2015-06-18 22:56:42 +00:00
|
|
|
func (c *PathHelpCommand) Run(args []string) int {
|
2015-04-03 05:42:05 +00:00
|
|
|
flags := c.Meta.FlagSet("help", FlagSetDefault)
|
|
|
|
flags.Usage = func() { c.Ui.Error(c.Help()) }
|
|
|
|
if err := flags.Parse(args); err != nil {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
args = flags.Args()
|
|
|
|
if len(args) != 1 {
|
|
|
|
flags.Usage()
|
|
|
|
c.Ui.Error("\nhelp expects a single argument")
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
path := args[0]
|
|
|
|
|
|
|
|
client, err := c.Client()
|
|
|
|
if err != nil {
|
|
|
|
c.Ui.Error(fmt.Sprintf(
|
|
|
|
"Error initializing client: %s", err))
|
|
|
|
return 2
|
|
|
|
}
|
|
|
|
|
|
|
|
help, err := client.Help(path)
|
|
|
|
if err != nil {
|
2015-06-18 22:56:42 +00:00
|
|
|
if strings.Contains(err.Error(), "Vault is sealed") {
|
|
|
|
c.Ui.Error(`Error: Vault is sealed.
|
|
|
|
|
|
|
|
The path-help command requires the Vault to be unsealed so that
|
|
|
|
mount points of secret backends are known.`)
|
|
|
|
} else {
|
|
|
|
c.Ui.Error(fmt.Sprintf(
|
|
|
|
"Error reading help: %s", err))
|
|
|
|
}
|
2015-04-03 05:42:05 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Ui.Output(help.Help)
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2015-06-18 22:56:42 +00:00
|
|
|
func (c *PathHelpCommand) Synopsis() string {
|
2015-04-03 05:42:05 +00:00
|
|
|
return "Look up the help for a path"
|
|
|
|
}
|
|
|
|
|
2015-06-18 22:56:42 +00:00
|
|
|
func (c *PathHelpCommand) Help() string {
|
2015-04-03 05:42:05 +00:00
|
|
|
helpText := `
|
2015-06-18 22:56:42 +00:00
|
|
|
Usage: vault path-help [options] path
|
2015-04-03 05:42:05 +00:00
|
|
|
|
|
|
|
Look up the help for a path.
|
|
|
|
|
|
|
|
All endpoints in Vault from system paths, secret paths, and credential
|
|
|
|
providers provide built-in help. This command looks up and outputs that
|
|
|
|
help.
|
|
|
|
|
2015-06-18 22:56:42 +00:00
|
|
|
The command requires that the Vault be unsealed, because otherwise
|
|
|
|
the mount points of the backends are unknown.
|
|
|
|
|
2015-04-03 05:42:05 +00:00
|
|
|
General Options:
|
|
|
|
|
2015-06-30 19:01:23 +00:00
|
|
|
` + generalOptionsUsage()
|
2015-04-03 05:42:05 +00:00
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|