2015-01-30 14:52:18 +08:00
|
|
|
// Package extensionless is middleware for clean URLs. A root path is
|
2015-01-30 13:02:58 +08:00
|
|
|
// passed in as well as possible extensions to add, internally,
|
|
|
|
// to paths requested. The first path+ext that matches a resource
|
|
|
|
// that exists will be used.
|
|
|
|
package extensionless
|
2015-01-14 03:43:45 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"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
|
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
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-01-30 13:02:58 +08:00
|
|
|
for c.NextArg() {
|
|
|
|
extensions = append(extensions, c.Val())
|
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
|
|
|
|
}
|
2015-01-14 03:43:45 +08:00
|
|
|
|
2015-01-31 02:09:36 +08:00
|
|
|
// 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] == '/' {
|
|
|
|
// directory
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
lastSep := strings.LastIndex(r.URL.Path, "/")
|
|
|
|
lastDot := strings.LastIndex(r.URL.Path, ".")
|
|
|
|
return lastDot > lastSep
|
2015-01-14 03:43:45 +08:00
|
|
|
}
|