-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprovider.go
209 lines (184 loc) · 5.94 KB
/
provider.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
package infoblox
import (
"context"
"fmt"
ibclient "github.com/infobloxopen/infoblox-go-client/v2"
"github.com/libdns/libdns"
"strings"
)
// Provider facilitates DNS record manipulation with Infoblox
type Provider struct {
Host string `json:"host,omitempty"`
Version string `json:"version,omitempty"`
Username string `json:"username,omitempty"`
Password string `json:"password,omitempty"`
}
// GetRecords lists all the records in the zone.
func (p *Provider) GetRecords(_ context.Context, zone string) ([]libdns.Record, error) {
conn, err := p.getConnector()
if err != nil {
return nil, fmt.Errorf("failed to get connector: %w", err)
}
qp := ibclient.NewQueryParams(false, map[string]string{"name": zone})
var cnameRecords []ibclient.RecordCNAME
err = conn.GetObject(&ibclient.RecordCNAME{}, "", qp, &cnameRecords)
if err != nil {
return nil, fmt.Errorf("failed to get CNAME records: %w", err)
}
var txtRecords []ibclient.RecordTXT
err = conn.GetObject(&ibclient.RecordTXT{}, "", qp, &txtRecords)
if err != nil {
return nil, fmt.Errorf("failed to get TXT records: %w", err)
}
var legitzone = strings.TrimSuffix(zone, ".")
var list []libdns.Record
for i := range cnameRecords {
list = append(list, libdns.Record{
Type: "CNAME",
Name: strings.TrimSuffix(*cnameRecords[i].Name, "."+legitzone),
Value: *cnameRecords[i].Canonical,
})
}
for i := range txtRecords {
list = append(list, libdns.Record{
Type: "TXT",
Name: strings.TrimSuffix(*txtRecords[i].Name, "."+legitzone),
Value: *txtRecords[i].Text,
})
}
return list, nil
}
// AppendRecords adds records to the zone. It returns the records that were added.
func (p *Provider) AppendRecords(_ context.Context, zone string, records []libdns.Record) ([]libdns.Record, error) {
var added []libdns.Record
objMgr, err := p.getObjectManager()
if err != nil {
return nil, fmt.Errorf("failed to get object manager: %w", err)
}
var legitzone = strings.TrimSuffix(zone, ".")
for i := range records {
switch records[i].Type {
case "CNAME":
record, err := objMgr.CreateCNAMERecord("default", records[i].Value, records[i].Name+"."+legitzone, true, uint32(records[i].TTL.Seconds()), "", nil)
if err != nil {
continue
}
added = append(added, libdns.Record{
Type: "CNAME",
Name: strings.TrimSuffix(*record.Name, "."+legitzone),
Value: *record.Canonical,
})
case "TXT":
record, err := objMgr.CreateTXTRecord("default", records[i].Name+"."+legitzone, records[i].Value, uint32(records[i].TTL.Seconds()), true, "", nil)
if err != nil {
continue
}
added = append(added, libdns.Record{
Type: "TXT",
Name: strings.TrimSuffix(*record.Name, "."+legitzone),
Value: *record.Text,
})
}
}
return added, nil
}
// SetRecords sets the records in the zone, either by updating existing records or creating new ones.
// It returns the updated records.
func (p *Provider) SetRecords(_ context.Context, zone string, records []libdns.Record) ([]libdns.Record, error) {
var updated []libdns.Record
objMgr, err := p.getObjectManager()
if err != nil {
return nil, fmt.Errorf("failed to get object manager: %w", err)
}
var legitzone = strings.TrimSuffix(zone, ".")
for i := range records {
switch records[i].Type {
case "CNAME":
record, err := objMgr.GetCNAMERecord("default", "", records[i].Name)
if err != nil {
record, err = objMgr.CreateCNAMERecord("default", records[i].Value, records[i].Name+"."+legitzone, true, uint32(records[i].TTL.Seconds()), "", nil)
if err != nil {
continue
}
} else {
_, err := objMgr.UpdateCNAMERecord(record.Ref, records[i].Value, *record.Name, *record.UseTtl, *record.Ttl, *record.Comment, record.Ea)
if err != nil {
continue
}
}
updated = append(updated, libdns.Record{
Type: "CNAME",
Name: strings.TrimSuffix(*record.Name, "."+legitzone),
Value: *record.Canonical,
})
case "TXT":
record, err := objMgr.GetTXTRecord("default", records[i].Name)
if err != nil {
record, err = objMgr.CreateTXTRecord("default", records[i].Name+"."+legitzone, records[i].Value, uint32(records[i].TTL.Seconds()), true, "", nil)
if err != nil {
continue
}
} else {
record, err = objMgr.UpdateTXTRecord(record.Ref, *record.Name, records[i].Value, *record.Ttl, *record.UseTtl, *record.Comment, record.Ea)
if err != nil {
continue
}
}
updated = append(updated, libdns.Record{
Type: "TXT",
Name: strings.TrimSuffix(*record.Name, "."+legitzone),
Value: *record.Text,
})
}
}
return updated, nil
}
// DeleteRecords deletes the records from the zone. It returns the records that were deleted.
func (p *Provider) DeleteRecords(_ context.Context, zone string, records []libdns.Record) ([]libdns.Record, error) {
var deleted []libdns.Record
objMgr, err := p.getObjectManager()
if err != nil {
return nil, fmt.Errorf("failed to get object manager: %w", err)
}
var legitzone = strings.TrimSuffix(zone, ".")
for i := range records {
switch records[i].Type {
case "CNAME":
record, err := objMgr.GetCNAMERecord("default", "", records[i].Name+"."+legitzone)
if err != nil {
continue
}
_, err = objMgr.DeleteCNAMERecord(record.Ref)
if err != nil {
continue
}
deleted = append(deleted, libdns.Record{
Type: "CNAME",
Name: strings.TrimSuffix(*record.Name, "."+legitzone),
Value: *record.Canonical,
})
case "TXT":
record, err := objMgr.GetTXTRecord("default", records[i].Name+"."+legitzone)
if err != nil {
continue
}
_, err = objMgr.DeleteTXTRecord(record.Ref)
if err != nil {
continue
}
deleted = append(deleted, libdns.Record{
Type: "TXT",
Name: strings.TrimSuffix(*record.Name, "."+legitzone),
Value: *record.Text,
})
}
}
return deleted, nil
}
// Interface guards
var (
_ libdns.RecordGetter = (*Provider)(nil)
_ libdns.RecordAppender = (*Provider)(nil)
_ libdns.RecordSetter = (*Provider)(nil)
_ libdns.RecordDeleter = (*Provider)(nil)
)