-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.go
51 lines (45 loc) · 1.26 KB
/
setup.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
package tailscale
import (
"github.com/coredns/caddy"
"github.com/coredns/coredns/core/dnsserver"
"github.com/coredns/coredns/plugin"
)
// init registers this plugin.
func init() { plugin.Register("tailscale", setup) }
// setup is the function that gets called when the config parser see the token "example". Setup is responsible
// for parsing any extra options the example plugin may have. The first token this function sees is "example".
func setup(c *caddy.Controller) error {
ts := &Tailscale{}
for c.Next() {
args := c.RemainingArgs()
if len(args) != 1 {
return plugin.Error("tailscale", c.ArgErr())
}
ts.zone = args[0]
for c.NextBlock() {
switch c.Val() {
case "authkey":
args := c.RemainingArgs()
if len(args) != 1 {
return plugin.Error("tailscale", c.ArgErr())
}
ts.authkey = args[0]
case "fallthrough":
ts.fall.SetZonesFromArgs(c.RemainingArgs())
default:
return plugin.Error("tailscale", c.ArgErr())
}
}
}
// Add the Plugin to CoreDNS, so Servers can use it in their plugin chain.
dnsserver.GetConfig(c).AddPlugin(func(next plugin.Handler) plugin.Handler {
ts.next = next
if err := ts.start(); err != nil {
log.Error(err)
return nil
}
return ts
})
// All OK, return a nil error.
return nil
}