-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsecrets.go
285 lines (245 loc) · 7.85 KB
/
secrets.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
package secrets
import (
"fmt"
"io"
"os"
"github.com/olekukonko/tablewriter"
"github.com/ovh/okms-cli/cmd/okms/common"
"github.com/ovh/okms-cli/common/flagsmgmt"
"github.com/ovh/okms-cli/common/flagsmgmt/restflags"
"github.com/ovh/okms-cli/common/output"
"github.com/ovh/okms-cli/common/utils"
"github.com/ovh/okms-cli/common/utils/exit"
"github.com/ovh/okms-sdk-go/types"
"github.com/spf13/cobra"
)
func kvGetCmd() *cobra.Command {
var (
version uint32
)
cmd := &cobra.Command{
Use: "get PATH",
Short: "Retrieves the value from KMS's key-value store at the given key name",
Args: cobra.ExactArgs(1),
Run: func(cmd *cobra.Command, args []string) {
var v *uint32
if version != 0 {
v = &version
}
resp := exit.OnErr2(common.Client().GetSecretRequest(cmd.Context(), args[0], v))
if cmd.Flag("output").Value.String() == string(flagsmgmt.JSON_OUTPUT_FORMAT) {
output.JsonPrint(resp)
} else if resp.Data != nil {
renderSecretMetadataTable(resp.Data.Metadata)
if resp.Data.Data != nil {
fmt.Println("Data")
table := tablewriter.NewWriter(os.Stdout)
table.SetHeader([]string{"Key", "Value"})
kvs, ok := (*resp.Data.Data).(map[string]any)
if ok {
for k, v := range kvs {
table.Append([]string{k, fmt.Sprintf("%v", v)})
}
}
table.Render()
}
}
},
}
cmd.Flags().Uint32Var(&version, "version", 0, "If passed, the value at the version number will be returned")
return cmd
}
func kvPutCmd() *cobra.Command {
var (
cas int32
)
cmd := &cobra.Command{
Use: "put PATH [DATA]",
Short: "Writes the data to the given path in the key-value store. (DATA format: bar=baz)",
Args: cobra.MinimumNArgs(2),
Run: func(cmd *cobra.Command, args []string) {
in := io.Reader(os.Stdin)
data, err := restflags.ParseArgsData(in, args[1:])
if err != nil {
fmt.Fprintln(os.Stderr, "Failed to parse K=V data:", err)
os.Exit(1)
}
var c uint32
if cas != -1 {
c = utils.ToUint32(c)
}
body := types.PostSecretRequest{
Data: new(any),
Options: &types.PostSecretOptions{
Cas: &c,
},
}
*(body.Data) = data
resp := exit.OnErr2(common.Client().PostSecretRequest(cmd.Context(), args[0], body))
if cmd.Flag("output").Value.String() == string(flagsmgmt.JSON_OUTPUT_FORMAT) {
output.JsonPrint(resp)
} else {
renderSecretMetadataTable(resp.Data)
}
},
}
cmd.Flags().Int32Var(&cas, "cas", -1, "Specifies to use a Check-And-Set operation. If not set the write will be allowed. If set to 0 a write will only be allowed if the key doesn’t exist. If the index is non-zero the write will only be allowed if the key’s current version matches the version specified in the cas parameter. The default is -1.")
return cmd
}
func kvPatchCmd() *cobra.Command {
var (
cas int32
)
cmd := &cobra.Command{
Use: "patch PATH [DATA]",
Short: "Writes the data to the given path in the key-value store. (DATA format: bar=baz)",
Args: cobra.MinimumNArgs(2),
Run: func(cmd *cobra.Command, args []string) {
in := io.Reader(os.Stdin)
data, err := restflags.ParseArgsData(in, args[1:])
if err != nil {
fmt.Fprintln(os.Stderr, "Failed to parse K=V data:", err)
os.Exit(1)
}
var c uint32
if cas != -1 {
c = utils.ToUint32(cas)
}
body := types.PostSecretRequest{
Data: new(any),
Options: &types.PostSecretOptions{
Cas: &c,
},
}
*(body.Data) = data
resp := exit.OnErr2(common.Client().PatchSecretRequest(cmd.Context(), args[0], body))
if cmd.Flag("output").Value.String() == string(flagsmgmt.JSON_OUTPUT_FORMAT) {
output.JsonPrint(resp)
} else {
renderSecretMetadataTable(resp.Data)
}
},
}
cmd.Flags().Int32Var(&cas, "cas", -1, "Specifies to use a Check-And-Set operation. If not set the write will be allowed. If set to 0 a write will only be allowed if the key doesn’t exist. If the index is non-zero the write will only be allowed if the key’s current version matches the version specified in the cas parameter. The default is -1.")
return cmd
}
func kvDeleteCmd() *cobra.Command {
var (
versions []uint
)
cmd := &cobra.Command{
Use: "delete PATH",
Short: "Deletes the data for the provided version and path in the key-value store.",
Args: cobra.ExactArgs(1),
Run: func(cmd *cobra.Command, args []string) {
if len(versions) == 0 {
exit.OnErr(common.Client().DeleteSecretRequest(cmd.Context(), args[0]))
} else {
exit.OnErr(common.Client().DeleteSecretVersions(cmd.Context(), args[0], utils.ToUint32Array(versions)))
}
},
}
cmd.Flags().UintSliceVar(&versions, "versions", []uint{}, "Specifies the version numbers to delete. (Comma separated list of versions)")
return cmd
}
func kvUndeleteCmd() *cobra.Command {
var (
versions []uint
)
cmd := &cobra.Command{
Use: "undelete PATH",
Short: "Undeletes the data for the provided version and path in the key-value store.",
Args: cobra.ExactArgs(1),
Run: func(cmd *cobra.Command, args []string) {
exit.OnErr(common.Client().PostSecretUndelete(cmd.Context(), args[0], utils.ToUint32Array(versions)))
},
}
cmd.Flags().UintSliceVar(&versions, "versions", []uint{}, "Specifies the version numbers to delete. (Comma separated list of versions)")
_ = cmd.MarkFlagRequired("versions")
return cmd
}
func kvDestroyCmd() *cobra.Command {
var (
versions []uint
)
cmd := &cobra.Command{
Use: "destroy PATH",
Short: "Permanently removes the specified versions' data from the key-value store.",
Args: cobra.ExactArgs(1),
Run: func(cmd *cobra.Command, args []string) {
exit.OnErr(common.Client().PutSecretDestroy(cmd.Context(), args[0], utils.ToUint32Array(versions)))
},
}
cmd.Flags().UintSliceVar(&versions, "versions", []uint{}, "Specifies the version numbers to delete. (Comma separated list of versions)")
_ = cmd.MarkFlagRequired("versions")
return cmd
}
func kvSubkeysCmd() *cobra.Command {
var (
version uint32
depth uint32
)
cmd := &cobra.Command{
Use: "subkeys PATH",
Short: "Provides the subkeys within a secret entry that exists at the requested path.",
Args: cobra.ExactArgs(1),
Run: func(cmd *cobra.Command, args []string) {
var v *uint32
if cmd.Flag("version").Changed {
v = &version
}
var d *uint32
if cmd.Flag("depth").Changed {
d = &depth
}
resp := exit.OnErr2(common.Client().GetSecretSubkeys(cmd.Context(), args[0], d, v))
if cmd.Flag("output").Value.String() == string(flagsmgmt.JSON_OUTPUT_FORMAT) {
output.JsonPrint(resp)
} else if resp.Data != nil {
renderSecretMetadataTable(resp.Data.Metadata)
if resp.Data.Subkeys != nil {
fmt.Println("Subkeys")
table := tablewriter.NewWriter(os.Stdout)
table.SetHeader([]string{"Key", "Value"})
kvs, ok := (*resp.Data.Subkeys).(map[string]any)
if ok {
for k, v := range kvs {
table.Append([]string{k, fmt.Sprintf("%v", v)})
}
}
table.Render()
}
}
},
}
cmd.Flags().Uint32Var(&version, "version", 0, "The version to return")
cmd.Flags().Uint32Var(&depth, "depth", 0, "Deepest nesting level to provide in the output")
return cmd
}
func renderSecretMetadataTable(data *types.SecretVersionMetadata) {
if data == nil {
return
}
createdAt := utils.DerefOrDefault(data.CreatedTime)
deletionTime := utils.DerefOrDefault(data.DeletionTime)
destroyed := utils.DerefOrDefault(data.Destroyed)
var customMetadata string
if data.CustomMetadata != nil {
customMetadata = fmt.Sprintf("%v", *data.CustomMetadata)
}
version := "N/A"
if data.Version != nil {
version = fmt.Sprintf("%d", *data.Version)
}
fmt.Println("Metadata")
table := tablewriter.NewWriter(os.Stdout)
table.SetHeader([]string{"Key", "Value"})
table.AppendBulk([][]string{
{"Created at", createdAt},
{"Custom metadata", customMetadata},
{"Deletion time", deletionTime},
{"Destroyed", fmt.Sprintf("%t", destroyed)},
{"Version", version},
})
table.Render()
}