forked from libdns/hetzner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
provider.go
80 lines (65 loc) · 2.24 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
package vercel
import (
"context"
"strings"
"github.com/libdns/libdns"
)
// Provider implements the libdns interfaces for Vercel
type Provider struct {
// AuthAPIToken is the Vercel Authentication Token - see https://vercel.com/docs/api#api-basics/authentication
AuthAPIToken string `json:"auth_api_token"`
}
// GetRecords lists all the records in the zone.
func (p *Provider) GetRecords(ctx context.Context, zone string) ([]libdns.Record, error) {
records, err := getAllRecords(ctx, p.AuthAPIToken, unFQDN(zone))
if err != nil {
return nil, err
}
return records, 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) {
var appendedRecords []libdns.Record
for _, record := range records {
newRecord, err := createRecord(ctx, p.AuthAPIToken, unFQDN(zone), record)
if err != nil {
return nil, err
}
appendedRecords = append(appendedRecords, newRecord)
}
return appendedRecords, nil
}
// DeleteRecords deletes the records from the zone.
func (p *Provider) DeleteRecords(ctx context.Context, zone string, records []libdns.Record) ([]libdns.Record, error) {
for _, record := range records {
err := deleteRecord(ctx, unFQDN(zone), p.AuthAPIToken, record)
if err != nil {
return nil, err
}
}
return records, 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) {
var setRecords []libdns.Record
for _, record := range records {
setRecord, err := createOrUpdateRecord(ctx, p.AuthAPIToken, unFQDN(zone), record)
if err != nil {
return setRecords, err
}
setRecords = append(setRecords, setRecord)
}
return setRecords, nil
}
// unFQDN trims any trailing "." from fqdn. Vercel's API does not use FQDNs.
func unFQDN(fqdn string) string {
return strings.TrimSuffix(fqdn, ".")
}
// Interface guards
var (
_ libdns.RecordGetter = (*Provider)(nil)
_ libdns.RecordAppender = (*Provider)(nil)
_ libdns.RecordSetter = (*Provider)(nil)
_ libdns.RecordDeleter = (*Provider)(nil)
)