mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-11-04 03:27:23 -05:00 
			
		
		
		
	Made 'extensionless' middleware more modular/useful
This commit is contained in:
		
							parent
							
								
									62d7d61381
								
							
						
					
					
						commit
						16997d85eb
					
				@ -24,7 +24,7 @@ func (p *parser) begin() error {
 | 
				
			|||||||
// combination.
 | 
					// combination.
 | 
				
			||||||
func (p *parser) address() error {
 | 
					func (p *parser) address() error {
 | 
				
			||||||
	if p.tkn() == "}" || p.tkn() == "{" {
 | 
						if p.tkn() == "}" || p.tkn() == "{" {
 | 
				
			||||||
		return p.err("Syntax", "'"+p.tkn()+"' is not a listening address or EOF")
 | 
							return p.err("Syntax", "'"+p.tkn()+"' is not EOF or address")
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	p.cfg.Host, p.cfg.Port = parseAddress(p.tkn())
 | 
						p.cfg.Host, p.cfg.Port = parseAddress(p.tkn())
 | 
				
			||||||
	return nil
 | 
						return nil
 | 
				
			||||||
 | 
				
			|||||||
@ -15,27 +15,76 @@ import (
 | 
				
			|||||||
// New creates a new instance of middleware that assumes extensions
 | 
					// New creates a new instance of middleware that assumes extensions
 | 
				
			||||||
// so the site can use cleaner, extensionless URLs
 | 
					// so the site can use cleaner, extensionless URLs
 | 
				
			||||||
func New(c middleware.Controller) (middleware.Middleware, error) {
 | 
					func New(c middleware.Controller) (middleware.Middleware, error) {
 | 
				
			||||||
 | 
						root := c.Root()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						extensions, err := parse(c)
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							return nil, err
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						return func(next http.HandlerFunc) http.HandlerFunc {
 | 
				
			||||||
 | 
							return Extensionless{
 | 
				
			||||||
 | 
								Next:       next,
 | 
				
			||||||
 | 
								Extensions: extensions,
 | 
				
			||||||
 | 
								Root:       root,
 | 
				
			||||||
 | 
							}.ServeHTTP
 | 
				
			||||||
 | 
						}, nil
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// Extensionless is an http.Handler that can assume an extension from clean URLs.
 | 
				
			||||||
 | 
					// It tries extensions in the order listed in Extensions.
 | 
				
			||||||
 | 
					type Extensionless struct {
 | 
				
			||||||
 | 
						Next       http.HandlerFunc
 | 
				
			||||||
 | 
						Extensions []string
 | 
				
			||||||
 | 
						Root       string
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// ServeHTTP implements the http.Handler interface.
 | 
				
			||||||
 | 
					func (e Extensionless) ServeHTTP(w http.ResponseWriter, r *http.Request) {
 | 
				
			||||||
 | 
						if !hasExt(r) {
 | 
				
			||||||
 | 
							for _, ext := range e.Extensions {
 | 
				
			||||||
 | 
								if resourceExists(e.Root, r.URL.Path+ext) {
 | 
				
			||||||
 | 
									r.URL.Path = r.URL.Path + ext
 | 
				
			||||||
 | 
									break
 | 
				
			||||||
 | 
								}
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						e.Next(w, r)
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// parse sets up an instance of Extensionless middleware
 | 
				
			||||||
 | 
					// from a middleware controller and returns a list of extensions.
 | 
				
			||||||
 | 
					func parse(c middleware.Controller) ([]string, error) {
 | 
				
			||||||
	var extensions []string
 | 
						var extensions []string
 | 
				
			||||||
	var root = c.Root() // TODO: Big gotcha! Save this now before it goes away! We can't get this later during a request!
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
	for c.Next() {
 | 
						for c.Next() {
 | 
				
			||||||
 | 
							// At least one extension is required
 | 
				
			||||||
		if !c.NextArg() {
 | 
							if !c.NextArg() {
 | 
				
			||||||
			return nil, c.ArgErr()
 | 
								return extensions, c.ArgErr()
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		extensions = append(extensions, c.Val())
 | 
							extensions = append(extensions, c.Val())
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							// Tack on any other extensions that may have been listed
 | 
				
			||||||
		for c.NextArg() {
 | 
							for c.NextArg() {
 | 
				
			||||||
			extensions = append(extensions, c.Val())
 | 
								extensions = append(extensions, c.Val())
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	resourceExists := func(path string) bool {
 | 
						return extensions, nil
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// resourceExists returns true if the file specified at
 | 
				
			||||||
 | 
					// root + path exists; false otherwise.
 | 
				
			||||||
 | 
					func resourceExists(root, path string) bool {
 | 
				
			||||||
	_, err := os.Stat(root + path)
 | 
						_, err := os.Stat(root + path)
 | 
				
			||||||
	// technically we should use os.IsNotExist(err)
 | 
						// technically we should use os.IsNotExist(err)
 | 
				
			||||||
	// but we don't handle any other kinds of errors anyway
 | 
						// but we don't handle any other kinds of errors anyway
 | 
				
			||||||
	return err == nil
 | 
						return err == nil
 | 
				
			||||||
	}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	hasExt := func(r *http.Request) bool {
 | 
					// hasExt returns true if the HTTP request r has an extension,
 | 
				
			||||||
 | 
					// false otherwise.
 | 
				
			||||||
 | 
					func hasExt(r *http.Request) bool {
 | 
				
			||||||
	if r.URL.Path[len(r.URL.Path)-1] == '/' {
 | 
						if r.URL.Path[len(r.URL.Path)-1] == '/' {
 | 
				
			||||||
		// directory
 | 
							// directory
 | 
				
			||||||
		return true
 | 
							return true
 | 
				
			||||||
@ -43,19 +92,4 @@ func New(c middleware.Controller) (middleware.Middleware, error) {
 | 
				
			|||||||
	lastSep := strings.LastIndex(r.URL.Path, "/")
 | 
						lastSep := strings.LastIndex(r.URL.Path, "/")
 | 
				
			||||||
	lastDot := strings.LastIndex(r.URL.Path, ".")
 | 
						lastDot := strings.LastIndex(r.URL.Path, ".")
 | 
				
			||||||
	return lastDot > lastSep
 | 
						return lastDot > lastSep
 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	return func(next http.HandlerFunc) http.HandlerFunc {
 | 
					 | 
				
			||||||
		return func(w http.ResponseWriter, r *http.Request) {
 | 
					 | 
				
			||||||
			if !hasExt(r) {
 | 
					 | 
				
			||||||
				for _, ext := range extensions {
 | 
					 | 
				
			||||||
					if resourceExists(r.URL.Path + ext) {
 | 
					 | 
				
			||||||
						r.URL.Path = r.URL.Path + ext
 | 
					 | 
				
			||||||
						break
 | 
					 | 
				
			||||||
					}
 | 
					 | 
				
			||||||
				}
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
			next(w, r)
 | 
					 | 
				
			||||||
		}
 | 
					 | 
				
			||||||
	}, nil
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user