-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathl2_interface.go
451 lines (358 loc) · 11 KB
/
l2_interface.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
package aoscxgo
import (
"bytes"
"encoding/json"
"errors"
"net/url"
"strconv"
)
type L2Interface struct {
// Connection properties.
Interface Interface `json:"interface"`
Description string `json:"description"`
VlanMode string `json:"vlan_mode"`
VlanIds []interface{} `json:"vlan_ids"`
VlanTag int `json:"vlan_tag"`
TrunkAllowedAll bool `json:"trunk_allowed_all"`
NativeVlanTag bool `json:"native_vlan_tag"`
InterfaceDetails map[string]interface{} `json:"details"`
materialized bool `json:"materialized"`
}
// Create performs PATCH to update L2Interface configuration on the given Client object.
func (i *L2Interface) Create(c *Client) error {
base_uri := "system/interfaces"
patchMap := map[string]interface{}{}
if i.Interface.Name == "" {
return &RequestError{
StatusCode: "Missing Interface unable to configure L2Interface",
Err: errors.New("Create Error"),
}
}
err := i.Interface.checkValues()
if err != nil {
return err
}
int_str := url.PathEscape(i.Interface.Name)
url := "https://" + c.Hostname + "/rest/" + c.Version + "/" + base_uri + "/" + int_str
if i.VlanMode == "access" || i.VlanMode == "" {
if i.VlanTag == 0 {
i.VlanTag = 1
}
tmp_vlan := Vlan{
VlanId: i.VlanTag,
}
err := tmp_vlan.Get(c)
if err != nil && !tmp_vlan.materialized {
err = tmp_vlan.Create(c)
if err != nil && !tmp_vlan.materialized {
return &RequestError{
StatusCode: "Vlan Not found unable to configure L2Interface",
Err: errors.New("Create Error"),
}
}
}
patchMap["vlan_tag"] = map[string]interface{}{strconv.Itoa(i.VlanTag): tmp_vlan.GetURI()}
patchMap["vlan_mode"] = "access"
} else if i.VlanMode == "trunk" || i.VlanMode == "native-untagged" || i.VlanMode == "native-tagged" {
if i.NativeVlanTag {
i.VlanMode = "native-tagged"
} else {
i.VlanMode = "native-untagged"
}
if i.VlanTag == 1 {
patchMap["vlan_tag"] = nil
} else {
tmp_vlan := Vlan{
VlanId: i.VlanTag,
}
err := tmp_vlan.Get(c)
if err != nil && !tmp_vlan.materialized {
return &RequestError{
StatusCode: "Vlan Not found unable to configure L2Interface",
Err: errors.New("Create Error"),
}
}
patchMap["vlan_tag"] = map[string]interface{}{
strconv.Itoa(tmp_vlan.VlanId): tmp_vlan.GetURI(),
}
}
vlan_trunks := map[string]interface{}{}
if !i.TrunkAllowedAll {
// Test what is behavior of List being empty or not
for _, item := range i.VlanIds {
tmp_vlan_obj := Vlan{VlanId: item.(int)}
err = tmp_vlan_obj.Get(c)
if err == nil {
vlan_trunks[strconv.Itoa(tmp_vlan_obj.VlanId)] = tmp_vlan_obj.GetURI()
}
}
} else {
vlan_trunks = map[string]interface{}{}
}
patchMap["vlan_trunks"] = vlan_trunks
patchMap["vlan_mode"] = i.VlanMode
} else {
status_str := "Invalid Required Value: VlanMode - valid options are 'access' or 'trunk' received: " + i.VlanMode
return &RequestError{
StatusCode: status_str,
Err: errors.New("Create Error"),
}
}
// Make sure Interface exists in table before patching L2 attributes
tmp_int := Interface{
Name: i.Interface.Name,
}
err = tmp_int.Get(c)
if err != nil {
return err
} else if !tmp_int.materialized {
err = i.Interface.Create(c)
if err != nil {
return err
}
}
patchMap["description"] = i.Description
patchMap["admin"] = i.Interface.AdminState
patchMap["routing"] = false
if i.Interface.AdminState == "down" {
patchMap["user_config"] = map[string]interface{}{
"admin": "down"}
} else if i.Interface.AdminState == "up" {
patchMap["user_config"] = map[string]interface{}{
"admin": "up"}
}
patchBody, _ := json.Marshal(patchMap)
json_body := bytes.NewBuffer(patchBody)
res := patch(c, url, json_body)
if res.Status != "204 No Content" {
return &RequestError{
StatusCode: res.Status,
Err: errors.New("Create Error"),
}
}
i.materialized = true
return nil
}
// Update performs PATCH or PUT to update L2Interface configuration on the given Client object.
func (i *L2Interface) Update(c *Client, use_put bool) error {
base_uri := "system/interfaces"
updateMap := map[string]interface{}{}
if use_put {
tmp_l2_int := L2Interface{Interface: i.Interface}
err := tmp_l2_int.Get(c)
if err != nil {
return err
}
for key, value := range tmp_l2_int.InterfaceDetails {
updateMap[key] = value
}
}
if i.Interface.Name == "" {
return &RequestError{
StatusCode: "Missing Interface unable to configure L2Interface",
Err: errors.New("Update Error"),
}
}
err := i.Interface.checkValues()
if err != nil {
return err
}
int_str := url.PathEscape(i.Interface.Name)
url := "https://" + c.Hostname + "/rest/" + c.Version + "/" + base_uri + "/" + int_str
if i.VlanMode == "access" || i.VlanMode == "" {
if i.VlanTag == 0 {
i.VlanTag = 1
}
tmp_vlan := Vlan{
VlanId: i.VlanTag,
}
err := tmp_vlan.Get(c)
if err != nil && !tmp_vlan.materialized {
err_str := "Vlan Not found unable to configure L2Interface Stats " + err.(*RequestError).StatusCode + " | " + strconv.FormatBool(tmp_vlan.materialized)
return &RequestError{
StatusCode: err_str,
Err: errors.New("Update Error"),
}
}
updateMap["vlan_tag"] = map[string]interface{}{strconv.Itoa(i.VlanTag): tmp_vlan.GetURI()}
updateMap["vlan_mode"] = "access"
} else if i.VlanMode == "trunk" || i.VlanMode == "native-untagged" || i.VlanMode == "native-tagged" {
if i.NativeVlanTag {
i.VlanMode = "native-tagged"
} else {
i.VlanMode = "native-untagged"
}
if i.VlanTag == 1 || i.VlanTag == 0 {
updateMap["vlan_tag"] = nil
} else {
tmp_vlan := Vlan{
VlanId: i.VlanTag,
}
err := tmp_vlan.Get(c)
if err != nil && !tmp_vlan.materialized {
err_str := "Vlan Not found unable to configure L2Interface Stats " + err.(*RequestError).StatusCode + " | " + strconv.Itoa(i.VlanTag)
return &RequestError{
StatusCode: err_str,
Err: errors.New("Update Error"),
}
}
updateMap["vlan_tag"] = map[string]interface{}{
strconv.Itoa(tmp_vlan.VlanId): tmp_vlan.GetURI(),
}
}
vlan_trunks := map[string]interface{}{}
if !i.TrunkAllowedAll {
// Test what is behavior of List being empty or not
for _, item := range i.VlanIds {
tmp_vlan_obj := Vlan{VlanId: item.(int)}
err = tmp_vlan_obj.Get(c)
if err == nil {
vlan_trunks[strconv.Itoa(tmp_vlan_obj.VlanId)] = tmp_vlan_obj.GetURI()
}
}
} else {
vlan_trunks = map[string]interface{}{}
}
updateMap["vlan_trunks"] = vlan_trunks
updateMap["vlan_mode"] = i.VlanMode
} else {
status_str := "Invalid Required Value: VlanMode - valid options are 'access' or 'trunk' received: " + i.VlanMode
return &RequestError{
StatusCode: status_str,
Err: errors.New("Update Error"),
}
}
updateMap["description"] = i.Description
updateMap["admin"] = i.Interface.AdminState
updateMap["routing"] = false
if i.Interface.AdminState == "down" {
updateMap["user_config"] = map[string]interface{}{
"admin": "down"}
}
if i.Interface.AdminState == "up" {
updateMap["user_config"] = map[string]interface{}{
"admin": "up"}
}
updateBody, _ := json.Marshal(updateMap)
json_body := bytes.NewBuffer(updateBody)
if use_put {
res := put(c, url, json_body)
if res.Status != "200 OK" {
status_str := string(updateBody) + "PUT status code = " + res.Status
return &RequestError{
//StatusCode: res.Status,
StatusCode: status_str,
Err: errors.New("Update Error"),
}
}
} else {
res := patch(c, url, json_body)
if res.Status != "204 No Content" {
status_str := string(updateBody) + "PATCH status code = " + res.Status
return &RequestError{
//StatusCode: res.Status,
StatusCode: status_str,
Err: errors.New("Update Error"),
}
}
}
i.materialized = true
return nil
}
// Delete performs PUT to remove/default L2Interface configuration from the given Client object.
func (i *L2Interface) Delete(c *Client) error {
base_uri := "system/interfaces"
if i.Interface.Name == "" {
return &RequestError{
StatusCode: "Missing Interface unable to delete L2Interface",
Err: errors.New("Delete Error"),
}
}
int_str := url.PathEscape(i.Interface.Name)
putMap := map[string]interface{}{}
putBody, _ := json.Marshal(putMap)
json_body := bytes.NewBuffer(putBody)
url := "https://" + c.Hostname + "/rest/" + c.Version + "/" + base_uri + "/" + int_str
//need logic for handling interfaces between platforms
res := put(c, url, json_body)
if res.Status != "204 No Content" && res.Status != "200 OK" {
return &RequestError{
StatusCode: res.Status,
Err: errors.New("Delete Error"),
}
}
return nil
}
// Get performs GET to retrieve L2Interface configuration from the given Client object.
func (i *L2Interface) Get(c *Client) error {
base_uri := "system/interfaces"
if i.Interface.Name == "" {
return &RequestError{
StatusCode: "Missing Interface unable to retrieve L2Interface",
Err: errors.New("Get Error"),
}
}
int_str := url.PathEscape(i.Interface.Name)
url := "https://" + c.Hostname + "/rest/" + c.Version + "/" + base_uri + "/" + int_str + "?selector=writable"
res, body := get(c, url)
if res.Status != "200 OK" {
i.materialized = false
return &RequestError{
StatusCode: res.Status,
Err: errors.New("Get Error"),
}
}
if i.Interface.InterfaceDetails == nil {
i.Interface.InterfaceDetails = map[string]interface{}{}
}
for key, value := range body {
i.Interface.InterfaceDetails[key] = value
if key == "description" && value != nil {
i.Description = value.(string)
i.Interface.Description = value.(string)
}
if key == "vlan_mode" && value != nil {
i.VlanMode = value.(string)
if i.VlanMode == "native-tagged" {
i.NativeVlanTag = true
} else {
i.NativeVlanTag = false
}
}
if key == "admin" && value != nil {
i.Interface.AdminState = value.(string)
}
if key == "vlan_tag" && value != nil {
// convert json to value singular
// "vlan_tag": {
// "42": "/rest/v10.09/system/vlans/42"
// },
for key, _ := range value.(map[string]interface{}) {
vlan_int, _ := strconv.Atoi(key)
i.VlanTag = vlan_int
}
}
if key == "vlan_trunks" && len(value.(map[string]interface{})) != 0 {
// convert json to value singular
// "vlan_trunks": {
// "42": "/rest/v10.09/system/vlans/42"
// },
tmp_splice := []interface{}{}
for key, _ := range value.(map[string]interface{}) {
vlan_int, _ := strconv.Atoi(key)
tmp_splice = append(tmp_splice, vlan_int)
}
i.VlanIds = tmp_splice
i.TrunkAllowedAll = false
} else if key == "vlan_trunks" && len(value.(map[string]interface{})) == 0 {
i.TrunkAllowedAll = true
i.VlanIds = []interface{}{}
}
}
i.materialized = true
return nil
}
// GetStatus returns True if L2Interface exists on Client object or False if not.
func (i *L2Interface) GetStatus() bool {
return i.materialized
}