etcd/etcdctl/ctlv2/command/rmdir_command.go

55 lines
1.5 KiB
Go
Raw Normal View History

2016-05-13 06:51:39 +03:00
// Copyright 2015 The etcd Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2014-10-23 03:59:29 +04:00
package command
import (
"errors"
2016-06-21 01:06:52 +03:00
"github.com/urfave/cli"
"go.etcd.io/etcd/client/v2"
2014-10-23 03:59:29 +04:00
)
2016-02-21 16:05:03 +03:00
// NewRemoveDirCommand returns the CLI command for "rmdir".
2014-10-23 03:59:29 +04:00
func NewRemoveDirCommand() cli.Command {
return cli.Command{
Name: "rmdir",
Usage: "removes the key if it is an empty directory or a key-value pair",
ArgsUsage: "<key>",
Action: func(c *cli.Context) error {
2015-06-05 23:00:23 +03:00
rmdirCommandFunc(c, mustNewKeyAPI(c))
return nil
2014-10-23 03:59:29 +04:00
},
}
}
2015-06-05 23:00:23 +03:00
// rmdirCommandFunc executes the "rmdir" command.
func rmdirCommandFunc(c *cli.Context, ki client.KeysAPI) {
2014-10-23 03:59:29 +04:00
if len(c.Args()) == 0 {
handleError(c, ExitBadArgs, errors.New("key required"))
2014-10-23 03:59:29 +04:00
}
key := c.Args()[0]
ctx, cancel := contextWithTotalTimeout(c)
resp, err := ki.Delete(ctx, key, &client.DeleteOptions{Dir: true})
cancel()
2015-06-05 23:00:23 +03:00
if err != nil {
handleError(c, ExitServerError, err)
2015-06-05 23:00:23 +03:00
}
if !resp.Node.Dir || c.GlobalString("output") != "simple" {
2015-06-05 23:00:23 +03:00
printResponseKey(resp, c.GlobalString("output"))
}
2014-10-23 03:59:29 +04:00
}