mirror of
				https://github.com/coredns/coredns.git
				synced 2025-10-31 18:23:13 -04:00 
			
		
		
		
	* Fix linter errors * More linting fixes * More docs and making members private that dont need to be public * Fix linter errors * More linting fixes * More docs and making members private that dont need to be public * More lint fixes This leaves: ~~~ middleware/kubernetes/nametemplate/nametemplate.go:64:6: exported type NameTemplate should have comment or be unexported middleware/kubernetes/nametemplate/nametemplate.go:71:1: exported method NameTemplate.SetTemplate should have comment or be unexported middleware/kubernetes/nametemplate/nametemplate.go:108:1: exported method NameTemplate.GetZoneFromSegmentArray should have comment or be unexported middleware/kubernetes/nametemplate/nametemplate.go:116:1: exported method NameTemplate.GetNamespaceFromSegmentArray should have comment or be unexported middleware/kubernetes/nametemplate/nametemplate.go:120:1: exported method NameTemplate.GetServiceFromSegmentArray should have comment or be unexported middleware/kubernetes/nametemplate/nametemplate.go:124:1: exported method NameTemplate.GetTypeFromSegmentArray should have comment or be unexported middleware/kubernetes/nametemplate/nametemplate.go:135:1: exported method NameTemplate.GetSymbolFromSegmentArray should have comment or be unexported middleware/kubernetes/nametemplate/nametemplate.go:167:1: exported method NameTemplate.IsValid should have comment or be unexported middleware/kubernetes/nametemplate/nametemplate.go:182:6: exported type NameValues should have comment or be unexported middleware/kubernetes/util/util.go:1:1: package comment should be of the form "Package util ..." middleware/kubernetes/util/util.go:27:2: exported const WildcardStar should have comment (or a comment on this block) or be unexported middleware/proxy/lookup.go:66:1: exported method Proxy.Forward should have comment or be unexported middleware/proxy/proxy.go:24:6: exported type Client should have comment or be unexported middleware/proxy/proxy.go:107:1: exported function Clients should have comment or be unexported middleware/proxy/reverseproxy.go:10:6: exported type ReverseProxy should have comment or be unexported middleware/proxy/reverseproxy.go:16:1: exported method ReverseProxy.ServeDNS should have comment or be unexported middleware/proxy/upstream.go:42:6: exported type Options should have comment or be unexported ~~~ I plan on reworking the proxy anyway, so I'll leave that be.
		
			
				
	
	
		
			119 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			119 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package rewrite
 | |
| 
 | |
| import (
 | |
| 	"strings"
 | |
| 
 | |
| 	"github.com/miekg/coredns/core/dnsserver"
 | |
| 	"github.com/miekg/coredns/middleware"
 | |
| 
 | |
| 	"github.com/mholt/caddy"
 | |
| )
 | |
| 
 | |
| func init() {
 | |
| 	caddy.RegisterPlugin("rewrite", caddy.Plugin{
 | |
| 		ServerType: "dns",
 | |
| 		Action:     setup,
 | |
| 	})
 | |
| }
 | |
| 
 | |
| func setup(c *caddy.Controller) error {
 | |
| 	rewrites, err := rewriteParse(c)
 | |
| 	if err != nil {
 | |
| 		return middleware.Error("rewrite", err)
 | |
| 	}
 | |
| 
 | |
| 	dnsserver.GetConfig(c).AddMiddleware(func(next middleware.Handler) middleware.Handler {
 | |
| 		return Rewrite{Next: next, Rules: rewrites}
 | |
| 	})
 | |
| 
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func rewriteParse(c *caddy.Controller) ([]Rule, error) {
 | |
| 	var simpleRules []Rule
 | |
| 	var regexpRules []Rule
 | |
| 
 | |
| 	for c.Next() {
 | |
| 		var rule Rule
 | |
| 		/*
 | |
| 			var base = "."
 | |
| 			var err error
 | |
| 			var pattern, to string
 | |
| 			var status int
 | |
| 			var ifs []If
 | |
| 			var ext []string
 | |
| 		*/
 | |
| 
 | |
| 		args := c.RemainingArgs()
 | |
| 
 | |
| 		switch len(args) {
 | |
| 		case 1:
 | |
| 			/*
 | |
| 				base = args[0]
 | |
| 				fallthrough
 | |
| 			*/
 | |
| 		case 0:
 | |
| 			/*
 | |
| 				for c.NextBlock() {
 | |
| 					switch c.Val() {
 | |
| 					case "r", "regexp":
 | |
| 						if !c.NextArg() {
 | |
| 							return nil, c.ArgErr()
 | |
| 						}
 | |
| 						pattern = c.Val()
 | |
| 					case "to":
 | |
| 						args1 := c.RemainingArgs()
 | |
| 						if len(args1) == 0 {
 | |
| 							return nil, c.ArgErr()
 | |
| 						}
 | |
| 						to = strings.Join(args1, " ")
 | |
| 					case "ext": // TODO(miek): fix or remove
 | |
| 						args1 := c.RemainingArgs()
 | |
| 						if len(args1) == 0 {
 | |
| 							return nil, c.ArgErr()
 | |
| 						}
 | |
| 						ext = args1
 | |
| 					case "if":
 | |
| 						args1 := c.RemainingArgs()
 | |
| 						if len(args1) != 3 {
 | |
| 							return nil, c.ArgErr()
 | |
| 						}
 | |
| 						ifCond, err := NewIf(args1[0], args1[1], args1[2])
 | |
| 						if err != nil {
 | |
| 							return nil, err
 | |
| 						}
 | |
| 						ifs = append(ifs, ifCond)
 | |
| 					case "status": // TODO(miek): fix or remove
 | |
| 						if !c.NextArg() {
 | |
| 							return nil, c.ArgErr()
 | |
| 						}
 | |
| 						status, _ = strconv.Atoi(c.Val())
 | |
| 						if status < 200 || (status > 299 && status < 400) || status > 499 {
 | |
| 							return nil, c.Err("status must be 2xx or 4xx")
 | |
| 						}
 | |
| 					default:
 | |
| 						return nil, c.ArgErr()
 | |
| 					}
 | |
| 				}
 | |
| 				// ensure to or status is specified
 | |
| 				if to == "" && status == 0 {
 | |
| 					return nil, c.ArgErr()
 | |
| 				}
 | |
| 				// TODO(miek): complex rules
 | |
| 				if rule, err = NewComplexRule(base, pattern, to, status, ext, ifs); err != nil {
 | |
| 					return nil, err
 | |
| 				}
 | |
| 				regexpRules = append(regexpRules, rule)
 | |
| 			*/
 | |
| 
 | |
| 		// the only unhandled case is 2 and above
 | |
| 		default:
 | |
| 			rule = NewSimpleRule(args[0], strings.Join(args[1:], " "))
 | |
| 			simpleRules = append(simpleRules, rule)
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	// put simple rules in front to avoid regexp computation for them
 | |
| 	return append(simpleRules, regexpRules...), nil
 | |
| }
 |