mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-04 03:03:14 -05:00 
			
		
		
		
	* Update Caddy to 1.0.1, and update import path This fix updates caddy to 1.0.1 and also updates the import path to github.com/caddyserver/caddy This fix fixes 2959 Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Also update plugin.cfg Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Update and bump zplugin.go Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
		
			
				
	
	
		
			79 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package ready
 | 
						|
 | 
						|
import (
 | 
						|
	"net"
 | 
						|
 | 
						|
	"github.com/coredns/coredns/core/dnsserver"
 | 
						|
	"github.com/coredns/coredns/plugin"
 | 
						|
 | 
						|
	"github.com/caddyserver/caddy"
 | 
						|
)
 | 
						|
 | 
						|
func init() {
 | 
						|
	caddy.RegisterPlugin("ready", caddy.Plugin{
 | 
						|
		ServerType: "dns",
 | 
						|
		Action:     setup,
 | 
						|
	})
 | 
						|
}
 | 
						|
 | 
						|
func setup(c *caddy.Controller) error {
 | 
						|
	addr, err := parse(c)
 | 
						|
	if err != nil {
 | 
						|
		return plugin.Error("ready", err)
 | 
						|
	}
 | 
						|
	rd := &ready{Addr: addr}
 | 
						|
 | 
						|
	uniqAddr.Set(addr, rd.onStartup)
 | 
						|
	c.OnStartup(func() error { uniqAddr.Set(addr, rd.onStartup); return nil })
 | 
						|
	c.OnRestartFailed(func() error { uniqAddr.Set(addr, rd.onStartup); return nil })
 | 
						|
 | 
						|
	c.OnStartup(func() error { return uniqAddr.ForEach() })
 | 
						|
	c.OnRestartFailed(func() error { return uniqAddr.ForEach() })
 | 
						|
 | 
						|
	c.OnStartup(func() error {
 | 
						|
		for _, p := range dnsserver.GetConfig(c).Handlers() {
 | 
						|
			if r, ok := p.(Readiness); ok {
 | 
						|
				plugins.Append(r, p.Name())
 | 
						|
			}
 | 
						|
		}
 | 
						|
		return nil
 | 
						|
	})
 | 
						|
	c.OnRestartFailed(func() error {
 | 
						|
		for _, p := range dnsserver.GetConfig(c).Handlers() {
 | 
						|
			if r, ok := p.(Readiness); ok {
 | 
						|
				plugins.Append(r, p.Name())
 | 
						|
			}
 | 
						|
		}
 | 
						|
		return nil
 | 
						|
	})
 | 
						|
 | 
						|
	c.OnRestart(rd.onFinalShutdown)
 | 
						|
	c.OnFinalShutdown(rd.onFinalShutdown)
 | 
						|
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func parse(c *caddy.Controller) (string, error) {
 | 
						|
	addr := ":8181"
 | 
						|
	i := 0
 | 
						|
	for c.Next() {
 | 
						|
		if i > 0 {
 | 
						|
			return "", plugin.ErrOnce
 | 
						|
		}
 | 
						|
		i++
 | 
						|
		args := c.RemainingArgs()
 | 
						|
 | 
						|
		switch len(args) {
 | 
						|
		case 0:
 | 
						|
		case 1:
 | 
						|
			addr = args[0]
 | 
						|
			if _, _, e := net.SplitHostPort(addr); e != nil {
 | 
						|
				return "", e
 | 
						|
			}
 | 
						|
		default:
 | 
						|
			return "", c.ArgErr()
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return addr, nil
 | 
						|
}
 |