-
Notifications
You must be signed in to change notification settings - Fork 0
/
command_groups.go
583 lines (504 loc) · 14.8 KB
/
command_groups.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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
package main
import (
"fmt"
"github.com/1and1/soma/internal/adm"
"github.com/1and1/soma/internal/cmpl"
"github.com/1and1/soma/lib/proto"
"github.com/codegangsta/cli"
)
func registerGroups(app cli.App) *cli.App {
app.Commands = append(app.Commands,
[]cli.Command{
// groups
{
Name: "groups",
Usage: "SUBCOMMANDS for groups",
Subcommands: []cli.Command{
{
Name: "create",
Usage: "Create a new group",
Action: runtime(cmdGroupCreate),
BashComplete: cmpl.In,
},
{
Name: "delete",
Usage: "Delete a group",
Action: runtime(cmdGroupDelete),
BashComplete: cmpl.In,
},
{
Name: "rename",
Usage: "Rename a group",
Action: runtime(cmdGroupRename),
BashComplete: cmpl.InTo,
},
{
Name: "list",
Usage: "List all groups",
Action: runtime(cmdGroupList),
},
{
Name: "show",
Usage: "Show details about a group",
Action: runtime(cmdGroupShow),
BashComplete: cmpl.In,
},
{
Name: `tree`,
Usage: `Display the group as tree`,
Action: runtime(cmdGroupTree),
BashComplete: cmpl.In,
},
{
Name: "members",
Usage: "SUBCOMMANDS for members",
Subcommands: []cli.Command{
{
Name: "add",
Usage: "SUBCOMMANDS for members add",
Subcommands: []cli.Command{
{
Name: "group",
Usage: "Add a group to a group",
Action: runtime(cmdGroupMemberAddGroup),
BashComplete: cmpl.InTo,
},
{
Name: "cluster",
Usage: "Add a cluster to a group",
Action: runtime(cmdGroupMemberAddCluster),
BashComplete: cmpl.InTo,
},
{
Name: "node",
Usage: "Add a node to a group",
Action: runtime(cmdGroupMemberAddNode),
BashComplete: cmpl.InTo,
},
},
},
{
Name: "delete",
Usage: "SUBCOMMANDS for members delete",
Subcommands: []cli.Command{
{
Name: "group",
Usage: "Delete a group from a group",
Action: runtime(cmdGroupMemberDeleteGroup),
BashComplete: cmpl.InFrom,
},
{
Name: "cluster",
Usage: "Delete a cluster from a group",
Action: runtime(cmdGroupMemberDeleteCluster),
BashComplete: cmpl.InFrom,
},
{
Name: "node",
Usage: "Delete a node from a group",
Action: runtime(cmdGroupMemberDeleteNode),
BashComplete: cmpl.InFrom,
},
},
},
{
Name: "list",
Usage: "List all members of a group",
Action: runtime(cmdGroupMemberList),
BashComplete: cmpl.In,
},
},
},
{
Name: "property",
Usage: "SUBCOMMANDS for properties",
Subcommands: []cli.Command{
{
Name: "add",
Usage: "SUBCOMMANDS for property add",
Subcommands: []cli.Command{
{
Name: "system",
Usage: "Add a system property to a group",
Action: runtime(cmdGroupSystemPropertyAdd),
BashComplete: cmpl.PropertyAddValue,
},
{
Name: "service",
Usage: "Add a service property to a group",
Action: runtime(cmdGroupServicePropertyAdd),
BashComplete: cmpl.PropertyAdd,
},
{
Name: `oncall`,
Usage: `Add an oncall property to a group`,
Action: runtime(cmdGroupOncallPropertyAdd),
BashComplete: cmpl.PropertyAdd,
},
{
Name: `custom`,
Usage: `Add a custom property to a group`,
Action: runtime(cmdGroupCustomPropertyAdd),
BashComplete: cmpl.PropertyAdd,
},
},
},
{
Name: `delete`,
Usage: `SUBCOMMANDS for property delete`,
Subcommands: []cli.Command{
{
Name: `system`,
Usage: `Delete a system property from a group`,
Action: runtime(cmdGroupSystemPropertyDelete),
BashComplete: cmpl.InFromView,
},
{
Name: `service`,
Usage: `Delete a service property from a group`,
Action: runtime(cmdGroupServicePropertyDelete),
BashComplete: cmpl.InFromView,
},
{
Name: `oncall`,
Usage: `Delete an oncall property from a group`,
Action: runtime(cmdGroupOncallPropertyDelete),
BashComplete: cmpl.InFromView,
},
{
Name: `custom`,
Usage: `Delete a custom property from a group`,
Action: runtime(cmdGroupCustomPropertyDelete),
BashComplete: cmpl.InFromView,
},
},
},
},
},
},
}, // end groups
}...,
)
return &app
}
func cmdGroupCreate(c *cli.Context) error {
utl.ValidateCliArgumentCount(c, 3)
multKeys := []string{"in"}
opts := utl.ParseVariadicArguments(multKeys,
multKeys, // as uniqKeys
multKeys, // as reqKeys
c.Args().Tail())
bucketId := utl.BucketByUUIDOrName(Client, opts["in"][0])
var req proto.Request
req.Group = &proto.Group{}
req.Group.Name = c.Args().First()
req.Group.BucketId = bucketId
utl.ValidateRuneCountRange(req.Group.Name, 4, 256)
if resp, err := adm.PostReqBody(req, "/groups/"); err != nil {
return err
} else {
return adm.FormatOut(c, resp, ``)
}
}
func cmdGroupDelete(c *cli.Context) error {
utl.ValidateCliArgumentCount(c, 3)
multKeys := []string{"in"}
opts := utl.ParseVariadicArguments(multKeys,
multKeys, // as uniqKeys
multKeys, // as reqKeys
c.Args().Tail())
bucketId := utl.BucketByUUIDOrName(Client, opts["in"][0])
groupId := utl.TryGetGroupByUUIDOrName(Client,
c.Args().First(),
bucketId)
path := fmt.Sprintf("/groups/%s", groupId)
if resp, err := adm.DeleteReq(path); err != nil {
return err
} else {
return adm.FormatOut(c, resp, ``)
}
}
func cmdGroupRename(c *cli.Context) error {
utl.ValidateCliArgumentCount(c, 5)
multKeys := []string{"to", "in"}
opts := utl.ParseVariadicArguments(multKeys,
multKeys, // as uniqKeys
multKeys, // as reqKeys
c.Args().Tail())
bucketId := utl.BucketByUUIDOrName(Client, opts["in"][0])
groupId := utl.TryGetGroupByUUIDOrName(Client,
c.Args().First(),
bucketId)
path := fmt.Sprintf("/groups/%s", groupId)
var req proto.Request
req.Group = &proto.Group{}
req.Group.Name = opts["to"][0]
if resp, err := adm.PatchReqBody(req, path); err != nil {
return err
} else {
return adm.FormatOut(c, resp, ``)
}
}
func cmdGroupList(c *cli.Context) error {
utl.ValidateCliArgumentCount(c, 0)
if resp, err := adm.GetReq("/groups/"); err != nil {
return err
} else {
return adm.FormatOut(c, resp, `list`)
}
}
func cmdGroupShow(c *cli.Context) error {
utl.ValidateCliArgumentCount(c, 3)
multKeys := []string{"in"}
opts := utl.ParseVariadicArguments(multKeys,
multKeys,
multKeys,
c.Args().Tail())
bucketId := utl.BucketByUUIDOrName(Client, opts["in"][0])
groupId := utl.TryGetGroupByUUIDOrName(Client,
c.Args().First(),
bucketId)
path := fmt.Sprintf("/groups/%s", groupId)
if resp, err := adm.GetReq(path); err != nil {
return err
} else {
return adm.FormatOut(c, resp, `show`)
}
}
func cmdGroupTree(c *cli.Context) error {
utl.ValidateCliArgumentCount(c, 3)
multKeys := []string{"in"}
opts := utl.ParseVariadicArguments(multKeys,
multKeys,
multKeys,
c.Args().Tail())
bucketId := utl.BucketByUUIDOrName(Client, opts["in"][0])
groupId := utl.TryGetGroupByUUIDOrName(Client,
c.Args().First(),
bucketId)
path := fmt.Sprintf("/groups/%s/tree/tree", groupId)
if resp, err := adm.GetReq(path); err != nil {
return err
} else {
return adm.FormatOut(c, resp, `tree`)
}
}
func cmdGroupMemberAddGroup(c *cli.Context) error {
utl.ValidateCliArgumentCount(c, 5)
multKeys := []string{"to", "in"}
opts := utl.ParseVariadicArguments(multKeys,
multKeys,
multKeys,
c.Args().Tail())
bucketId := utl.BucketByUUIDOrName(Client, opts["in"][0])
mGroupId := utl.TryGetGroupByUUIDOrName(Client,
c.Args().First(),
bucketId)
groupId := utl.TryGetGroupByUUIDOrName(Client,
opts["to"][0],
bucketId)
var req proto.Request
var group proto.Group
group.Id = mGroupId
req.Group = &proto.Group{}
req.Group.Id = groupId
req.Group.BucketId = bucketId
*req.Group.MemberGroups = append(*req.Group.MemberGroups, group)
path := fmt.Sprintf("/groups/%s/members/", groupId)
if resp, err := adm.PostReqBody(req, path); err != nil {
return err
} else {
return adm.FormatOut(c, resp, ``)
}
}
func cmdGroupMemberAddCluster(c *cli.Context) error {
utl.ValidateCliArgumentCount(c, 5)
multKeys := []string{"to", "in"}
opts := utl.ParseVariadicArguments(multKeys,
multKeys,
multKeys,
c.Args().Tail())
bucketId := utl.BucketByUUIDOrName(Client, opts["in"][0])
mClusterId := utl.TryGetClusterByUUIDOrName(Client,
c.Args().First(),
bucketId)
groupId := utl.TryGetGroupByUUIDOrName(Client,
opts["to"][0],
bucketId)
var req proto.Request
var cluster proto.Cluster
cluster.Id = mClusterId
req.Group = &proto.Group{}
req.Group.Id = groupId
req.Group.BucketId = bucketId
*req.Group.MemberClusters = append(*req.Group.MemberClusters, cluster)
path := fmt.Sprintf("/groups/%s/members/", groupId)
if resp, err := adm.PostReqBody(req, path); err != nil {
return err
} else {
return adm.FormatOut(c, resp, ``)
}
}
func cmdGroupMemberAddNode(c *cli.Context) error {
utl.ValidateCliArgumentCount(c, 5)
multKeys := []string{"to", "in"}
opts := utl.ParseVariadicArguments(multKeys,
multKeys,
multKeys,
c.Args().Tail())
bucketId := utl.BucketByUUIDOrName(Client, opts["in"][0])
mNodeId := utl.TryGetNodeByUUIDOrName(Client, c.Args().First())
groupId := utl.TryGetGroupByUUIDOrName(Client,
opts["to"][0],
bucketId)
var req proto.Request
var node proto.Node
node.Id = mNodeId
req.Group = &proto.Group{}
req.Group.Id = groupId
req.Group.BucketId = bucketId
*req.Group.MemberNodes = append(*req.Group.MemberNodes, node)
path := fmt.Sprintf("/groups/%s/members/", groupId)
if resp, err := adm.PostReqBody(req, path); err != nil {
return err
} else {
return adm.FormatOut(c, resp, ``)
}
}
func cmdGroupMemberDeleteGroup(c *cli.Context) error {
utl.ValidateCliArgumentCount(c, 5)
multKeys := []string{"from", "in"}
opts := utl.ParseVariadicArguments(multKeys,
multKeys,
multKeys,
c.Args().Tail())
bucketId := utl.BucketByUUIDOrName(Client, opts["in"][0])
mGroupId := utl.TryGetGroupByUUIDOrName(Client,
c.Args().First(),
bucketId)
groupId := utl.TryGetGroupByUUIDOrName(Client,
opts["from"][0],
bucketId)
path := fmt.Sprintf("/groups/%s/members/%s", groupId,
mGroupId)
if resp, err := adm.DeleteReq(path); err != nil {
return err
} else {
return adm.FormatOut(c, resp, ``)
}
}
func cmdGroupMemberDeleteCluster(c *cli.Context) error {
utl.ValidateCliArgumentCount(c, 5)
multKeys := []string{"from", "in"}
opts := utl.ParseVariadicArguments(multKeys,
multKeys,
multKeys,
c.Args().Tail())
bucketId := utl.BucketByUUIDOrName(Client, opts["in"][0])
mClusterId := utl.TryGetClusterByUUIDOrName(Client,
c.Args().First(),
bucketId)
groupId := utl.TryGetGroupByUUIDOrName(Client,
opts["from"][0],
bucketId)
path := fmt.Sprintf("/groups/%s/members/%s", groupId,
mClusterId)
if resp, err := adm.DeleteReq(path); err != nil {
return err
} else {
return adm.FormatOut(c, resp, ``)
}
}
func cmdGroupMemberDeleteNode(c *cli.Context) error {
utl.ValidateCliArgumentCount(c, 5)
multKeys := []string{"from", "in"}
opts := utl.ParseVariadicArguments(multKeys,
multKeys,
multKeys,
c.Args().Tail())
bucketId := utl.BucketByUUIDOrName(Client, opts["in"][0])
mNodeId := utl.TryGetNodeByUUIDOrName(Client, c.Args().First())
groupId := utl.TryGetGroupByUUIDOrName(Client,
opts["from"][0],
bucketId)
path := fmt.Sprintf("/groups/%s/members/%s", groupId,
mNodeId)
if resp, err := adm.DeleteReq(path); err != nil {
return err
} else {
return adm.FormatOut(c, resp, ``)
}
}
func cmdGroupMemberList(c *cli.Context) error {
utl.ValidateCliArgumentCount(c, 3)
multKeys := []string{"in"}
opts := utl.ParseVariadicArguments(multKeys,
multKeys,
multKeys,
c.Args().Tail())
bucketId := utl.BucketByUUIDOrName(Client, opts["in"][0])
groupId := utl.TryGetGroupByUUIDOrName(Client,
c.Args().First(),
bucketId)
path := fmt.Sprintf("/groups/%s/members/", groupId)
if resp, err := adm.GetReq(path); err != nil {
return err
} else {
return adm.FormatOut(c, resp, ``)
}
}
func cmdGroupSystemPropertyAdd(c *cli.Context) error {
return cmdGroupPropertyAdd(c, `system`)
}
func cmdGroupServicePropertyAdd(c *cli.Context) error {
return cmdGroupPropertyAdd(c, `service`)
}
func cmdGroupOncallPropertyAdd(c *cli.Context) error {
return cmdGroupPropertyAdd(c, `oncall`)
}
func cmdGroupCustomPropertyAdd(c *cli.Context) error {
return cmdGroupPropertyAdd(c, `custom`)
}
func cmdGroupPropertyAdd(c *cli.Context, pType string) error {
return cmdPropertyAdd(c, pType, `group`)
}
func cmdGroupSystemPropertyDelete(c *cli.Context) error {
return cmdGroupPropertyDelete(c, `system`)
}
func cmdGroupServicePropertyDelete(c *cli.Context) error {
return cmdGroupPropertyDelete(c, `service`)
}
func cmdGroupOncallPropertyDelete(c *cli.Context) error {
return cmdGroupPropertyDelete(c, `oncall`)
}
func cmdGroupCustomPropertyDelete(c *cli.Context) error {
return cmdGroupPropertyDelete(c, `custom`)
}
func cmdGroupPropertyDelete(c *cli.Context, pType string) error {
utl.ValidateCliMinArgumentCount(c, 7)
multiple := []string{}
unique := []string{`from`, `view`, `in`}
required := []string{`from`, `view`, `in`}
opts := utl.ParseVariadicArguments(multiple, unique, required, c.Args().Tail())
bucketId := utl.BucketByUUIDOrName(Client, opts[`in`][0])
groupId := utl.TryGetGroupByUUIDOrName(Client, opts[`from`][0], bucketId)
if pType == `system` {
utl.CheckStringIsSystemProperty(Client, c.Args().First())
}
sourceId := utl.FindSourceForGroupProperty(Client, pType, c.Args().First(),
opts[`view`][0], groupId)
if sourceId == `` {
utl.Abort(`Could not find locally set requested property.`)
}
req := proto.NewGroupRequest()
req.Group.Id = groupId
req.Group.BucketId = bucketId
path := fmt.Sprintf("/groups/%s/property/%s/%s",
groupId, pType, sourceId)
if resp, err := adm.DeleteReqBody(req, path); err != nil {
return err
} else {
return adm.FormatOut(c, resp, `delete`)
}
}
// vim: ts=4 sw=4 sts=4 noet fenc=utf-8 ffs=unix