-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprovider.go
257 lines (189 loc) · 5.36 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
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
package inwx
import (
"context"
"fmt"
"strconv"
"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
}
records, err := client.getRecords(ctx, getDomain(zone))
if err != nil {
return nil, err
}
results := make([]libdns.Record, 0, len(records))
for _, inwxRecord := range records {
results = append(results, libdnsRecord(inwxRecord, zone))
}
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 recordId, err = client.createRecord(ctx, inwxRecord(record), getDomain(zone))
if err != nil {
return nil, err
}
record.ID = strconv.Itoa(recordId)
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 {
if record.ID == "" {
matches, err := p.client.findRecords(ctx, inwxRecord(record), getDomain(zone), false)
if err != nil {
return nil, err
}
if len(matches) == 1 {
record.ID = strconv.Itoa(matches[0].ID)
}
if len(matches) == 0 {
recordId, err := client.createRecord(ctx, inwxRecord(record), getDomain(zone))
if err != nil {
return nil, err
}
record.ID = strconv.Itoa(recordId)
results = append(results, record)
continue
}
if len(matches) > 1 {
return nil, fmt.Errorf("found more than one DNS record for %v", record)
}
}
err := client.updateRecord(ctx, inwxRecord(record))
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 {
delRecord := record
if record.ID == "" {
matches, err := p.client.findRecords(ctx, inwxRecord(record), getDomain(zone), true)
if err != nil {
return nil, err
}
if len(matches) == 1 {
delRecord = libdnsRecord(matches[0], zone)
}
if len(matches) > 1 {
return nil, fmt.Errorf("found more than one DNS record for %v", record)
}
}
err := client.deleteRecord(ctx, inwxRecord(delRecord))
if err != nil {
return nil, err
}
results = append(results, delRecord)
}
return results, 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 {
return libdns.Record{
ID: strconv.Itoa(record.ID),
Type: record.Type,
Name: libdns.RelativeName(record.Name, getDomain(zone)),
Value: record.Content,
TTL: time.Duration(record.TTL) * time.Second,
Priority: record.Priority,
}
}
func inwxRecord(record libdns.Record) nameserverRecord {
recordId, _ := strconv.Atoi(record.ID)
return nameserverRecord{
ID: recordId,
Name: record.Name,
Type: record.Type,
Content: record.Value,
TTL: int(record.TTL.Seconds()),
Priority: record.Priority,
}
}
// Interface guards
var (
_ libdns.RecordGetter = (*Provider)(nil)
_ libdns.RecordAppender = (*Provider)(nil)
_ libdns.RecordSetter = (*Provider)(nil)
_ libdns.RecordDeleter = (*Provider)(nil)
)