2015-04-03 11:59:45 +08: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.
|
2015-04-18 23:54:35 +08:00
|
|
|
package extensions
|
2015-01-14 03:43:45 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"os"
|
2015-03-22 05:18:50 +08:00
|
|
|
"path"
|
2015-03-25 11:56:22 +08:00
|
|
|
"strings"
|
2015-01-30 13:02:58 +08:00
|
|
|
|
|
|
|
"github.com/mholt/caddy/middleware"
|
2015-01-14 03:43:45 +08:00
|
|
|
)
|
|
|
|
|
2015-01-30 13:02:58 +08: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-31 02:09:36 +08:00
|
|
|
root := c.Root()
|
|
|
|
|
|
|
|
extensions, err := parse(c)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-04-03 13:30:54 +08:00
|
|
|
return func(next middleware.Handler) middleware.Handler {
|
2015-04-03 11:59:45 +08:00
|
|
|
return Ext{
|
2015-01-31 02:09:36 +08:00
|
|
|
Next: next,
|
|
|
|
Extensions: extensions,
|
|
|
|
Root: root,
|
2015-04-03 13:30:54 +08:00
|
|
|
}
|
2015-01-31 02:09:36 +08:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2015-04-03 11:59:45 +08: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
|
2015-04-03 13:30:54 +08:00
|
|
|
Next middleware.Handler
|
2015-04-03 11:59:45 +08:00
|
|
|
|
|
|
|
// 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-25 11:56:22 +08:00
|
|
|
urlpath := strings.TrimSuffix(r.URL.Path, "/")
|
|
|
|
if path.Ext(urlpath) == "" {
|
2015-01-31 02:09:36 +08:00
|
|
|
for _, ext := range e.Extensions {
|
2015-03-25 11:56:22 +08:00
|
|
|
if resourceExists(e.Root, urlpath+ext) {
|
|
|
|
r.URL.Path = urlpath + ext
|
2015-01-31 02:09:36 +08:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-04-03 13:30:54 +08:00
|
|
|
return e.Next.ServeHTTP(w, r)
|
2015-01-31 02:09:36 +08:00
|
|
|
}
|
|
|
|
|
2015-04-03 11:59:45 +08:00
|
|
|
// parse sets up an instance of extension middleware
|
2015-01-31 02:09:36 +08:00
|
|
|
// from a middleware controller and returns a list of extensions.
|
|
|
|
func parse(c middleware.Controller) ([]string, error) {
|
2015-01-19 14:11:21 +08:00
|
|
|
var extensions []string
|
|
|
|
|
2015-01-30 13:02:58 +08:00
|
|
|
for c.Next() {
|
2015-01-31 02:09:36 +08:00
|
|
|
// At least one extension is required
|
2015-01-30 13:02:58 +08:00
|
|
|
if !c.NextArg() {
|
2015-01-31 02:09:36 +08:00
|
|
|
return extensions, c.ArgErr()
|
2015-01-19 14:11:21 +08:00
|
|
|
}
|
2015-01-30 13:02:58 +08:00
|
|
|
extensions = append(extensions, c.Val())
|
2015-01-31 02:09:36 +08:00
|
|
|
|
|
|
|
// Tack on any other extensions that may have been listed
|
2015-03-22 05:18:50 +08:00
|
|
|
extensions = append(extensions, c.RemainingArgs()...)
|
2015-01-19 14:11:21 +08:00
|
|
|
}
|
|
|
|
|
2015-01-31 02:09:36 +08:00
|
|
|
return extensions, nil
|
|
|
|
}
|
2015-01-14 03:43:45 +08:00
|
|
|
|
2015-01-31 02:09:36 +08: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
|
|
|
|
}
|