| 
									
										
										
										
											2019-03-31 19:01:11 +01:00
										 |  |  | //go:generate go run owners_generate.go | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | package chaos | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2019-03-31 19:01:11 +01:00
										 |  |  | 	"sort" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-21 22:51:47 -08:00
										 |  |  | 	"github.com/coredns/coredns/core/dnsserver" | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 	"github.com/coredns/coredns/plugin" | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-03 09:04:47 +08:00
										 |  |  | 	"github.com/caddyserver/caddy" | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-20 08:02:30 +01:00
										 |  |  | func init() { plugin.Register("chaos", setup) } | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | func setup(c *caddy.Controller) error { | 
					
						
							| 
									
										
										
										
											2019-03-31 19:01:11 +01:00
										 |  |  | 	version, authors, err := parse(c) | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 		return plugin.Error("chaos", err) | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-14 09:36:06 +01:00
										 |  |  | 	dnsserver.GetConfig(c).AddPlugin(func(next plugin.Handler) plugin.Handler { | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 		return Chaos{Next: next, Version: version, Authors: authors} | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-31 19:01:11 +01:00
										 |  |  | func parse(c *caddy.Controller) (string, []string, error) { | 
					
						
							| 
									
										
										
										
											2017-05-22 13:09:35 +01:00
										 |  |  | 	// Set here so we pick up AppName and AppVersion that get set in coremain's init(). | 
					
						
							|  |  |  | 	chaosVersion = caddy.AppName + "-" + caddy.AppVersion | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 	version := "" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for c.Next() { | 
					
						
							|  |  |  | 		args := c.RemainingArgs() | 
					
						
							|  |  |  | 		if len(args) == 0 { | 
					
						
							| 
									
										
										
										
											2019-03-31 19:01:11 +01:00
										 |  |  | 			return trim(chaosVersion), Owners, nil | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		if len(args) == 1 { | 
					
						
							| 
									
										
										
										
											2019-03-31 19:01:11 +01:00
										 |  |  | 			return trim(args[0]), Owners, nil | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-03-31 19:01:11 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 		version = args[0] | 
					
						
							| 
									
										
										
										
											2019-03-31 19:01:11 +01:00
										 |  |  | 		authors := make(map[string]struct{}) | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 		for _, a := range args[1:] { | 
					
						
							| 
									
										
										
										
											2018-12-08 15:57:57 -08:00
										 |  |  | 			authors[a] = struct{}{} | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-03-31 19:01:11 +01:00
										 |  |  | 		list := []string{} | 
					
						
							|  |  |  | 		for k := range authors { | 
					
						
							|  |  |  | 			k = trim(k) // limit size to 255 chars | 
					
						
							|  |  |  | 			list = append(list, k) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		sort.Strings(list) | 
					
						
							|  |  |  | 		return version, list, nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return version, Owners, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func trim(s string) string { | 
					
						
							|  |  |  | 	if len(s) < 256 { | 
					
						
							|  |  |  | 		return s | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-03-31 19:01:11 +01:00
										 |  |  | 	return s[:255] | 
					
						
							| 
									
										
										
										
											2016-08-19 17:14:17 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-22 13:09:35 +01:00
										 |  |  | var chaosVersion string |