1
0
vault-redux/command/capabilities.go

88 lines
2.1 KiB
Go
Raw Normal View History

2016-03-02 21:42:32 +03:00
package command
import (
"fmt"
"strings"
2016-04-01 20:16:05 +03:00
"github.com/hashicorp/vault/meta"
2016-03-02 21:42:32 +03:00
)
// CapabilitiesCommand is a Command that enables a new endpoint.
type CapabilitiesCommand struct {
2016-04-01 20:16:05 +03:00
meta.Meta
2016-03-02 21:42:32 +03:00
}
func (c *CapabilitiesCommand) Run(args []string) int {
2016-04-01 20:16:05 +03:00
flags := c.Meta.FlagSet("capabilities", meta.FlagSetDefault)
2016-03-02 21:42:32 +03:00
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]
default:
flags.Usage()
c.Ui.Error(fmt.Sprintf("\ncapabilities expects at least one argument"))
return 1
2016-03-02 21:42:32 +03:00
}
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.
If a token is provided as an argument, the '/sys/capabilities' endpoint will be invoked
with the given token; otherwise the '/sys/capabilities-self' endpoint will be invoked
with the client token.
2016-03-02 21:42:32 +03:00
If a token does not have any capability on a given path, or if any of the policies
belonging to the token explicitly have ["deny"] capability, or if the argument path
is invalid, this command will respond with a ["deny"].
2016-03-02 21:42:32 +03:00
General Options:
` + meta.GeneralOptionsUsage()
2016-03-02 21:42:32 +03:00
return strings.TrimSpace(helpText)
}