-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdnspod.go
More file actions
265 lines (236 loc) · 6.64 KB
/
dnspod.go
File metadata and controls
265 lines (236 loc) · 6.64 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
package dnspod
import (
"context"
"fmt"
"strconv"
"strings"
"time"
"github.com/caddyserver/caddy/v2"
"github.com/caddyserver/caddy/v2/caddyconfig/caddyfile"
"github.com/libdns/libdns"
"github.com/nrdcg/dnspod-go"
)
// Record wraps libdns.RR to include the DNSPod record ID.
type Record struct {
base libdns.RR
ID string
}
// RR returns the underlying libdns.RR struct.
func (r Record) RR() libdns.RR {
return r.base
}
// Provider wraps the provider implementation as a Caddy module.
type Provider struct {
APIToken string `json:"api_token,omitempty"`
}
func init() {
caddy.RegisterModule(Provider{})
}
// CaddyModule returns the Caddy module information.
func (Provider) CaddyModule() caddy.ModuleInfo {
return caddy.ModuleInfo{
ID: "dns.providers.dnspod",
New: func() caddy.Module { return new(Provider) },
}
}
// Provision sets up the module.
func (p *Provider) Provision(ctx caddy.Context) error {
p.APIToken = caddy.NewReplacer().ReplaceAll(p.APIToken, "")
return nil
}
// UnmarshalCaddyfile sets up the DNS provider from Caddyfile tokens. Syntax:
//
// dnspod [<api_token>] {
// api_token <api_token>
// }
func (p *Provider) UnmarshalCaddyfile(d *caddyfile.Dispenser) error {
for d.Next() {
if d.NextArg() {
p.APIToken = d.Val()
}
if d.NextArg() {
return d.ArgErr()
}
for nesting := d.Nesting(); d.NextBlock(nesting); {
switch d.Val() {
case "api_token":
if !d.NextArg() {
return d.ArgErr()
}
if p.APIToken != "" {
return d.Err("API token already set")
}
p.APIToken = d.Val()
if d.NextArg() {
return d.ArgErr()
}
default:
return d.Errf("unrecognized subdirective '%s'", d.Val())
}
}
}
if p.APIToken == "" {
return d.Err("missing API token")
}
return nil
}
// GetRecords lists all the records in the zone.
func (p *Provider) GetRecords(ctx context.Context, zone string) ([]libdns.Record, error) {
client := p.getClient()
zone = strings.Trim(zone, ".")
domainID, err := p.getDomainID(zone)
if err != nil {
return nil, err
}
records, _, err := client.Records.List(domainID, "")
if err != nil {
return nil, err
}
var libdnsRecords []libdns.Record
for _, record := range records {
libdnsRecords = append(libdnsRecords, p.toLibdnsRecord(record))
}
return libdnsRecords, 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 := p.getClient()
zone = strings.Trim(zone, ".")
domainID, err := p.getDomainID(zone)
if err != nil {
return nil, err
}
var addedRecords []libdns.Record
for _, libdnsRecord := range records {
dnspodRecord := p.fromLibdnsRecord(libdnsRecord)
created, _, err := client.Records.Create(domainID, dnspodRecord)
if err != nil {
return addedRecords, err
}
addedRecords = append(addedRecords, p.toLibdnsRecord(created))
}
return addedRecords, nil
}
// SetRecords sets the records in the zone, either by updating existing ones 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 := p.getClient()
zone = strings.Trim(zone, ".")
domainID, err := p.getDomainID(zone)
if err != nil {
return nil, err
}
var setRecords []libdns.Record
for _, libdnsRecord := range records {
id := ""
if r, ok := libdnsRecord.(Record); ok {
id = r.ID
}
dnspodRec := p.fromLibdnsRecord(libdnsRecord)
if id == "" {
created, _, err := client.Records.Create(domainID, dnspodRec)
if err != nil {
return setRecords, err
}
setRecords = append(setRecords, p.toLibdnsRecord(created))
continue
}
// Set ID in the attributes for Update as DNSPod API often requires it in the body
dnspodRec.ID = id
updated, _, err := client.Records.Update(domainID, id, dnspodRec)
if err != nil {
// Fallback: Delete and Re-create if Update fails (sometimes DNSPod API is picky about record IDs)
_, _ = client.Records.Delete(domainID, id)
created, _, err := client.Records.Create(domainID, dnspodRec)
if err != nil {
return setRecords, fmt.Errorf("update failed (%v) and fallback create also failed: %v", id, err)
}
setRecords = append(setRecords, p.toLibdnsRecord(created))
continue
}
setRecords = append(setRecords, p.toLibdnsRecord(updated))
}
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) {
client := p.getClient()
zone = strings.Trim(zone, ".")
domainID, err := p.getDomainID(zone)
if err != nil {
return nil, err
}
var deletedRecords []libdns.Record
for _, libdnsRecord := range records {
id := ""
if r, ok := libdnsRecord.(Record); ok {
id = r.ID
}
if id == "" {
continue
}
_, err := client.Records.Delete(domainID, id)
if err != nil {
return deletedRecords, err
}
deletedRecords = append(deletedRecords, libdnsRecord)
}
return deletedRecords, nil
}
func (p *Provider) getClient() *dnspod.Client {
return dnspod.NewClient(dnspod.CommonParams{
LoginToken: p.APIToken,
})
}
func (p *Provider) getDomainID(zone string) (string, error) {
// If zone is already numeric, assume it's an ID
if _, err := strconv.Atoi(zone); err == nil {
return zone, nil
}
client := p.getClient()
domains, _, err := client.Domains.List()
if err != nil {
return "", err
}
for _, d := range domains {
if d.Name == zone {
return d.ID.String(), nil
}
}
return "", fmt.Errorf("domain %s not found", zone)
}
func (p *Provider) toLibdnsRecord(record dnspod.Record) libdns.Record {
ttl, _ := strconv.Atoi(record.TTL)
return Record{
ID: record.ID,
base: libdns.RR{
Type: record.Type,
Name: record.Name,
Data: record.Value,
TTL: time.Duration(ttl) * time.Second,
},
}
}
func (p *Provider) fromLibdnsRecord(record libdns.Record) dnspod.Record {
rr := record.RR()
dnspodRec := dnspod.Record{
Type: rr.Type,
Name: rr.Name,
Value: rr.Data,
TTL: fmt.Sprintf("%.0f", rr.TTL.Seconds()),
Line: "默认",
}
// Note: We don't set ID here by default as it's often used for Create/Update attributes
// Note: dnspod-go Record.MX is used for priority.
// Since libdns.RR doesn't expose it, we'll just handle basic types.
return dnspodRec
}
// Interface guards
var (
_ caddyfile.Unmarshaler = (*Provider)(nil)
_ caddy.Provisioner = (*Provider)(nil)
_ libdns.RecordGetter = (*Provider)(nil)
_ libdns.RecordAppender = (*Provider)(nil)
_ libdns.RecordSetter = (*Provider)(nil)
_ libdns.RecordDeleter = (*Provider)(nil)
)