forked from metalsoft-io/metalcloud-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmd_network_profile.go
494 lines (422 loc) · 13.1 KB
/
cmd_network_profile.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
package main
import (
"encoding/json"
"flag"
"fmt"
"os"
"strconv"
"strings"
"gopkg.in/yaml.v3"
metalcloud "github.com/metalsoft-io/metal-cloud-sdk-go/v2"
"github.com/metalsoft-io/tableformatter"
)
var networkProfileCmds = []Command{
{
Description: "Lists all network profiles.",
Subject: "network-profile",
AltSubject: "np",
Predicate: "list",
AltPredicate: "ls",
FlagSet: flag.NewFlagSet("list network_profile", flag.ExitOnError),
InitFunc: func(c *Command) {
c.Arguments = map[string]interface{}{
"datacenter": c.FlagSet.String("datacenter", _nilDefaultStr, red("(Required)")+" Network profile datacenter"),
"format": c.FlagSet.String("format", "", "The output format. Supported values are 'json','csv','yaml'. The default format is human readable."),
}
},
ExecuteFunc: networkProfileListCmd,
},
{
Description: "Lists vlans of network profile.",
Subject: "network-profile",
AltSubject: "np",
Predicate: "vlan-list",
AltPredicate: "vlans",
FlagSet: flag.NewFlagSet("vlan-list network_profile", flag.ExitOnError),
InitFunc: func(c *Command) {
c.Arguments = map[string]interface{}{
"network_profile_id": c.FlagSet.Int("id", _nilDefaultInt, red("(Required)")+" Network profile's id."),
"format": c.FlagSet.String("format", "", "The output format. Supported values are 'json','csv','yaml'. The default format is human readable."),
}
},
ExecuteFunc: networkProfileVlansListCmd,
},
{
Description: "Get network profile details.",
Subject: "network-profile",
AltSubject: "np",
Predicate: "get",
AltPredicate: "show",
FlagSet: flag.NewFlagSet("Get network profile details.", flag.ExitOnError),
InitFunc: func(c *Command) {
c.Arguments = map[string]interface{}{
"network_profile_id": c.FlagSet.Int("id", _nilDefaultInt, red("(Required)")+" Network profile's id."),
"format": c.FlagSet.String("format", _nilDefaultStr, "The output format. Supported values are 'json','csv','yaml'. The default format is human readable."),
}
},
ExecuteFunc: networkProfileGetCmd,
Endpoint: ExtendedEndpoint,
},
{
Description: "Create network profile.",
Subject: "network-profile",
AltSubject: "np",
Predicate: "create",
AltPredicate: "new",
FlagSet: flag.NewFlagSet("Create network profile", flag.ExitOnError),
InitFunc: func(c *Command) {
c.Arguments = map[string]interface{}{
"datacenter": c.FlagSet.String("datacenter", _nilDefaultStr, red("(Required)")+" Label of the datacenter. Also used as an ID."),
"format": c.FlagSet.String("format", "json", "The input format. Supported values are 'json','yaml'. The default format is json."),
"read_config_from_file": c.FlagSet.String("raw-config", _nilDefaultStr, red("(Required)")+" Read configuration from file in the format specified with --format."),
"read_config_from_pipe": c.FlagSet.Bool("pipe", false, green("(Flag)")+" If set, read configuration from pipe instead of from a file. Either this flag or the --raw-config option must be used."),
"return_id": c.FlagSet.Bool("return-id", false, "Will print the ID of the created object. Useful for automating tasks."),
}
},
ExecuteFunc: networkProfileCreateCmd,
Endpoint: DeveloperEndpoint,
},
{
Description: "Delete a network profile.",
Subject: "network-profile",
AltSubject: "np",
Predicate: "delete",
AltPredicate: "rm",
FlagSet: flag.NewFlagSet("delete network profile", flag.ExitOnError),
InitFunc: func(c *Command) {
c.Arguments = map[string]interface{}{
"network_profile_id": c.FlagSet.Int("id", _nilDefaultInt, red("(Required)")+" Network profile's id "),
"autoconfirm": c.FlagSet.Bool("autoconfirm", false, green("(Flag)")+" If set it will assume action is confirmed"),
}
},
ExecuteFunc: networkProfileDeleteCmd,
Endpoint: DeveloperEndpoint,
},
{
Description: "Add a network profile to an instance array.",
Subject: "network-profile",
AltSubject: "np",
Predicate: "associate",
AltPredicate: "assign",
FlagSet: flag.NewFlagSet("assign network profile to an instance array", flag.ExitOnError),
InitFunc: func(c *Command) {
c.Arguments = map[string]interface{}{
"network_profile_id": c.FlagSet.Int("id", _nilDefaultInt, red("(Required)")+" Network profile's id"),
"network_id": c.FlagSet.Int("net", _nilDefaultInt, red("(Required)")+" Network's id"),
"instance_array_id": c.FlagSet.Int("ia", _nilDefaultInt, red("(Required)")+" Instance array's id"),
}
},
ExecuteFunc: networkProfileAssociateToInstanceArrayCmd,
Endpoint: DeveloperEndpoint,
},
{
Description: "Remove network profile from an instance array.",
Subject: "network-profile",
AltSubject: "np",
Predicate: "remove",
AltPredicate: "rm",
FlagSet: flag.NewFlagSet("remove network profile of an instance array", flag.ExitOnError),
InitFunc: func(c *Command) {
c.Arguments = map[string]interface{}{
"instance_array_id": c.FlagSet.String("ia", _nilDefaultStr, red("(Required)")+" Instance array's id"),
"network_id": c.FlagSet.String("net", _nilDefaultStr, red("(Required)")+" Network's id"),
}
},
ExecuteFunc: networkProfileRemoveFromInstanceArrayCmd,
Endpoint: DeveloperEndpoint,
},
}
func networkProfileListCmd(c *Command, client metalcloud.MetalCloudClient) (string, error) {
datacenter, ok := getStringParamOk(c.Arguments["datacenter"])
if !ok {
return "", fmt.Errorf("-datacenter is required")
}
npList, err := client.NetworkProfiles(datacenter)
if err != nil {
return "", err
}
schema := []tableformatter.SchemaField{
{
FieldName: "ID",
FieldType: tableformatter.TypeInt,
FieldSize: 6,
},
{
FieldName: "LABEL",
FieldType: tableformatter.TypeString,
FieldSize: 30,
},
{
FieldName: "NETWORK TYPE",
FieldType: tableformatter.TypeString,
FieldSize: 30,
},
{
FieldName: "VLANs",
FieldType: tableformatter.TypeInterface,
FieldSize: 30,
},
{
FieldName: "CREATED",
FieldType: tableformatter.TypeString,
FieldSize: 10,
},
{
FieldName: "UPDATED",
FieldType: tableformatter.TypeString,
FieldSize: 10,
},
}
data := [][]interface{}{}
for _, np := range *npList {
vlans := ""
for _, vlan := range np.NetworkProfileVLANs {
if vlan.VlanID != nil {
if vlans == "" {
vlans = strconv.Itoa(*vlan.VlanID)
} else {
vlans = vlans + "," + strconv.Itoa(*vlan.VlanID)
}
}
}
data = append(data, []interface{}{
np.NetworkProfileID,
blue(np.NetworkProfileLabel),
np.NetworkType,
vlans,
np.NetworkProfileCreatedTimestamp,
np.NetworkProfileUpdatedTimestamp,
})
}
tableformatter.TableSorter(schema).OrderBy(schema[0].FieldName).Sort(data)
table := tableformatter.Table{
Data: data,
Schema: schema,
}
return table.RenderTable("Network Profiles", "", getStringParam(c.Arguments["format"]))
}
func networkProfileVlansListCmd(c *Command, client metalcloud.MetalCloudClient) (string, error) {
id, ok := getIntParamOk(c.Arguments["network_profile_id"])
if !ok {
return "", fmt.Errorf("-id required")
}
retNP, err := client.NetworkProfileGet(id)
if err != nil {
return "", err
}
schemaConfiguration := []tableformatter.SchemaField{
{
FieldName: "VLAN",
FieldType: tableformatter.TypeString,
FieldSize: 6,
},
{
FieldName: "Port mode",
FieldType: tableformatter.TypeString,
FieldSize: 6,
},
{
FieldName: "External connections",
FieldType: tableformatter.TypeString,
FieldSize: 6,
},
{
FieldName: "Provision subnet gateways",
FieldType: tableformatter.TypeBool,
FieldSize: 6,
},
}
dataConfiguration := [][]interface{}{}
networkProfileVlans := retNP.NetworkProfileVLANs
for _, vlan := range networkProfileVlans {
externalConnectionIDs := vlan.ExternalConnectionIDs
ecIds := ""
for index, ecId := range externalConnectionIDs {
retEC, err := client.ExternalConnectionGet(ecId)
if err != nil {
return "", err
}
if index == 0 {
ecIds = retEC.ExternalConnectionLabel + " (#" + strconv.Itoa(ecId) + ")"
} else {
ecIds = ecIds + ", " + retEC.ExternalConnectionLabel + " (#" + strconv.Itoa(ecId) + ")"
}
}
vlanid := "auto"
if vlan.VlanID != nil {
vlanid = strconv.Itoa(*vlan.VlanID)
}
dataConfiguration = append(dataConfiguration, []interface{}{
vlanid,
vlan.PortMode,
ecIds,
vlan.ProvisionSubnetGateways,
})
}
tableConfiguration := tableformatter.Table{
Data: dataConfiguration,
Schema: schemaConfiguration,
}
retConfigTable, err := tableConfiguration.RenderTableFoldable("", "", getStringParam(c.Arguments["format"]), 0)
if err != nil {
return "", err
}
return retConfigTable, err
}
func networkProfileGetCmd(c *Command, client metalcloud.MetalCloudClient) (string, error) {
id, ok := getIntParamOk(c.Arguments["network_profile_id"])
if !ok {
return "", fmt.Errorf("-id required")
}
retNP, err := client.NetworkProfileGet(id)
if err != nil {
return "", err
}
schema := []tableformatter.SchemaField{
{
FieldName: "ID",
FieldType: tableformatter.TypeString,
FieldSize: 6,
},
{
FieldName: "LABEL",
FieldType: tableformatter.TypeString,
FieldSize: 6,
},
{
FieldName: "DATACENTER",
FieldType: tableformatter.TypeString,
FieldSize: 6,
},
}
data := [][]interface{}{
{
"#" + strconv.Itoa(retNP.NetworkProfileID),
retNP.NetworkProfileLabel,
retNP.DatacenterName,
},
}
table := tableformatter.Table{
Data: data,
Schema: schema,
}
retOverviewTable, err := table.RenderTableFoldable("", "", getStringParam(c.Arguments["format"]), 0)
if err != nil {
return "", err
}
return retOverviewTable, err
}
func networkProfileCreateCmd(c *Command, client metalcloud.MetalCloudClient) (string, error) {
datacenter, ok := getStringParamOk(c.Arguments["datacenter"])
if !ok {
return "", fmt.Errorf("-datacenter is required")
}
readContentfromPipe := getBoolParam((c.Arguments["read_config_from_pipe"]))
var err error
content := []byte{}
if readContentfromPipe {
content, err = readInputFromPipe()
} else {
if configFilePath, ok := getStringParamOk(c.Arguments["read_config_from_file"]); ok {
content, err = readInputFromFile(configFilePath)
} else {
return "", fmt.Errorf("-raw-config <path_to_json_file> or -pipe is required")
}
}
if err != nil {
return "", err
}
if len(content) == 0 {
return "", fmt.Errorf("Content cannot be empty")
}
format := getStringParam(c.Arguments["format"])
var npConf metalcloud.NetworkProfile
switch format {
case "json":
err := json.Unmarshal(content, &npConf)
if err != nil {
return "", err
}
case "yaml":
err := yaml.Unmarshal(content, &npConf)
if err != nil {
return "", err
}
default:
return "", fmt.Errorf("input format \"%s\" not supported", format)
}
ret, err := client.NetworkProfileCreate(datacenter, npConf)
if err != nil {
return "", err
}
if c.Arguments["return_id"] != nil && *c.Arguments["return_id"].(*bool) {
return fmt.Sprintf("%d", ret.NetworkProfileID), nil
}
return "", err
}
func networkProfileDeleteCmd(c *Command, client metalcloud.MetalCloudClient) (string, error) {
networkProfileId, ok := getIntParamOk(c.Arguments["network_profile_id"])
if !ok {
return "", fmt.Errorf("-id is required")
}
confirm := getBoolParam(c.Arguments["autoconfirm"])
networkProfile, err := client.NetworkProfileGet(networkProfileId)
if err != nil {
return "", err
}
if !confirm {
confirmationMessage := fmt.Sprintf("Deleting network profile %s (%d). Are you sure? Type \"yes\" to continue:",
networkProfile.NetworkProfileLabel, networkProfile.NetworkProfileID)
//this is simply so that we don't output a text on the command line under go test
if strings.HasSuffix(os.Args[0], ".test") {
confirmationMessage = ""
}
confirm, err = requestConfirmation(confirmationMessage)
if err != nil {
return "", err
}
}
if !confirm {
return "", fmt.Errorf("Operation not confirmed. Aborting")
}
err = client.NetworkProfileDelete(networkProfileId)
return "", err
}
func networkProfileAssociateToInstanceArrayCmd(c *Command, client metalcloud.MetalCloudClient) (string, error) {
id, ok := getIntParamOk(c.Arguments["network_profile_id"])
if !ok {
return "", fmt.Errorf("-id required")
}
net, ok := getIntParamOk(c.Arguments["network_id"])
if !ok {
return "", fmt.Errorf("-net required")
}
ia, ok := getIntParamOk(c.Arguments["instance_array_id"])
if !ok {
return "", fmt.Errorf("-net required")
}
_, err := client.InstanceArrayNetworkProfileSet(ia, net, id)
if err != nil {
return "", err
}
return "", nil
}
func networkProfileRemoveFromInstanceArrayCmd(c *Command, client metalcloud.MetalCloudClient) (string, error) {
instance_array_id, ok := getStringParamOk(c.Arguments["instance_array_id"])
if !ok {
return "", fmt.Errorf("-net required")
}
ia, err := strconv.Atoi(instance_array_id)
if err != nil {
return "", err
}
network_id, ok := getStringParamOk(c.Arguments["network_id"])
if !ok {
return "", fmt.Errorf("-net required")
}
net, err := strconv.Atoi(network_id)
if err != nil {
return "", err
}
return "", client.InstanceArrayNetworkProfileClear(ia, net)
}