2015-04-02 22:59:45 -05:00
|
|
|
// Package extension is middleware for clean URLs. The root path
|
|
|
|
// of the site is passed in as well as possible extensions to try
|
|
|
|
// internally for paths requested that don't match an existing
|
|
|
|
// resource. The first path+ext combination that matches a valid
|
|
|
|
// file will be used.
|
|
|
|
package extension
|
2015-01-13 14:43:45 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"os"
|
2015-03-21 16:18:50 -05:00
|
|
|
"path"
|
2015-03-24 22:56:22 -05:00
|
|
|
"strings"
|
2015-01-30 00:02:58 -05:00
|
|
|
|
|
|
|
"github.com/mholt/caddy/middleware"
|
2015-01-13 14:43:45 -05:00
|
|
|
)
|
|
|
|
|
2015-01-30 00:02:58 -05:00
|
|
|
// New creates a new instance of middleware that assumes extensions
|
|
|
|
// so the site can use cleaner, extensionless URLs
|
|
|
|
func New(c middleware.Controller) (middleware.Middleware, error) {
|
2015-01-30 13:09:36 -05:00
|
|
|
root := c.Root()
|
|
|
|
|
|
|
|
extensions, err := parse(c)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-03-28 17:47:28 -05:00
|
|
|
return func(next middleware.HandlerFunc) middleware.HandlerFunc {
|
2015-04-02 22:59:45 -05:00
|
|
|
return Ext{
|
2015-01-30 13:09:36 -05:00
|
|
|
Next: next,
|
|
|
|
Extensions: extensions,
|
|
|
|
Root: root,
|
|
|
|
}.ServeHTTP
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2015-04-02 22:59:45 -05:00
|
|
|
// Ext can assume an extension from clean URLs.
|
|
|
|
// It tries extensions in the order listed in Extensions.
|
|
|
|
type Ext struct {
|
|
|
|
// Next handler in the chain
|
|
|
|
Next middleware.HandlerFunc
|
|
|
|
|
|
|
|
// Path to ther root of the site
|
|
|
|
Root string
|
|
|
|
|
|
|
|
// List of extensions to try
|
|
|
|
Extensions []string
|
|
|
|
}
|
|
|
|
|
|
|
|
// ServeHTTP implements the middleware.Handler interface.
|
|
|
|
func (e Ext) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) {
|
2015-03-24 22:56:22 -05:00
|
|
|
urlpath := strings.TrimSuffix(r.URL.Path, "/")
|
|
|
|
if path.Ext(urlpath) == "" {
|
2015-01-30 13:09:36 -05:00
|
|
|
for _, ext := range e.Extensions {
|
2015-03-24 22:56:22 -05:00
|
|
|
if resourceExists(e.Root, urlpath+ext) {
|
|
|
|
r.URL.Path = urlpath + ext
|
2015-01-30 13:09:36 -05:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-03-28 17:47:28 -05:00
|
|
|
return e.Next(w, r)
|
2015-01-30 13:09:36 -05:00
|
|
|
}
|
|
|
|
|
2015-04-02 22:59:45 -05:00
|
|
|
// parse sets up an instance of extension middleware
|
2015-01-30 13:09:36 -05:00
|
|
|
// from a middleware controller and returns a list of extensions.
|
|
|
|
func parse(c middleware.Controller) ([]string, error) {
|
2015-01-19 01:11:21 -05:00
|
|
|
var extensions []string
|
|
|
|
|
2015-01-30 00:02:58 -05:00
|
|
|
for c.Next() {
|
2015-01-30 13:09:36 -05:00
|
|
|
// At least one extension is required
|
2015-01-30 00:02:58 -05:00
|
|
|
if !c.NextArg() {
|
2015-01-30 13:09:36 -05:00
|
|
|
return extensions, c.ArgErr()
|
2015-01-19 01:11:21 -05:00
|
|
|
}
|
2015-01-30 00:02:58 -05:00
|
|
|
extensions = append(extensions, c.Val())
|
2015-01-30 13:09:36 -05:00
|
|
|
|
|
|
|
// Tack on any other extensions that may have been listed
|
2015-03-21 16:18:50 -05:00
|
|
|
extensions = append(extensions, c.RemainingArgs()...)
|
2015-01-19 01:11:21 -05:00
|
|
|
}
|
|
|
|
|
2015-01-30 13:09:36 -05:00
|
|
|
return extensions, nil
|
|
|
|
}
|
2015-01-13 14:43:45 -05:00
|
|
|
|
2015-01-30 13:09:36 -05:00
|
|
|
// resourceExists returns true if the file specified at
|
|
|
|
// root + path exists; false otherwise.
|
|
|
|
func resourceExists(root, path string) bool {
|
|
|
|
_, err := os.Stat(root + path)
|
|
|
|
// technically we should use os.IsNotExist(err)
|
|
|
|
// but we don't handle any other kinds of errors anyway
|
|
|
|
return err == nil
|
|
|
|
}
|