-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.go
134 lines (117 loc) · 3.05 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
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
package redis
import (
"fmt"
"net"
"strconv"
"strings"
"time"
"github.com/coredns/coredns/core/dnsserver"
"github.com/coredns/coredns/plugin"
clog "github.com/coredns/coredns/plugin/pkg/log"
"github.com/coredns/caddy"
)
var log = clog.NewWithPlugin("redisc")
func init() { plugin.Register("redisc", setup) }
func setup(c *caddy.Controller) error {
re, err := parse(c)
if err != nil {
return plugin.Error("redisc", err)
}
if err := re.connect(); err != nil {
log.Warningf("Failed to connect to Redis at %s: %s", re.addr, err)
} else {
log.Infof("Connected to Redis at %s", re.addr)
}
dnsserver.GetConfig(c).AddPlugin(func(next plugin.Handler) plugin.Handler {
re.Next = next
return re
})
return nil
}
func parse(c *caddy.Controller) (*Redis, error) {
re := New()
for c.Next() {
// cache [ttl] [zones..]
origins := make([]string, len(c.ServerBlockKeys))
copy(origins, c.ServerBlockKeys)
args := c.RemainingArgs()
if len(args) > 0 {
// first args may be just a number, then it is the ttl, if not it is a zone
ttl, err := strconv.Atoi(args[0])
if err == nil {
// Reserve 0 (and smaller for future things)
if ttl <= 0 {
return nil, fmt.Errorf("cache TTL can not be zero or negative: %d", ttl)
}
re.pttl = time.Duration(ttl) * time.Second
re.nttl = time.Duration(ttl) * time.Second
args = args[1:]
}
if len(args) > 0 {
copy(origins, args)
}
}
// Refinements? In an extra block.
for c.NextBlock() {
switch c.Val() {
case Success:
args := c.RemainingArgs()
if len(args) < 1 {
return nil, c.ArgErr()
}
pttl, err := strconv.Atoi(args[0])
if err != nil {
return nil, err
}
// Reserve 0 (and smaller for future things)
if pttl <= 0 {
return nil, fmt.Errorf("cache TTL can not be zero or negative: %d", pttl)
}
re.pttl = time.Duration(pttl) * time.Second
case Denial:
args := c.RemainingArgs()
if len(args) < 1 {
return nil, c.ArgErr()
}
nttl, err := strconv.Atoi(args[0])
if err != nil {
return nil, err
}
// Reserve 0 (and smaller for future things)
if nttl <= 0 {
return nil, fmt.Errorf("cache TTL can not be zero or negative: %d", nttl)
}
re.nttl = time.Duration(nttl) * time.Second
case "endpoint":
args := c.RemainingArgs()
if len(args) < 1 {
return nil, c.ArgErr()
}
h, _, err := net.SplitHostPort(args[0])
if err != nil && strings.Contains(err.Error(), "missing port in address") {
if x := net.ParseIP(args[0]); x == nil {
return nil, fmt.Errorf("failed to parse IP: %s", args[0])
}
re.addr = net.JoinHostPort(args[0], "6379")
continue
}
if err != nil {
return nil, err
}
// h should be a valid IP
if x := net.ParseIP(h); x == nil {
return nil, fmt.Errorf("failed to parse IP: %s", h)
}
re.addr = args[0]
default:
return nil, c.ArgErr()
}
}
for i := range origins {
origins[i] = plugin.Host(origins[i]).NormalizeExact()[0]
}
re.Zones = origins
return re, nil
}
return nil, nil
}