| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | package chaos | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2017-02-21 22:51:47 -08:00
										 |  |  | 	"github.com/coredns/coredns/core/dnsserver" | 
					
						
							|  |  |  | 	"github.com/coredns/coredns/middleware" | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/mholt/caddy" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func init() { | 
					
						
							|  |  |  | 	caddy.RegisterPlugin("chaos", caddy.Plugin{ | 
					
						
							|  |  |  | 		ServerType: "dns", | 
					
						
							|  |  |  | 		Action:     setup, | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func setup(c *caddy.Controller) error { | 
					
						
							|  |  |  | 	version, authors, err := chaosParse(c) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2016-09-10 09:16:25 +01:00
										 |  |  | 		return middleware.Error("chaos", err) | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-09-19 11:26:00 +01:00
										 |  |  | 	dnsserver.GetConfig(c).AddMiddleware(func(next middleware.Handler) middleware.Handler { | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 		return Chaos{Next: next, Version: version, Authors: authors} | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func chaosParse(c *caddy.Controller) (string, map[string]bool, error) { | 
					
						
							|  |  |  | 	version := "" | 
					
						
							|  |  |  | 	authors := make(map[string]bool) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for c.Next() { | 
					
						
							|  |  |  | 		args := c.RemainingArgs() | 
					
						
							|  |  |  | 		if len(args) == 0 { | 
					
						
							|  |  |  | 			return defaultVersion, nil, nil | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if len(args) == 1 { | 
					
						
							|  |  |  | 			return args[0], nil, nil | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		version = args[0] | 
					
						
							|  |  |  | 		for _, a := range args[1:] { | 
					
						
							|  |  |  | 			authors[a] = true | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return version, authors, nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return version, authors, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-23 16:36:29 +01:00
										 |  |  | var defaultVersion = caddy.AppName + "-" + caddy.AppVersion |