generated from caddy-dns/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.go
100 lines (89 loc) · 2.72 KB
/
module.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
package template
import (
"context"
"fmt"
"time"
"github.com/caddyserver/caddy/v2"
"github.com/caddyserver/caddy/v2/caddyconfig/caddyfile"
"github.com/libdns/libdns"
"go.uber.org/zap"
)
// Provider lets Caddy read and manipulate DNS records hosted by this DNS provider.
type Provider struct {
WaitInMins string `json:"wait_in_mins,omitempty"`
}
func init() {
caddy.RegisterModule(Provider{})
}
// CaddyModule returns the Caddy module information.
func (Provider) CaddyModule() caddy.ModuleInfo {
return caddy.ModuleInfo{
ID: "dns.providers.manual_dns",
New: func() caddy.Module { return new(Provider) },
}
}
// Provision sets up the module. Implements caddy.Provisioner.
func (p *Provider) Provision(ctx caddy.Context) error {
p.WaitInMins = caddy.NewReplacer().ReplaceAll(p.WaitInMins, "1")
return nil
}
// AppendRecords doesn't do anything and simply returns the records that were asked to be added.
func (p *Provider) AppendRecords(ctx context.Context, zone string, records []libdns.Record) ([]libdns.Record, error) {
caddy.Log().Named("manual-dns").Info("please append following dns records manually", zap.Reflect("records", records))
p.wait()
return records, nil
}
// DeleteRecords doesn't do anything and simply returns the records that were asked to be deleted.
func (p *Provider) DeleteRecords(ctx context.Context, zone string, records []libdns.Record) ([]libdns.Record, error) {
caddy.Log().Named("manual-dns").Info("please delete following dns records manually", zap.Reflect("records", records))
p.wait()
return records, nil
}
func (p *Provider) wait() error {
minutesToWait, err := time.ParseDuration(fmt.Sprintf("%sm", p.WaitInMins))
if err != nil {
caddy.Log().Named("manual-dns").Error("waiting for records", zap.Error(err))
return err
}
caddy.Log().Named("manual-dns").Info("waiting for records", zap.Duration("time", minutesToWait))
time.Sleep(minutesToWait)
caddy.Log().Named("manual-dns").Info("wait finished")
return nil
}
// UnmarshalCaddyfile sets up the DNS provider from Caddyfile tokens. Syntax:
//
// providername [<wait_in_mins>] {
// wait_in_mins <wait_in_mins>
// }
func (p *Provider) UnmarshalCaddyfile(d *caddyfile.Dispenser) error {
for d.Next() {
if d.NextArg() {
p.WaitInMins = d.Val()
}
if d.NextArg() {
return d.ArgErr()
}
for nesting := d.Nesting(); d.NextBlock(nesting); {
switch d.Val() {
case "wait_in_mins":
if d.NextArg() {
p.WaitInMins = d.Val()
}
if d.NextArg() {
return d.ArgErr()
}
default:
return d.Errf("unrecognized subdirective '%s'", d.Val())
}
}
}
if p.WaitInMins == "" {
p.WaitInMins = "1"
}
return nil
}
// Interface guards
var (
_ caddyfile.Unmarshaler = (*Provider)(nil)
_ caddy.Provisioner = (*Provider)(nil)
)