-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcaddyfile.go
More file actions
42 lines (36 loc) · 817 Bytes
/
Copy pathcaddyfile.go
File metadata and controls
42 lines (36 loc) · 817 Bytes
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
package crawlwall
import (
"fmt"
"github.com/caddyserver/caddy/v2/caddyconfig/httpcaddyfile"
"github.com/caddyserver/caddy/v2/modules/caddyhttp"
)
func init() {
httpcaddyfile.RegisterHandlerDirective("crawlwall", parseCaddyfile)
}
func parseCaddyfile(h httpcaddyfile.Helper) (caddyhttp.MiddlewareHandler, error) {
var m Crawlwall
for h.Next() {
for h.NextBlock(0) {
switch h.Val() {
case "policy":
if !h.NextArg() {
return nil, h.ArgErr()
}
m.PolicyFile = h.Val()
case "ledger":
if !h.NextArg() {
return nil, h.ArgErr()
}
m.LedgerDSN = h.Val()
case "fail_mode":
if !h.NextArg() {
return nil, h.ArgErr()
}
m.FailMode = h.Val()
default:
return nil, fmt.Errorf("unrecognized crawlwall option %q", h.Val())
}
}
}
return &m, nil
}