-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathaccess.go
154 lines (137 loc) · 4.34 KB
/
access.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
/*
* Copyright 2020 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
*
*/
package cloudflare
import (
"github.com/cloudflare/cloudflare-go"
"k8s.io/client-go/util/flowcontrol"
"github.com/gardener/external-dns-management/pkg/dns/provider"
"github.com/gardener/external-dns-management/pkg/dns/provider/raw"
)
type Access interface {
ListZones(consume func(zone cloudflare.Zone) (bool, error)) error
ListRecords(zoneId string, consume func(record cloudflare.DNSRecord) (bool, error)) error
raw.Executor
}
type access struct {
*cloudflare.API
metrics provider.Metrics
rateLimiter flowcontrol.RateLimiter
}
func NewAccess(apiToken string, metrics provider.Metrics, rateLimiter flowcontrol.RateLimiter) (Access, error) {
api, err := cloudflare.NewWithAPIToken(apiToken)
if err != nil {
return nil, err
}
return &access{API: api, metrics: metrics, rateLimiter: rateLimiter}, nil
}
func (this *access) ListZones(consume func(zone cloudflare.Zone) (bool, error)) error {
this.metrics.AddGenericRequests(provider.M_LISTZONES, 1)
this.rateLimiter.Accept()
results, err := this.API.ListZones()
if err != nil {
return err
}
for _, z := range results {
if cont, err := consume(z); !cont || err != nil {
return err
}
}
return nil
}
func (this *access) ListRecords(zoneId string, consume func(record cloudflare.DNSRecord) (bool, error)) error {
return this.listRecords(zoneId, consume, cloudflare.DNSRecord{})
}
func (this *access) listRecords(zoneId string, consume func(record cloudflare.DNSRecord) (bool, error),
record cloudflare.DNSRecord) error {
this.metrics.AddZoneRequests(zoneId, provider.M_LISTRECORDS, 1)
this.rateLimiter.Accept()
results, err := this.DNSRecords(zoneId, record)
if err != nil {
return err
}
for _, z := range results {
if cont, err := consume(z); !cont || err != nil {
return err
}
}
return nil
}
func (this *access) CreateRecord(r raw.Record, zone provider.DNSHostedZone) error {
a := r.(*Record)
ttl := r.GetTTL()
testTTL(&ttl)
dnsRecord := cloudflare.DNSRecord{
Type: r.GetType(),
Name: r.GetDNSName(),
Content: r.GetValue(),
TTL: ttl,
ZoneID: a.ZoneID,
}
this.metrics.AddZoneRequests(zone.Id().ID, provider.M_CREATERECORDS, 1)
this.rateLimiter.Accept()
_, err := this.CreateDNSRecord(a.ZoneID, dnsRecord)
return err
}
func (this *access) UpdateRecord(r raw.Record, zone provider.DNSHostedZone) error {
a := r.(*Record)
ttl := r.GetTTL()
testTTL(&ttl)
dnsRecord := cloudflare.DNSRecord{
Type: r.GetType(),
Name: r.GetDNSName(),
Content: r.GetValue(),
TTL: ttl,
ZoneID: a.ZoneID,
}
this.metrics.AddZoneRequests(zone.Id().ID, provider.M_UPDATERECORDS, 1)
this.rateLimiter.Accept()
err := this.UpdateDNSRecord(a.ZoneID, r.GetId(), dnsRecord)
return err
}
func (this *access) DeleteRecord(r raw.Record, zone provider.DNSHostedZone) error {
a := r.(*Record)
this.metrics.AddZoneRequests(zone.Id().ID, provider.M_DELETERECORDS, 1)
this.rateLimiter.Accept()
err := this.DeleteDNSRecord(a.ZoneID, r.GetId())
return err
}
func (this *access) NewRecord(fqdn, rtype, value string, zone provider.DNSHostedZone, ttl int64) raw.Record {
return (*Record)(&cloudflare.DNSRecord{
Type: rtype,
Name: fqdn,
Content: value,
TTL: int(ttl),
ZoneID: zone.Id().ID,
})
}
func (this *access) GetRecordSet(dnsName, rtype string, zone provider.DNSHostedZone) (raw.RecordSet, error) {
rs := raw.RecordSet{}
consume := func(record cloudflare.DNSRecord) (bool, error) {
a := (*Record)(&record)
rs = append(rs, a)
return true, nil
}
err := this.listRecords(zone.Id().ID, consume, cloudflare.DNSRecord{Type: rtype, Name: dnsName})
if err != nil {
return nil, err
}
return rs, nil
}
func testTTL(ttl *int) {
if *ttl < 120 {
*ttl = 1
}
}