consul/command/kv/del/kv_delete.go

173 lines
4.1 KiB
Go
Raw Normal View History

// Copyright (c) HashiCorp, Inc.
[COMPLIANCE] License changes (#18443) * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at <Blog URL>, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 * Update copyright file headers to BUSL-1.1 --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
2023-08-11 13:12:13 +00:00
// SPDX-License-Identifier: BUSL-1.1
package del
2016-09-26 15:12:40 +00:00
import (
"flag"
2016-09-26 15:12:40 +00:00
"fmt"
"github.com/hashicorp/consul/api"
"github.com/hashicorp/consul/command/flags"
"github.com/mitchellh/cli"
2016-09-26 15:12:40 +00:00
)
func New(ui cli.Ui) *cmd {
c := &cmd{UI: ui}
c.init()
return c
}
type cmd struct {
UI cli.Ui
flags *flag.FlagSet
http *flags.HTTPFlags
help string
cas bool
modifyIndex uint64
recurse bool
}
func (c *cmd) init() {
c.flags = flag.NewFlagSet("", flag.ContinueOnError)
c.flags.BoolVar(&c.cas, "cas", false,
"Perform a Check-And-Set operation. Specifying this value also requires "+
"the -modify-index flag to be set. The default value is false.")
c.flags.Uint64Var(&c.modifyIndex, "modify-index", 0,
"Unsigned integer representing the ModifyIndex of the key. This is "+
"used in combination with the -cas flag.")
c.flags.BoolVar(&c.recurse, "recurse", false,
"Recursively delete all keys with the path. The default value is false.")
2016-09-26 15:12:40 +00:00
c.http = &flags.HTTPFlags{}
flags.Merge(c.flags, c.http.ClientFlags())
flags.Merge(c.flags, c.http.ServerFlags())
flags.Merge(c.flags, c.http.MultiTenancyFlags())
c.help = flags.Usage(help, c.flags)
2016-09-26 15:12:40 +00:00
}
func (c *cmd) Run(args []string) int {
if err := c.flags.Parse(args); err != nil {
2016-09-26 15:12:40 +00:00
return 1
}
key := ""
// Check for arg validation
args = c.flags.Args()
2016-09-26 15:12:40 +00:00
switch len(args) {
case 0:
key = ""
case 1:
key = args[0]
default:
2017-04-21 00:02:42 +00:00
c.UI.Error(fmt.Sprintf("Too many arguments (expected 1, got %d)", len(args)))
2016-09-26 15:12:40 +00:00
return 1
}
// This is just a "nice" thing to do. Since pairs cannot start with a /, but
// users will likely put "/" or "/foo", lets go ahead and strip that for them
// here.
if len(key) > 0 && key[0] == '/' {
key = key[1:]
}
// If the key is empty and we are not doing a recursive delete, this is an
// error.
if key == "" && !c.recurse {
2017-04-21 00:02:42 +00:00
c.UI.Error("Error! Missing KEY argument")
2016-09-26 15:12:40 +00:00
return 1
}
// ModifyIndex is required for CAS
if c.cas && c.modifyIndex == 0 {
c.UI.Error("Cannot delete a key that does not exist. Provide a -modify-index greater than than 0.")
return 1
}
// Specifying a ModifyIndex for a non-CAS operation is not possible.
if c.modifyIndex != 0 && !c.cas {
2017-04-21 00:02:42 +00:00
c.UI.Error("Cannot specify -modify-index without -cas!")
return 1
}
2016-09-26 15:12:40 +00:00
// It is not valid to use a CAS and recurse in the same call
if c.recurse && c.cas {
2017-04-21 00:02:42 +00:00
c.UI.Error("Cannot specify both -cas and -recurse!")
2016-09-26 15:12:40 +00:00
return 1
}
// Create and test the HTTP client
client, err := c.http.APIClient()
2016-09-26 15:12:40 +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:40 +00:00
return 1
}
switch {
case c.recurse:
if _, err := client.KV().DeleteTree(key, nil); err != nil {
2017-04-21 00:02:42 +00:00
c.UI.Error(fmt.Sprintf("Error! Did not delete prefix %s: %s", key, err))
2016-09-26 15:12:40 +00:00
return 1
}
2017-04-21 00:02:42 +00:00
c.UI.Info(fmt.Sprintf("Success! Deleted keys with prefix: %s", key))
2016-09-26 15:12:40 +00:00
return 0
case c.cas:
2016-09-26 15:12:40 +00:00
pair := &api.KVPair{
Key: key,
ModifyIndex: c.modifyIndex,
2016-09-26 15:12:40 +00:00
}
success, _, err := client.KV().DeleteCAS(pair, nil)
2016-09-26 15:12:40 +00:00
if err != nil {
2017-04-21 00:02:42 +00:00
c.UI.Error(fmt.Sprintf("Error! Did not delete key %s: %s", key, err))
2016-09-26 15:12:40 +00:00
return 1
}
if !success {
2017-04-21 00:02:42 +00:00
c.UI.Error(fmt.Sprintf("Error! Did not delete key %s: CAS failed", key))
2016-09-26 15:12:40 +00:00
return 1
}
2017-04-21 00:02:42 +00:00
c.UI.Info(fmt.Sprintf("Success! Deleted key: %s", key))
2016-09-26 15:12:40 +00:00
return 0
default:
if _, err := client.KV().Delete(key, nil); err != nil {
2017-04-21 00:02:42 +00:00
c.UI.Error(fmt.Sprintf("Error deleting key %s: %s", key, err))
2016-09-26 15:12:40 +00:00
return 1
}
2017-04-21 00:02:42 +00:00
c.UI.Info(fmt.Sprintf("Success! Deleted key: %s", key))
2016-09-26 15:12:40 +00:00
return 0
}
}
func (c *cmd) Synopsis() string {
return synopsis
2016-09-26 15:12:40 +00:00
}
func (c *cmd) Help() string {
return c.help
}
const (
synopsis = "Removes data from the KV store"
help = `
Usage: consul kv delete [options] KEY_OR_PREFIX
Removes the value from Consul's key-value store at the given path. If no
key exists at the path, no action is taken.
To delete the value for the key named "foo" in the key-value store:
$ consul kv delete foo
To delete all keys which start with "foo", specify the -recurse option:
$ consul kv delete -recurse foo
This will delete the keys named "foo", "food", and "foo/bar/zip" if they
existed.
`
)