open-vault/command/path_help.go

103 lines
2.2 KiB
Go
Raw Normal View History

2015-04-03 05:42:05 +00:00
package command
import (
"fmt"
"strings"
2016-04-01 17:16:05 +00:00
2017-09-05 04:02:55 +00:00
"github.com/mitchellh/cli"
"github.com/posener/complete"
2015-04-03 05:42:05 +00:00
)
2017-09-05 04:02:55 +00:00
var _ cli.Command = (*PathHelpCommand)(nil)
var _ cli.CommandAutocomplete = (*PathHelpCommand)(nil)
var pathHelpVaultSealedMessage = strings.TrimSpace(`
Error: Vault is sealed.
The "path-help" command requires the Vault to be unsealed so that the mount
2017-09-08 02:00:05 +00:00
points of the secret engines are known.
2017-09-05 04:02:55 +00:00
`)
type PathHelpCommand struct {
2017-09-05 04:02:55 +00:00
*BaseCommand
}
func (c *PathHelpCommand) Synopsis() string {
2017-09-08 02:00:05 +00:00
return "Retrieve API help for paths"
2017-09-05 04:02:55 +00:00
}
func (c *PathHelpCommand) Help() string {
helpText := `
2017-09-08 02:00:05 +00:00
Usage: vault path-help [options] PATH
2017-09-05 04:02:55 +00:00
Retrieves API help for paths. All endpoints in Vault provide built-in help
2017-09-08 02:00:05 +00:00
in markdown format. This includes system paths, secret engines, and auth
methods.
2017-09-05 04:02:55 +00:00
2017-09-08 02:00:05 +00:00
Get help for the thing mounted at database/:
2017-09-05 04:02:55 +00:00
$ vault path-help database/
The response object will return additional paths to retrieve help:
$ vault path-help database/roles/
2017-09-08 02:00:05 +00:00
Each secret engine produces different help output.
2017-09-05 04:02:55 +00:00
` + c.Flags().Help()
return strings.TrimSpace(helpText)
}
func (c *PathHelpCommand) Flags() *FlagSets {
return c.flagSet(FlagSetHTTP)
}
func (c *PathHelpCommand) AutocompleteArgs() complete.Predictor {
return complete.PredictAnything // TODO: programatic way to invoke help
}
func (c *PathHelpCommand) AutocompleteFlags() complete.Flags {
return c.Flags().Completions()
2015-04-03 05:42:05 +00:00
}
func (c *PathHelpCommand) Run(args []string) int {
2017-09-05 04:02:55 +00:00
f := c.Flags()
if err := f.Parse(args); err != nil {
c.UI.Error(err.Error())
2015-04-03 05:42:05 +00:00
return 1
}
2017-09-05 04:02:55 +00:00
args = f.Args()
2017-09-08 02:00:05 +00:00
switch {
case len(args) < 1:
c.UI.Error(fmt.Sprintf("Not enough arguments (expected 1, got %d)", len(args)))
2015-04-03 05:42:05 +00:00
return 1
2017-09-08 02:00:05 +00:00
case len(args) > 1:
2017-09-05 04:02:55 +00:00
c.UI.Error(fmt.Sprintf("Too many arguments (expected 1, got %d)", len(args)))
return 1
}
2015-04-03 05:42:05 +00:00
client, err := c.Client()
if err != nil {
2017-09-05 04:02:55 +00:00
c.UI.Error(err.Error())
2015-04-03 05:42:05 +00:00
return 2
}
2017-09-08 02:00:05 +00:00
path := sanitizePath(args[0])
2015-04-03 05:42:05 +00:00
help, err := client.Help(path)
if err != nil {
if strings.Contains(err.Error(), "Vault is sealed") {
2017-09-05 04:02:55 +00:00
c.UI.Error(pathHelpVaultSealedMessage)
} else {
2017-09-05 04:02:55 +00:00
c.UI.Error(fmt.Sprintf("Error retrieving help: %s", err))
}
2017-09-05 04:02:55 +00:00
return 2
2015-04-03 05:42:05 +00:00
}
2017-09-05 04:02:55 +00:00
c.UI.Output(help.Help)
2015-04-03 05:42:05 +00:00
return 0
}