1
0
vault-redux/command/capabilities.go

82 lines
1.8 KiB
Go
Raw Normal View History

2016-03-02 21:42:32 +03:00
package command
import (
"fmt"
"strings"
)
// CapabilitiesCommand is a Command that enables a new endpoint.
type CapabilitiesCommand struct {
Meta
}
func (c *CapabilitiesCommand) Run(args []string) int {
flags := c.Meta.FlagSet("capabilities", FlagSetDefault)
flags.Usage = func() { c.Ui.Error(c.Help()) }
if err := flags.Parse(args); err != nil {
return 1
}
args = flags.Args()
if len(args) > 2 {
flags.Usage()
c.Ui.Error(fmt.Sprintf(
"\ncapabilities expects at most two arguments"))
return 1
}
var token string
var path string
switch {
case len(args) == 1:
2016-03-02 21:42:32 +03:00
path = args[0]
case len(args) == 2:
2016-03-02 21:42:32 +03:00
token = args[0]
path = args[1]
}
client, err := c.Client()
if err != nil {
c.Ui.Error(fmt.Sprintf(
"Error initializing client: %s", err))
return 2
}
var capabilities []string
2016-03-02 21:42:32 +03:00
if token == "" {
capabilities, err = client.Sys().CapabilitiesSelf(path)
2016-03-02 21:42:32 +03:00
} else {
capabilities, err = client.Sys().Capabilities(token, path)
2016-03-02 21:42:32 +03:00
}
if err != nil {
c.Ui.Error(fmt.Sprintf(
"Error retrieving capabilities: %s", err))
return 1
}
c.Ui.Output(fmt.Sprintf("Capabilities: %s", capabilities))
2016-03-02 21:42:32 +03:00
return 0
}
func (c *CapabilitiesCommand) Synopsis() string {
return "Fetch the capabilities of a token on a given path"
2016-03-02 21:42:32 +03:00
}
func (c *CapabilitiesCommand) Help() string {
helpText := `
Usage: vault capabilities [options] [token] path
Fetch the capabilities of a token on a given path.
2016-03-03 19:54:14 +03:00
If a token is provided to the command, API '/sys/capabilities' will be invoked
with the given token; otherwise API '/sys/capabilities-self' will be invoked with
the client token.
2016-03-02 21:42:32 +03:00
Note that this command will respond with a ["deny"] capability if the given path
is invalid.
2016-03-02 21:42:32 +03:00
General Options:
` + generalOptionsUsage()
return strings.TrimSpace(helpText)
}