rmdir_command.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // Copyright 2015 The etcd Authors
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package command
  15. import (
  16. "errors"
  17. "github.com/urfave/cli"
  18. "go.etcd.io/etcd/client"
  19. )
  20. // NewRemoveDirCommand returns the CLI command for "rmdir".
  21. func NewRemoveDirCommand() cli.Command {
  22. return cli.Command{
  23. Name: "rmdir",
  24. Usage: "removes the key if it is an empty directory or a key-value pair",
  25. ArgsUsage: "<key>",
  26. Action: func(c *cli.Context) error {
  27. rmdirCommandFunc(c, mustNewKeyAPI(c))
  28. return nil
  29. },
  30. }
  31. }
  32. // rmdirCommandFunc executes the "rmdir" command.
  33. func rmdirCommandFunc(c *cli.Context, ki client.KeysAPI) {
  34. if len(c.Args()) == 0 {
  35. handleError(c, ExitBadArgs, errors.New("key required"))
  36. }
  37. key := c.Args()[0]
  38. ctx, cancel := contextWithTotalTimeout(c)
  39. resp, err := ki.Delete(ctx, key, &client.DeleteOptions{Dir: true})
  40. cancel()
  41. if err != nil {
  42. handleError(c, ExitServerError, err)
  43. }
  44. if !resp.Node.Dir || c.GlobalString("output") != "simple" {
  45. printResponseKey(resp, c.GlobalString("output"))
  46. }
  47. }