open-vault/command/status.go

90 lines
1.7 KiB
Go
Raw Normal View History

2015-03-13 18:33:17 +00:00
package command
import (
"fmt"
"strings"
2017-09-05 04:04:39 +00:00
"github.com/mitchellh/cli"
"github.com/posener/complete"
2015-03-13 18:33:17 +00:00
)
2017-09-05 04:04:39 +00:00
var _ cli.Command = (*StatusCommand)(nil)
var _ cli.CommandAutocomplete = (*StatusCommand)(nil)
2015-04-20 19:11:21 +00:00
type StatusCommand struct {
2017-09-05 04:04:39 +00:00
*BaseCommand
}
func (c *StatusCommand) Synopsis() string {
2017-09-08 02:03:57 +00:00
return "Print seal and HA status"
2017-09-05 04:04:39 +00:00
}
func (c *StatusCommand) Help() string {
helpText := `
Usage: vault status [options]
Prints the current state of Vault including whether it is sealed and if HA
mode is enabled. This command prints regardless of whether the Vault is
sealed.
The exit code reflects the seal status:
- 0 - unsealed
- 1 - error
- 2 - sealed
` + c.Flags().Help()
return strings.TrimSpace(helpText)
}
func (c *StatusCommand) Flags() *FlagSets {
return c.flagSet(FlagSetHTTP)
}
func (c *StatusCommand) AutocompleteArgs() complete.Predictor {
return complete.PredictNothing
}
func (c *StatusCommand) AutocompleteFlags() complete.Flags {
return c.Flags().Completions()
2015-03-13 18:33:17 +00:00
}
2015-04-20 19:11:21 +00:00
func (c *StatusCommand) Run(args []string) int {
2017-09-05 04:04:39 +00:00
f := c.Flags()
if err := f.Parse(args); err != nil {
c.UI.Error(err.Error())
return 1
}
args = f.Args()
if len(args) > 0 {
c.UI.Error(fmt.Sprintf("Too many arguments (expected 0, got %d)", len(args)))
return 1
2015-03-13 18:33:17 +00:00
}
client, err := c.Client()
if err != nil {
2017-09-05 04:04:39 +00:00
c.UI.Error(err.Error())
// We return 2 everywhere else, but 2 is reserved for "sealed" here
return 1
2015-03-13 18:33:17 +00:00
}
2017-09-21 17:38:39 +00:00
status, err := client.Sys().SealStatus()
2015-03-13 18:33:17 +00:00
if err != nil {
2017-09-05 04:04:39 +00:00
c.UI.Error(fmt.Sprintf("Error checking seal status: %s", err))
return 1
2015-03-13 18:33:17 +00:00
}
2017-09-21 17:38:39 +00:00
// Do not return the int here, since we want to return a custom error code
// depending on the seal status.
OutputSealStatus(c.UI, client, status)
2015-03-13 18:33:17 +00:00
2017-09-21 17:38:39 +00:00
if status.Sealed {
return 2
2015-03-13 18:33:17 +00:00
}
2017-09-05 04:04:39 +00:00
return 0
2015-03-13 18:33:17 +00:00
}