mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-10-29 17:52:50 -04:00 
			
		
		
		
	- Server types no longer need to store their own contexts; they are stored on the caddy.Instance, which means each context will be properly GC'ed when the instance is stopped. Server types should use type assertions to convert from caddy.Context to their concrete context type when they need to use it. - Pass the entire context into httpserver.GetConfig instead of only the Key field. - caddy.NewTestController now requires a server type string so it can create a controller with the proper concrete context associated with that server type. Tests still need more attention so that we can test the proper creation of startup functions, etc.
		
			
				
	
	
		
			94 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package header
 | |
| 
 | |
| import (
 | |
| 	"github.com/mholt/caddy"
 | |
| 	"github.com/mholt/caddy/caddyhttp/httpserver"
 | |
| )
 | |
| 
 | |
| func init() {
 | |
| 	caddy.RegisterPlugin("header", caddy.Plugin{
 | |
| 		ServerType: "http",
 | |
| 		Action:     setup,
 | |
| 	})
 | |
| }
 | |
| 
 | |
| // setup configures a new Headers middleware instance.
 | |
| func setup(c *caddy.Controller) error {
 | |
| 	rules, err := headersParse(c)
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 
 | |
| 	httpserver.GetConfig(c).AddMiddleware(func(next httpserver.Handler) httpserver.Handler {
 | |
| 		return Headers{Next: next, Rules: rules}
 | |
| 	})
 | |
| 
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func headersParse(c *caddy.Controller) ([]Rule, error) {
 | |
| 	var rules []Rule
 | |
| 
 | |
| 	for c.NextLine() {
 | |
| 		var head Rule
 | |
| 		var isNewPattern bool
 | |
| 
 | |
| 		if !c.NextArg() {
 | |
| 			return rules, c.ArgErr()
 | |
| 		}
 | |
| 		pattern := c.Val()
 | |
| 
 | |
| 		// See if we already have a definition for this Path pattern...
 | |
| 		for _, h := range rules {
 | |
| 			if h.Path == pattern {
 | |
| 				head = h
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 
 | |
| 		// ...otherwise, this is a new pattern
 | |
| 		if head.Path == "" {
 | |
| 			head.Path = pattern
 | |
| 			isNewPattern = true
 | |
| 		}
 | |
| 
 | |
| 		for c.NextBlock() {
 | |
| 			// A block of headers was opened...
 | |
| 
 | |
| 			h := Header{Name: c.Val()}
 | |
| 
 | |
| 			if c.NextArg() {
 | |
| 				h.Value = c.Val()
 | |
| 			}
 | |
| 
 | |
| 			head.Headers = append(head.Headers, h)
 | |
| 		}
 | |
| 		if c.NextArg() {
 | |
| 			// ... or single header was defined as an argument instead.
 | |
| 
 | |
| 			h := Header{Name: c.Val()}
 | |
| 
 | |
| 			h.Value = c.Val()
 | |
| 
 | |
| 			if c.NextArg() {
 | |
| 				h.Value = c.Val()
 | |
| 			}
 | |
| 
 | |
| 			head.Headers = append(head.Headers, h)
 | |
| 		}
 | |
| 
 | |
| 		if isNewPattern {
 | |
| 			rules = append(rules, head)
 | |
| 		} else {
 | |
| 			for i := 0; i < len(rules); i++ {
 | |
| 				if rules[i].Path == pattern {
 | |
| 					rules[i] = head
 | |
| 					break
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	return rules, nil
 | |
| }
 |