filebrowser/hugo.go

40 lines
806 B
Go
Raw Normal View History

2015-09-12 08:52:41 +00:00
package hugo
import (
"net/http"
2015-09-12 10:33:39 +00:00
"github.com/spf13/hugo/commands"
2015-09-12 08:52:41 +00:00
"github.com/mholt/caddy/config/setup"
"github.com/mholt/caddy/middleware"
)
2015-09-12 12:05:31 +00:00
// Setup function
2015-09-12 08:52:41 +00:00
func Setup(c *setup.Controller) (middleware.Middleware, error) {
2015-09-12 12:05:31 +00:00
commands.Execute()
2015-09-12 10:33:39 +00:00
2015-09-12 08:52:41 +00:00
return func(next middleware.Handler) middleware.Handler {
return &handler{}
}, nil
}
type handler struct{}
2015-09-12 12:05:31 +00:00
type adminHandler struct{}
2015-09-12 08:52:41 +00:00
func (h handler) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) {
2015-09-12 12:05:31 +00:00
// do path matching
if middleware.Path(r.URL.Path).Matches("/admin") {
a := new(adminHandler)
return a.ServeHTTP(w, r)
}
2015-09-12 10:33:39 +00:00
http.ServeFile(w, r, "public"+r.URL.Path)
2015-09-12 12:05:31 +00:00
return 200, nil
}
func (a adminHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) {
w.Write([]byte("Admin area"))
2015-09-12 08:52:41 +00:00
return 200, nil
}