-
Notifications
You must be signed in to change notification settings - Fork 21
/
remove.go
69 lines (53 loc) · 1.31 KB
/
remove.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package commands
import (
"fmt"
"io"
"os"
"github.com/spf13/cobra"
)
var (
// alias for remove
deleteCmd = &cobra.Command{
Hidden: true,
Use: "delete",
Short: "Remove a file from hoarder storage",
Long: ``,
Run: remove,
}
// alias for remove
destroyCmd = &cobra.Command{
Hidden: true,
Use: "destroy",
Short: "Remove a file from hoarder storage",
Long: ``,
Run: remove,
}
//
removeCmd = &cobra.Command{
Use: "remove",
Short: "Remove a file from hoarder storage",
Long: ``,
Run: remove,
}
)
// init
func init() {
includeRemoveFlags(deleteCmd)
includeRemoveFlags(destroyCmd)
includeRemoveFlags(removeCmd)
}
func includeRemoveFlags(cmd *cobra.Command) {
cmd.Flags().StringVarP(&key, "key", "k", "", "The key to remove the data by")
cmd.Flags().BoolVarP(&verbose, "verbose", "v", false, "Print more information about request")
cmd.Flags().BoolVarP(&insecure, "insecure", "i", insecure, "Whether or not to ignore hoarder certificate.")
}
// remove utilizes the api to remove a key and associated data
func remove(ccmd *cobra.Command, args []string) {
// handle any missing args
switch {
case key == "":
fmt.Fprintln(os.Stderr, "Missing key - please provide the key for the record you'd like to remove")
return
}
io.Copy(os.Stdout, rest("DELETE", "/"+key, nil))
}