This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprovider.go
84 lines (70 loc) · 2.39 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
package civo
import (
"context"
"strings"
"time"
"github.com/libdns/libdns"
)
type Provider struct {
Client
APIToken string `json:"api_token,omitempty"`
}
// Civo is handling a zone without a trailing dot
func (p *Provider) removeTrailingDot(fqdn string) string {
return strings.TrimRight(fqdn, ".")
}
// GetRecords lists all the records in the zone.
func (p *Provider) GetRecords(ctx context.Context, zone string) ([]libdns.Record, error) {
records, err := p.getDNSEntries(ctx, p.removeTrailingDot(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 := p.addDNSEntry(ctx, p.removeTrailingDot(zone), record)
if err != nil {
return nil, err
}
newRecord.TTL = newRecord.TTL * time.Second
appendedRecords = append(appendedRecords, newRecord)
}
return appendedRecords, 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 := p.updateDNSEntry(ctx, p.removeTrailingDot(zone), record)
if err != nil {
return setRecords, err
}
setRecord.TTL = time.Duration(setRecord.TTL) * time.Second
setRecords = append(setRecords, setRecord)
}
return setRecords, 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) {
var deletedRecords []libdns.Record
for _, record := range records {
deletedRecord, err := p.removeDNSEntry(ctx, p.removeTrailingDot(zone), record)
if err != nil {
return nil, err
}
deletedRecord.TTL = deletedRecord.TTL * time.Second
deletedRecords = append(deletedRecords, deletedRecord)
}
return deletedRecords, nil
}
// Interface guards
var (
_ libdns.RecordGetter = (*Provider)(nil)
_ libdns.RecordAppender = (*Provider)(nil)
_ libdns.RecordSetter = (*Provider)(nil)
_ libdns.RecordDeleter = (*Provider)(nil)
)