-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbunny.go
82 lines (74 loc) · 2.05 KB
/
bunny.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
package bunny
import (
"github.com/caddyserver/caddy/v2"
"github.com/caddyserver/caddy/v2/caddyconfig/caddyfile"
"github.com/libdns/bunny"
"github.com/libdns/libdns"
"go.uber.org/zap"
)
// Provider lets Caddy read and manipulate DNS records hosted by this DNS provider.
type Provider struct{ *bunny.Provider }
func init() {
caddy.RegisterModule(Provider{})
}
// CaddyModule returns the Caddy module information.
func (Provider) CaddyModule() caddy.ModuleInfo {
return caddy.ModuleInfo{
ID: "dns.providers.bunny",
New: func() caddy.Module { return &Provider{new(bunny.Provider)} },
}
}
// Provision sets up the module. Implements caddy.Provisioner.
func (p *Provider) Provision(ctx caddy.Context) error {
p.Provider.AccessKey = caddy.NewReplacer().ReplaceAll(p.Provider.AccessKey, "")
// Set up the logger. This will automatically enable debug in the provider.
p.Logger = func(msg string, records []libdns.Record) {
if len(records) > 1 {
ctx.Logger(p).Debug(msg, zap.Any("records", records))
} else if len(records) > 0 {
ctx.Logger(p).Debug(msg, zap.Any("record", records[0]))
} else {
ctx.Logger(p).Debug(msg)
}
}
return nil
}
// UnmarshalCaddyfile sets up the DNS provider from Caddyfile tokens. Syntax:
//
// bunny [<access_token>] {
// access_key <access_token>
// }
//
// Expansion of placeholders in the API token is left to the JSON config caddy.Provisioner (above).
func (p *Provider) UnmarshalCaddyfile(d *caddyfile.Dispenser) error {
for d.Next() {
if d.NextArg() {
p.Provider.AccessKey = d.Val()
}
if d.NextArg() {
return d.ArgErr()
}
for nesting := d.Nesting(); d.NextBlock(nesting); {
switch d.Val() {
case "access_key":
if d.NextArg() {
p.Provider.AccessKey = d.Val()
}
if d.NextArg() {
return d.ArgErr()
}
default:
return d.Errf("unrecognized subdirective '%s'", d.Val())
}
}
}
if p.Provider.AccessKey == "" {
return d.Err("missing access key")
}
return nil
}
// Interface guards
var (
_ caddyfile.Unmarshaler = (*Provider)(nil)
_ caddy.Provisioner = (*Provider)(nil)
)