-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathprovider.go
More file actions
287 lines (211 loc) · 5.99 KB
/
Copy pathprovider.go
File metadata and controls
287 lines (211 loc) · 5.99 KB
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
package inwx
import (
"context"
"fmt"
"strings"
"sync"
"time"
"github.com/libdns/libdns"
)
// Provider facilitates DNS record manipulation with INWX.
type Provider struct {
// Username of your INWX account.
Username string `json:"username,omitempty"`
// Password of your INWX account.
Password string `json:"password,omitempty"`
// The shared secret is used to generate a TAN if you have activated "Mobile TAN" for your INWX account.
SharedSecret string `json:"shared_secret,omitempty"`
// URL of the JSON-RPC API endpoint. It defaults to the production endpoint.
EndpointURL string `json:"endpoint_url,omitempty"`
client *client
clientMu sync.Mutex
}
// GetRecords lists all the records in the zone.
func (p *Provider) GetRecords(ctx context.Context, zone string) ([]libdns.Record, error) {
client, err := p.getClient(ctx)
defer p.removeClient(ctx)
if err != nil {
return nil, err
}
inwxRecords, err := client.getRecords(ctx, getDomain(zone))
if err != nil {
return nil, err
}
results := make([]libdns.Record, 0, len(inwxRecords))
for _, inwxRecord := range inwxRecords {
result, err := libdnsRecord(inwxRecord, zone)
if err != nil {
return nil, fmt.Errorf("parsing INWX DNS record %+v: %v", inwxRecord, err)
}
results = append(results, result)
}
return results, nil
}
// AppendRecords adds records to the zone. It returns the records that were added.
func (p *Provider) AppendRecords(ctx context.Context, zone string, records []libdns.Record) ([]libdns.Record, error) {
client, err := p.getClient(ctx)
defer p.removeClient(ctx)
if err != nil {
return nil, err
}
var results []libdns.Record
for _, record := range records {
var _, err = client.createRecord(ctx, inwxRecord(record), getDomain(zone))
if err != nil {
return nil, err
}
results = append(results, record)
}
return results, 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(ctx context.Context, zone string, records []libdns.Record) ([]libdns.Record, error) {
client, err := p.getClient(ctx)
defer p.removeClient(ctx)
if err != nil {
return nil, err
}
var results []libdns.Record
for _, record := range records {
matches, err := p.client.findRecords(ctx, inwxRecord(record), getDomain(zone), false)
if err != nil {
return nil, err
}
if len(matches) == 0 {
_, err := client.createRecord(ctx, inwxRecord(record), getDomain(zone))
if err != nil {
return nil, err
}
results = append(results, record)
continue
}
if len(matches) > 1 {
return nil, fmt.Errorf("unexpectedly found more than 1 record for %v", record)
}
inwxRecord := inwxRecord(record)
inwxRecord.ID = matches[0].ID
err = client.updateRecord(ctx, inwxRecord)
if err != nil {
return nil, err
}
results = append(results, record)
}
return results, nil
}
// DeleteRecords deletes the records from the zone. It returns the records that were deleted.
func (p *Provider) DeleteRecords(ctx context.Context, zone string, records []libdns.Record) ([]libdns.Record, error) {
client, err := p.getClient(ctx)
defer p.removeClient(ctx)
if err != nil {
return nil, err
}
var results []libdns.Record
for _, record := range records {
exactMatches, err := p.client.findRecords(ctx, inwxRecord(record), getDomain(zone), true)
if err != nil {
return nil, err
}
for _, inwxRecord := range exactMatches {
err := client.deleteRecord(ctx, inwxRecord)
if err != nil {
return nil, err
}
results = append(results, record)
}
}
return results, nil
}
// ListZones lists all zones (nameserver domains) available in the INWX account.
func (p *Provider) ListZones(ctx context.Context) ([]libdns.Zone, error) {
client, err := p.getClient(ctx)
defer p.removeClient(ctx)
if err != nil {
return nil, err
}
domains, err := client.listNameservers(ctx)
if err != nil {
return nil, err
}
zones := make([]libdns.Zone, 0, len(domains))
for _, domain := range domains {
zones = append(zones, libdns.Zone{
Name: domain.Domain,
})
}
return zones, nil
}
func (p *Provider) getClient(ctx context.Context) (*client, error) {
p.clientMu.Lock()
defer p.clientMu.Unlock()
if p.client == nil {
client, err := newClient(p.getEndpointURL())
p.client = client
if err != nil {
return nil, err
}
err = client.login(ctx, p.Username, p.Password, p.SharedSecret)
if err != nil {
return nil, err
}
}
return p.client, nil
}
func (p *Provider) removeClient(ctx context.Context) {
p.clientMu.Lock()
defer p.clientMu.Unlock()
if p.client == nil {
return
}
p.client.logout(ctx)
p.client = nil
}
func (p *Provider) getEndpointURL() string {
if p.EndpointURL != "" {
return p.EndpointURL
}
return endpointURL
}
func getDomain(zone string) string {
return strings.TrimSuffix(zone, ".")
}
func libdnsRecord(record nameserverRecord, zone string) (libdns.Record, error) {
name := libdns.RelativeName(record.Name, getDomain(zone))
ttl := time.Duration(record.TTL) * time.Second
data := record.Content
if record.Type == "MX" || record.Type == "SRV" {
data = fmt.Sprintf("%d %s", record.Priority, record.Content)
}
return libdns.RR{
Type: record.Type,
Name: name,
Data: data,
TTL: ttl,
}.Parse()
}
func inwxRecord(record libdns.Record) nameserverRecord {
rr := record.RR()
inwxRecord := nameserverRecord{
Name: rr.Name,
Type: rr.Type,
Content: rr.Data,
TTL: int(rr.TTL.Seconds()),
}
switch rec := record.(type) {
case libdns.MX:
inwxRecord.Content = rec.Target
inwxRecord.Priority = uint(rec.Preference)
case libdns.SRV:
inwxRecord.Content = fmt.Sprintf("%d %d %s", rec.Weight, rec.Port, rec.Target)
inwxRecord.Priority = uint(rec.Priority)
}
return inwxRecord
}
// Interface guards
var (
_ libdns.RecordGetter = (*Provider)(nil)
_ libdns.RecordAppender = (*Provider)(nil)
_ libdns.RecordSetter = (*Provider)(nil)
_ libdns.RecordDeleter = (*Provider)(nil)
_ libdns.ZoneLister = (*Provider)(nil)
)