2017-09-05 03:50:13 +00:00
|
|
|
package command
|
2015-04-21 18:24:27 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
2017-09-08 02:05:54 +00:00
|
|
|
"io"
|
2017-09-05 03:50:13 +00:00
|
|
|
"os"
|
2015-04-21 18:24:27 +00:00
|
|
|
"sort"
|
|
|
|
"strings"
|
2017-09-08 02:05:54 +00:00
|
|
|
"text/tabwriter"
|
2015-04-21 18:24:27 +00:00
|
|
|
|
2018-04-09 20:18:17 +00:00
|
|
|
"github.com/fatih/color"
|
2018-05-23 20:45:17 +00:00
|
|
|
"github.com/hashicorp/vault/api"
|
2018-03-16 16:31:26 +00:00
|
|
|
"github.com/hashicorp/vault/command/token"
|
2018-04-05 17:28:02 +00:00
|
|
|
colorable "github.com/mattn/go-colorable"
|
2015-04-21 18:24:27 +00:00
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
)
|
|
|
|
|
2018-02-12 23:12:16 +00:00
|
|
|
type VaultUI struct {
|
|
|
|
cli.Ui
|
2018-04-09 20:18:17 +00:00
|
|
|
format string
|
2018-02-12 23:12:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// setupEnv parses args and may replace them and sets some env vars to known
|
|
|
|
// values based on format options
|
2018-05-23 20:45:17 +00:00
|
|
|
func setupEnv(args []string) (retArgs []string, format string) {
|
2018-02-12 23:12:16 +00:00
|
|
|
var nextArgFormat bool
|
|
|
|
|
2017-09-05 03:50:13 +00:00
|
|
|
for _, arg := range args {
|
2018-02-12 23:12:16 +00:00
|
|
|
if nextArgFormat {
|
|
|
|
nextArgFormat = false
|
|
|
|
format = arg
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2017-09-05 03:50:13 +00:00
|
|
|
if arg == "--" {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2018-04-10 01:03:11 +00:00
|
|
|
if len(args) == 1 && (arg == "-v" || arg == "-version" || arg == "--version") {
|
2017-09-05 03:50:13 +00:00
|
|
|
args = []string{"version"}
|
|
|
|
break
|
|
|
|
}
|
2018-02-12 23:12:16 +00:00
|
|
|
|
|
|
|
// Parse a given flag here, which overrides the env var
|
|
|
|
if strings.HasPrefix(arg, "--format=") {
|
|
|
|
format = strings.TrimPrefix(arg, "--format=")
|
|
|
|
}
|
|
|
|
if strings.HasPrefix(arg, "-format=") {
|
|
|
|
format = strings.TrimPrefix(arg, "-format=")
|
|
|
|
}
|
|
|
|
// For backwards compat, it could be specified without an equal sign
|
|
|
|
if arg == "-format" || arg == "--format" {
|
|
|
|
nextArgFormat = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
envVaultFormat := os.Getenv(EnvVaultFormat)
|
|
|
|
// If we did not parse a value, fetch the env var
|
|
|
|
if format == "" && envVaultFormat != "" {
|
|
|
|
format = envVaultFormat
|
|
|
|
}
|
|
|
|
// Lowercase for consistency
|
|
|
|
format = strings.ToLower(format)
|
|
|
|
if format == "" {
|
|
|
|
format = "table"
|
|
|
|
}
|
|
|
|
|
2018-05-23 20:45:17 +00:00
|
|
|
return args, format
|
2018-02-12 23:12:16 +00:00
|
|
|
}
|
|
|
|
|
2018-03-16 16:31:26 +00:00
|
|
|
type RunOptions struct {
|
|
|
|
TokenHelper token.TokenHelper
|
|
|
|
Stdout io.Writer
|
|
|
|
Stderr io.Writer
|
2018-03-16 17:14:32 +00:00
|
|
|
Address string
|
2018-05-23 20:45:17 +00:00
|
|
|
Client *api.Client
|
2018-03-16 16:31:26 +00:00
|
|
|
}
|
|
|
|
|
2018-02-12 23:12:16 +00:00
|
|
|
func Run(args []string) int {
|
2018-03-16 15:31:00 +00:00
|
|
|
return RunCustom(args, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RunCustom allows passing in a base command template to pass to other
|
|
|
|
// commands. Currenty, this is only used for setting a custom token helper.
|
2018-03-16 16:31:26 +00:00
|
|
|
func RunCustom(args []string, runOpts *RunOptions) int {
|
|
|
|
if runOpts == nil {
|
|
|
|
runOpts = &RunOptions{}
|
|
|
|
}
|
2018-03-16 15:31:00 +00:00
|
|
|
|
2018-05-23 20:45:17 +00:00
|
|
|
var format string
|
|
|
|
args, format = setupEnv(args)
|
2018-02-12 23:12:16 +00:00
|
|
|
|
|
|
|
// Don't use color if disabled
|
2018-04-09 20:18:17 +00:00
|
|
|
useColor := true
|
|
|
|
if os.Getenv(EnvVaultCLINoColor) != "" || color.NoColor {
|
|
|
|
useColor = false
|
|
|
|
}
|
|
|
|
|
|
|
|
if runOpts.Stdout == nil {
|
|
|
|
runOpts.Stdout = os.Stdout
|
|
|
|
}
|
|
|
|
if runOpts.Stderr == nil {
|
|
|
|
runOpts.Stderr = os.Stderr
|
2018-02-12 23:12:16 +00:00
|
|
|
}
|
|
|
|
|
2018-04-09 20:18:17 +00:00
|
|
|
// Only use colored UI if stdout is a tty, and not disabled
|
|
|
|
if useColor && format == "table" {
|
|
|
|
if f, ok := runOpts.Stdout.(*os.File); ok {
|
|
|
|
runOpts.Stdout = colorable.NewColorable(f)
|
|
|
|
}
|
|
|
|
if f, ok := runOpts.Stderr.(*os.File); ok {
|
|
|
|
runOpts.Stderr = colorable.NewColorable(f)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
runOpts.Stdout = colorable.NewNonColorable(runOpts.Stdout)
|
|
|
|
runOpts.Stderr = colorable.NewNonColorable(runOpts.Stderr)
|
|
|
|
}
|
2018-02-12 23:12:16 +00:00
|
|
|
|
|
|
|
ui := &VaultUI{
|
2018-04-09 20:18:17 +00:00
|
|
|
Ui: &cli.ColoredUi{
|
|
|
|
ErrorColor: cli.UiColorRed,
|
|
|
|
WarnColor: cli.UiColorYellow,
|
|
|
|
Ui: &cli.BasicUi{
|
|
|
|
Writer: runOpts.Stdout,
|
|
|
|
ErrorWriter: runOpts.Stderr,
|
|
|
|
},
|
2018-02-12 23:12:16 +00:00
|
|
|
},
|
2018-04-09 20:18:17 +00:00
|
|
|
format: format,
|
2018-02-12 23:12:16 +00:00
|
|
|
}
|
2018-04-09 20:18:17 +00:00
|
|
|
|
2018-02-12 23:12:16 +00:00
|
|
|
serverCmdUi := &VaultUI{
|
2018-04-09 20:18:17 +00:00
|
|
|
Ui: &cli.ColoredUi{
|
|
|
|
ErrorColor: cli.UiColorRed,
|
|
|
|
WarnColor: cli.UiColorYellow,
|
|
|
|
Ui: &cli.BasicUi{
|
|
|
|
Writer: runOpts.Stdout,
|
|
|
|
},
|
2018-02-12 23:12:16 +00:00
|
|
|
},
|
2018-04-09 20:18:17 +00:00
|
|
|
format: format,
|
2018-02-12 23:12:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if _, ok := Formatters[format]; !ok {
|
|
|
|
ui.Error(fmt.Sprintf("Invalid output format: %s", format))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2018-03-16 16:31:26 +00:00
|
|
|
initCommands(ui, serverCmdUi, runOpts)
|
2018-02-12 23:12:16 +00:00
|
|
|
|
2017-09-22 00:51:25 +00:00
|
|
|
// Calculate hidden commands from the deprecated ones
|
|
|
|
hiddenCommands := make([]string, 0, len(DeprecatedCommands)+1)
|
|
|
|
for k := range DeprecatedCommands {
|
|
|
|
hiddenCommands = append(hiddenCommands, k)
|
|
|
|
}
|
|
|
|
hiddenCommands = append(hiddenCommands, "version")
|
|
|
|
|
2017-09-05 03:50:13 +00:00
|
|
|
cli := &cli.CLI{
|
|
|
|
Name: "vault",
|
|
|
|
Args: args,
|
|
|
|
Commands: Commands,
|
2017-09-22 00:51:25 +00:00
|
|
|
HelpFunc: groupedHelpFunc(
|
|
|
|
cli.BasicHelpFunc("vault"),
|
2017-09-08 02:05:54 +00:00
|
|
|
),
|
2018-03-16 16:59:52 +00:00
|
|
|
HelpWriter: runOpts.Stderr,
|
2017-09-22 00:51:25 +00:00
|
|
|
HiddenCommands: hiddenCommands,
|
2017-09-05 03:50:13 +00:00
|
|
|
Autocomplete: true,
|
|
|
|
AutocompleteNoDefaultFlags: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
exitCode, err := cli.Run()
|
|
|
|
if err != nil {
|
2018-03-16 16:31:26 +00:00
|
|
|
fmt.Fprintf(runOpts.Stderr, "Error executing CLI: %s\n", err.Error())
|
2017-09-05 03:50:13 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
return exitCode
|
|
|
|
}
|
|
|
|
|
2017-09-08 02:05:54 +00:00
|
|
|
var commonCommands = []string{
|
|
|
|
"read",
|
|
|
|
"write",
|
|
|
|
"delete",
|
|
|
|
"list",
|
|
|
|
"login",
|
2018-07-25 02:02:27 +00:00
|
|
|
"agent",
|
2017-09-08 02:05:54 +00:00
|
|
|
"server",
|
|
|
|
"status",
|
|
|
|
"unwrap",
|
2015-04-21 18:24:27 +00:00
|
|
|
}
|
|
|
|
|
2017-09-08 02:05:54 +00:00
|
|
|
func groupedHelpFunc(f cli.HelpFunc) cli.HelpFunc {
|
|
|
|
return func(commands map[string]cli.CommandFactory) string {
|
|
|
|
var b bytes.Buffer
|
|
|
|
tw := tabwriter.NewWriter(&b, 0, 2, 6, ' ', 0)
|
2015-04-21 18:24:27 +00:00
|
|
|
|
2017-09-08 02:05:54 +00:00
|
|
|
fmt.Fprintf(tw, "Usage: vault <command> [args]\n\n")
|
|
|
|
fmt.Fprintf(tw, "Common commands:\n")
|
|
|
|
for _, v := range commonCommands {
|
|
|
|
printCommand(tw, v, commands[v])
|
2015-04-21 18:24:27 +00:00
|
|
|
}
|
|
|
|
|
2017-09-08 02:05:54 +00:00
|
|
|
otherCommands := make([]string, 0, len(commands))
|
|
|
|
for k := range commands {
|
|
|
|
found := false
|
|
|
|
for _, v := range commonCommands {
|
|
|
|
if k == v {
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !found {
|
|
|
|
otherCommands = append(otherCommands, k)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sort.Strings(otherCommands)
|
|
|
|
|
|
|
|
fmt.Fprintf(tw, "\n")
|
|
|
|
fmt.Fprintf(tw, "Other commands:\n")
|
|
|
|
for _, v := range otherCommands {
|
|
|
|
printCommand(tw, v, commands[v])
|
2015-04-21 18:24:27 +00:00
|
|
|
}
|
|
|
|
|
2017-09-08 02:05:54 +00:00
|
|
|
tw.Flush()
|
|
|
|
|
|
|
|
return strings.TrimSpace(b.String())
|
2015-04-21 18:24:27 +00:00
|
|
|
}
|
2017-09-08 02:05:54 +00:00
|
|
|
}
|
2015-04-21 18:24:27 +00:00
|
|
|
|
2017-09-08 02:05:54 +00:00
|
|
|
func printCommand(w io.Writer, name string, cmdFn cli.CommandFactory) {
|
|
|
|
cmd, err := cmdFn()
|
|
|
|
if err != nil {
|
|
|
|
panic(fmt.Sprintf("failed to load %q command: %s", name, err))
|
|
|
|
}
|
|
|
|
fmt.Fprintf(w, " %s\t%s\n", name, cmd.Synopsis())
|
2015-04-21 18:24:27 +00:00
|
|
|
}
|