mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
87 lines
2.1 KiB
Go
87 lines
2.1 KiB
Go
//go:generate go-bindata -pkg assets -o assets/assets.go static/css/ static/js/ templates/
|
|
|
|
package hugo
|
|
|
|
import (
|
|
"mime"
|
|
"net/http"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/hacdias/caddy-hugo/assets"
|
|
"github.com/hacdias/caddy-hugo/edit"
|
|
"github.com/hacdias/caddy-hugo/settings"
|
|
"github.com/mholt/caddy/config/setup"
|
|
"github.com/mholt/caddy/middleware"
|
|
"github.com/spf13/hugo/commands"
|
|
)
|
|
|
|
// Setup function
|
|
func Setup(c *setup.Controller) (middleware.Middleware, error) {
|
|
commands.Execute()
|
|
|
|
return func(next middleware.Handler) middleware.Handler {
|
|
return &handler{Next: next}
|
|
}, nil
|
|
}
|
|
|
|
type handler struct{ Next middleware.Handler }
|
|
|
|
func (h handler) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) {
|
|
if middleware.Path(r.URL.Path).Matches("/admin") {
|
|
page := parseComponents(r)[1]
|
|
|
|
if page == "assets" {
|
|
filename := strings.Replace(r.URL.Path, "/admin/assets", "static", 1)
|
|
file, err := assets.Asset(filename)
|
|
|
|
if err != nil {
|
|
return 404, nil
|
|
}
|
|
|
|
extension := filepath.Ext(filename)
|
|
mime := mime.TypeByExtension(extension)
|
|
|
|
header := w.Header()
|
|
header.Set("Content-Type", mime)
|
|
|
|
w.Write(file)
|
|
return 200, nil
|
|
} else if page == "content" {
|
|
w.Write([]byte("Content Page"))
|
|
return 200, nil
|
|
} else if page == "browse" {
|
|
w.Write([]byte("Show Data Folder"))
|
|
return 200, nil
|
|
} else if page == "edit" {
|
|
return edit.Execute(w, r)
|
|
} else if page == "settings" {
|
|
return settings.Execute(w, r)
|
|
}
|
|
|
|
return 404, nil
|
|
}
|
|
|
|
return h.Next.ServeHTTP(w, r)
|
|
}
|
|
|
|
// TODO: utils package
|
|
func parseComponents(r *http.Request) []string {
|
|
//The URL that the user queried.
|
|
path := r.URL.Path
|
|
path = strings.TrimSpace(path)
|
|
//Cut off the leading and trailing forward slashes, if they exist.
|
|
//This cuts off the leading forward slash.
|
|
if strings.HasPrefix(path, "/") {
|
|
path = path[1:]
|
|
}
|
|
//This cuts off the trailing forward slash.
|
|
if strings.HasSuffix(path, "/") {
|
|
cutOffLastCharLen := len(path) - 1
|
|
path = path[:cutOffLastCharLen]
|
|
}
|
|
//We need to isolate the individual components of the path.
|
|
components := strings.Split(path, "/")
|
|
return components
|
|
}
|