2017-10-17 11:22:23 +00:00
|
|
|
package put
|
2016-09-26 15:12:29 +00:00
|
|
|
|
|
|
|
import (
|
2017-01-04 22:05:08 +00:00
|
|
|
"encoding/base64"
|
2017-10-11 12:51:30 +00:00
|
|
|
"flag"
|
2016-09-26 15:12:29 +00:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/api"
|
2017-10-11 12:51:30 +00:00
|
|
|
"github.com/hashicorp/consul/command/flags"
|
2018-05-21 19:32:25 +00:00
|
|
|
"github.com/hashicorp/consul/command/helpers"
|
2017-10-11 12:51:30 +00:00
|
|
|
"github.com/mitchellh/cli"
|
2016-09-26 15:12:29 +00:00
|
|
|
)
|
|
|
|
|
2017-10-11 12:51:30 +00:00
|
|
|
func New(ui cli.Ui) *cmd {
|
|
|
|
c := &cmd{UI: ui}
|
2017-10-11 22:14:27 +00:00
|
|
|
c.init()
|
2017-10-11 12:51:30 +00:00
|
|
|
return c
|
|
|
|
}
|
2016-09-26 15:12:29 +00:00
|
|
|
|
2017-10-11 12:51:30 +00:00
|
|
|
type cmd struct {
|
|
|
|
UI cli.Ui
|
|
|
|
flags *flag.FlagSet
|
|
|
|
http *flags.HTTPFlags
|
2017-10-17 13:44:20 +00:00
|
|
|
help string
|
2017-10-11 12:51:18 +00:00
|
|
|
|
|
|
|
// flags
|
|
|
|
cas bool
|
2017-10-11 12:51:30 +00:00
|
|
|
kvflags uint64
|
2017-10-11 12:51:18 +00:00
|
|
|
base64encoded bool
|
|
|
|
modifyIndex uint64
|
|
|
|
session string
|
|
|
|
acquire bool
|
|
|
|
release bool
|
2017-10-11 12:51:30 +00:00
|
|
|
|
|
|
|
// testStdin is the input for testing.
|
|
|
|
testStdin io.Reader
|
2017-10-11 12:51:18 +00:00
|
|
|
}
|
|
|
|
|
2017-10-11 22:14:27 +00:00
|
|
|
func (c *cmd) init() {
|
2017-10-11 12:51:30 +00:00
|
|
|
c.flags = flag.NewFlagSet("", flag.ContinueOnError)
|
|
|
|
c.flags.BoolVar(&c.cas, "cas", false,
|
2017-10-11 12:51:18 +00:00
|
|
|
"Perform a Check-And-Set operation. Specifying this value also "+
|
|
|
|
"requires the -modify-index flag to be set. The default value "+
|
|
|
|
"is false.")
|
2017-10-11 12:51:30 +00:00
|
|
|
c.flags.Uint64Var(&c.kvflags, "flags", 0,
|
2017-10-11 12:51:18 +00:00
|
|
|
"Unsigned integer value to assign to this key-value pair. This "+
|
|
|
|
"value is not read by Consul, so clients can use this value however "+
|
|
|
|
"makes sense for their use case. The default value is 0 (no flags).")
|
2017-10-11 12:51:30 +00:00
|
|
|
c.flags.BoolVar(&c.base64encoded, "base64", false,
|
2017-10-11 12:51:18 +00:00
|
|
|
"Treat the data as base 64 encoded. The default value is false.")
|
2017-10-11 12:51:30 +00:00
|
|
|
c.flags.Uint64Var(&c.modifyIndex, "modify-index", 0,
|
2017-10-11 12:51:18 +00:00
|
|
|
"Unsigned integer representing the ModifyIndex of the key. This is "+
|
|
|
|
"used in combination with the -cas flag.")
|
2017-10-11 12:51:30 +00:00
|
|
|
c.flags.StringVar(&c.session, "session", "",
|
2017-10-11 12:51:18 +00:00
|
|
|
"User-defined identifer for this session as a string. This is commonly "+
|
|
|
|
"used with the -acquire and -release operations to build robust locking, "+
|
|
|
|
"but it can be set on any key. The default value is empty (no session).")
|
2017-10-11 12:51:30 +00:00
|
|
|
c.flags.BoolVar(&c.acquire, "acquire", false,
|
2017-10-11 12:51:18 +00:00
|
|
|
"Obtain a lock on the key. If the key does not exist, this operation "+
|
|
|
|
"will create the key and obtain the lock. The session must already "+
|
|
|
|
"exist and be specified via the -session flag. The default value is false.")
|
2017-10-11 12:51:30 +00:00
|
|
|
c.flags.BoolVar(&c.release, "release", false,
|
2017-10-11 12:51:18 +00:00
|
|
|
"Forfeit the lock on the key at the given path. This requires the "+
|
|
|
|
"-session flag to be set. The key must be held by the session in order to "+
|
|
|
|
"be unlocked. The default value is false.")
|
2016-09-26 15:12:29 +00:00
|
|
|
|
2017-10-11 12:51:30 +00:00
|
|
|
c.http = &flags.HTTPFlags{}
|
|
|
|
flags.Merge(c.flags, c.http.ClientFlags())
|
|
|
|
flags.Merge(c.flags, c.http.ServerFlags())
|
2019-12-06 16:14:56 +00:00
|
|
|
flags.Merge(c.flags, c.http.NamespaceFlags())
|
2017-10-17 22:00:01 +00:00
|
|
|
c.help = flags.Usage(help, c.flags)
|
2016-09-26 15:12:29 +00:00
|
|
|
}
|
|
|
|
|
2017-10-11 12:51:30 +00:00
|
|
|
func (c *cmd) Run(args []string) int {
|
|
|
|
if err := c.flags.Parse(args); err != nil {
|
2016-09-26 15:12:29 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for arg validation
|
2017-10-11 12:51:30 +00:00
|
|
|
args = c.flags.Args()
|
2016-09-26 15:12:29 +00:00
|
|
|
key, data, err := c.dataFromArgs(args)
|
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error! %s", err))
|
2016-09-26 15:12:29 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-01-04 22:05:08 +00:00
|
|
|
dataBytes := []byte(data)
|
2017-10-11 12:51:18 +00:00
|
|
|
if c.base64encoded {
|
2017-01-04 22:05:08 +00:00
|
|
|
dataBytes, err = base64.StdEncoding.DecodeString(data)
|
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error! Cannot base 64 decode data: %s", err))
|
2017-01-04 22:05:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-19 16:56:00 +00:00
|
|
|
// Session is required for release or acquire
|
2017-10-11 12:51:18 +00:00
|
|
|
if (c.release || c.acquire) && c.session == "" {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error("Error! Missing -session (required with -acquire and -release)")
|
2016-09-26 15:12:29 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2016-09-26 23:06:32 +00:00
|
|
|
// ModifyIndex is required for CAS
|
2017-10-11 12:51:18 +00:00
|
|
|
if c.cas && c.modifyIndex == 0 {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error("Must specify -modify-index with -cas!")
|
2016-09-26 23:06:32 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2016-09-26 15:12:29 +00:00
|
|
|
// Create and test the HTTP client
|
2017-10-11 12:51:30 +00:00
|
|
|
client, err := c.http.APIClient()
|
2016-09-26 15:12:29 +00:00
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err))
|
2016-09-26 15:12:29 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
pair := &api.KVPair{
|
|
|
|
Key: key,
|
2017-10-11 12:51:18 +00:00
|
|
|
ModifyIndex: c.modifyIndex,
|
2017-10-11 12:51:30 +00:00
|
|
|
Flags: c.kvflags,
|
2017-01-04 22:05:08 +00:00
|
|
|
Value: dataBytes,
|
2017-10-11 12:51:18 +00:00
|
|
|
Session: c.session,
|
2016-09-26 15:12:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
switch {
|
2017-10-11 12:51:18 +00:00
|
|
|
case c.cas:
|
2017-02-09 00:26:24 +00:00
|
|
|
ok, _, err := client.KV().CAS(pair, nil)
|
2016-09-26 15:12:29 +00:00
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error! Did not write to %s: %s", key, err))
|
2016-09-26 15:12:29 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
if !ok {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error! Did not write to %s: CAS failed", key))
|
2016-09-26 15:12:29 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Info(fmt.Sprintf("Success! Data written to: %s", key))
|
2016-09-26 15:12:29 +00:00
|
|
|
return 0
|
2017-10-11 12:51:18 +00:00
|
|
|
case c.acquire:
|
2017-02-09 00:26:24 +00:00
|
|
|
ok, _, err := client.KV().Acquire(pair, nil)
|
2016-09-26 15:12:29 +00:00
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error! Failed writing data: %s", err))
|
2016-09-26 15:12:29 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
if !ok {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error("Error! Did not acquire lock")
|
2016-09-26 15:12:29 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Info(fmt.Sprintf("Success! Lock acquired on: %s", key))
|
2016-09-26 15:12:29 +00:00
|
|
|
return 0
|
2017-10-11 12:51:18 +00:00
|
|
|
case c.release:
|
2017-02-09 00:26:24 +00:00
|
|
|
ok, _, err := client.KV().Release(pair, nil)
|
2016-09-26 15:12:29 +00:00
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error! Failed writing data: %s", key))
|
2016-09-26 15:12:29 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
if !ok {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error("Error! Did not release lock")
|
2016-09-26 15:12:29 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Info(fmt.Sprintf("Success! Lock released on: %s", key))
|
2016-09-26 15:12:29 +00:00
|
|
|
return 0
|
|
|
|
default:
|
2017-02-09 00:26:24 +00:00
|
|
|
if _, err := client.KV().Put(pair, nil); err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error! Failed writing data: %s", err))
|
2016-09-26 15:12:29 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Info(fmt.Sprintf("Success! Data written to: %s", key))
|
2016-09-26 15:12:29 +00:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-11 12:51:30 +00:00
|
|
|
func (c *cmd) dataFromArgs(args []string) (string, string, error) {
|
2016-09-26 15:12:29 +00:00
|
|
|
switch len(args) {
|
|
|
|
case 0:
|
|
|
|
return "", "", fmt.Errorf("Missing KEY argument")
|
|
|
|
case 1:
|
|
|
|
return args[0], "", nil
|
|
|
|
case 2:
|
|
|
|
default:
|
|
|
|
return "", "", fmt.Errorf("Too many arguments (expected 1 or 2, got %d)", len(args))
|
|
|
|
}
|
|
|
|
|
|
|
|
key := args[0]
|
2018-05-21 19:32:25 +00:00
|
|
|
data, err := helpers.LoadDataSource(args[1], c.testStdin)
|
2016-09-26 15:12:29 +00:00
|
|
|
|
2018-05-21 19:32:25 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", "", err
|
|
|
|
} else {
|
2016-09-26 15:12:29 +00:00
|
|
|
return key, data, nil
|
|
|
|
}
|
|
|
|
}
|
2017-10-11 22:14:27 +00:00
|
|
|
|
2017-10-17 13:44:20 +00:00
|
|
|
func (c *cmd) Synopsis() string {
|
|
|
|
return synopsis
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *cmd) Help() string {
|
|
|
|
return c.help
|
|
|
|
}
|
|
|
|
|
|
|
|
const synopsis = "Sets or updates data in the KV store"
|
|
|
|
const help = `
|
|
|
|
Usage: consul kv put [options] KEY [DATA]
|
2017-10-11 22:14:27 +00:00
|
|
|
|
|
|
|
Writes the data to the given path in the key-value store. The data can be of
|
|
|
|
any type.
|
|
|
|
|
|
|
|
$ consul kv put config/redis/maxconns 5
|
|
|
|
|
|
|
|
The data can also be consumed from a file on disk by prefixing with the "@"
|
|
|
|
symbol. For example:
|
|
|
|
|
|
|
|
$ consul kv put config/program/license @license.lic
|
|
|
|
|
|
|
|
Or it can be read from stdin using the "-" symbol:
|
|
|
|
|
|
|
|
$ echo "abcd1234" | consul kv put config/program/license -
|
|
|
|
|
|
|
|
The DATA argument itself is optional. If omitted, this will create an empty
|
|
|
|
key-value pair at the specified path:
|
|
|
|
|
|
|
|
$ consul kv put webapp/beta/active
|
|
|
|
|
|
|
|
If the -base64 flag is specified, the data will be treated as base 64
|
|
|
|
encoded.
|
|
|
|
|
|
|
|
To perform a Check-And-Set operation, specify the -cas flag with the
|
|
|
|
appropriate -modify-index flag corresponding to the key you want to perform
|
|
|
|
the CAS operation on:
|
|
|
|
|
|
|
|
$ consul kv put -cas -modify-index=844 config/redis/maxconns 5
|
|
|
|
|
2017-10-17 13:44:20 +00:00
|
|
|
Additional flags and more advanced use cases are detailed below.
|
|
|
|
`
|