forked from linode/linodego
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vlans.go
93 lines (76 loc) · 2.29 KB
/
vlans.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
package linodego
import (
"context"
"encoding/json"
"fmt"
"time"
"github.com/go-resty/resty/v2"
"github.com/linode/linodego/internal/parseabletime"
)
type VLAN struct {
Label string `json:"label"`
Linodes []int `json:"linodes"`
Region string `json:"region"`
Created *time.Time `json:"-"`
}
// UnmarshalJSON for VLAN responses
func (v *VLAN) UnmarshalJSON(b []byte) error {
type Mask VLAN
p := struct {
*Mask
Created *parseabletime.ParseableTime `json:"created"`
}{
Mask: (*Mask)(v),
}
if err := json.Unmarshal(b, &p); err != nil {
return err
}
v.Created = (*time.Time)(p.Created)
return nil
}
// VLANsPagedResponse represents a Linode API response for listing of VLANs
type VLANsPagedResponse struct {
*PageOptions
Data []VLAN `json:"data"`
}
func (VLANsPagedResponse) endpoint(_ ...any) string {
return "networking/vlans"
}
func (resp *VLANsPagedResponse) castResult(r *resty.Request, e string) (int, int, error) {
res, err := coupleAPIErrors(r.SetResult(VLANsPagedResponse{}).Get(e))
if err != nil {
return 0, 0, err
}
castedRes := res.Result().(*VLANsPagedResponse)
resp.Data = append(resp.Data, castedRes.Data...)
return castedRes.Pages, castedRes.Results, nil
}
// ListVLANs returns a paginated list of VLANs
func (c *Client) ListVLANs(ctx context.Context, opts *ListOptions) ([]VLAN, error) {
response := VLANsPagedResponse{}
err := c.listHelper(ctx, &response, opts)
if err != nil {
return nil, err
}
return response.Data, nil
}
// GetVLANIPAMAddress returns the IPAM Address for a given VLAN Label as a string (10.0.0.1/24)
func (c *Client) GetVLANIPAMAddress(ctx context.Context, linodeID int, vlanLabel string) (string, error) {
f := Filter{}
f.AddField(Eq, "interfaces", vlanLabel)
vlanFilter, err := f.MarshalJSON()
if err != nil {
return "", fmt.Errorf("Unable to convert VLAN label: %s to a filterable object: %w", vlanLabel, err)
}
cfgs, err := c.ListInstanceConfigs(ctx, linodeID, &ListOptions{Filter: string(vlanFilter)})
if err != nil {
return "", fmt.Errorf("Fetching configs for instance %v failed: %w", linodeID, err)
}
interfaces := cfgs[0].Interfaces
for _, face := range interfaces {
if face.Label == vlanLabel {
return face.IPAMAddress, nil
}
}
return "", fmt.Errorf("Failed to find IPAMAddress for VLAN: %s", vlanLabel)
}