filebrowser/hugo.go

136 lines
3.5 KiB
Go
Raw Normal View History

//go:generate go get github.com/jteeuwen/go-bindata
2015-09-27 16:43:36 +08:00
//go:generate go install github.com/jteeuwen/go-bindata/go-bindata
2015-09-16 20:02:19 +08:00
//go:generate go-bindata -pkg assets -o assets/assets.go templates/ assets/css/ assets/js/ assets/fonts/
2015-09-13 19:14:18 +08:00
package hugo
2015-09-12 16:52:41 +08:00
import (
2015-09-14 03:37:20 +08:00
"mime"
2015-09-12 16:52:41 +08:00
"net/http"
2015-09-18 23:49:53 +08:00
"os"
2015-09-14 03:37:20 +08:00
"path/filepath"
2015-09-13 19:14:18 +08:00
"strings"
2015-09-12 16:52:41 +08:00
2015-10-18 22:10:32 +08:00
"github.com/hacdias/caddy-hugo/assets"
"github.com/hacdias/caddy-hugo/browse"
"github.com/hacdias/caddy-hugo/config"
"github.com/hacdias/caddy-hugo/editor"
"github.com/hacdias/caddy-hugo/utils"
2015-09-12 16:52:41 +08:00
"github.com/mholt/caddy/config/setup"
"github.com/mholt/caddy/middleware"
)
2015-09-19 21:25:35 +08:00
// Setup configures the middleware
2015-09-12 16:52:41 +08:00
func Setup(c *setup.Controller) (middleware.Middleware, error) {
config, _ := config.ParseHugo(c)
2015-09-27 20:20:05 +08:00
utils.Run(config)
2015-09-12 18:33:39 +08:00
2015-09-12 16:52:41 +08:00
return func(next middleware.Handler) middleware.Handler {
return &CaddyHugo{Next: next, Config: config}
2015-09-12 16:52:41 +08:00
}, nil
}
// CaddyHugo main type
type CaddyHugo struct {
2015-09-20 16:15:21 +08:00
Next middleware.Handler
Config *config.Config
}
2015-09-12 16:52:41 +08:00
func (h CaddyHugo) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) {
2015-09-18 16:47:02 +08:00
// Only handle /admin path
2015-09-14 05:48:52 +08:00
if middleware.Path(r.URL.Path).Matches("/admin") {
2015-09-17 22:38:04 +08:00
var err error
2015-09-18 16:47:02 +08:00
var page string
code := 404
// If the length of the components string is less than one, the variable
// page will always be "admin"
if len(utils.ParseComponents(r)) > 1 {
page = utils.ParseComponents(r)[1]
} else {
page = utils.ParseComponents(r)[0]
}
2015-09-14 05:48:52 +08:00
2015-09-18 16:47:02 +08:00
// If the page isn't "assets" neither "edit", it should always put a
// trailing slash in the path
2015-09-18 04:26:06 +08:00
if page != "assets" && page != "edit" {
if r.URL.Path[len(r.URL.Path)-1] != '/' {
http.Redirect(w, r, r.URL.Path+"/", http.StatusTemporaryRedirect)
return 0, nil
}
}
// If the current page is only "/admin/", redirect to "/admin/browse/content/"
2015-09-18 16:47:02 +08:00
if r.URL.Path == "/admin/" {
http.Redirect(w, r, "/admin/browse/content/", http.StatusTemporaryRedirect)
2015-09-18 16:47:02 +08:00
return 0, nil
}
// If the url matches exactly with /admin/settings/ serve that page
// page variable isn't used here to avoid people using URLs like
// "/admin/settings/something".
if r.URL.Path == "/admin/settings/" {
2015-09-18 23:49:53 +08:00
var frontmatter string
2015-10-10 17:25:02 +08:00
if _, err := os.Stat(h.Config.Path + "config.yaml"); err == nil {
2015-09-18 23:49:53 +08:00
frontmatter = "yaml"
}
2015-10-10 17:25:02 +08:00
if _, err := os.Stat(h.Config.Path + "config.json"); err == nil {
2015-09-18 23:49:53 +08:00
frontmatter = "json"
}
2015-10-10 17:25:02 +08:00
if _, err := os.Stat(h.Config.Path + "config.toml"); err == nil {
2015-09-18 23:49:53 +08:00
frontmatter = "toml"
}
http.Redirect(w, r, "/admin/edit/config."+frontmatter, http.StatusTemporaryRedirect)
return 0, nil
2015-09-18 16:47:02 +08:00
}
2015-09-27 05:08:12 +08:00
// Serve the static assets
if page == "assets" {
return serveAssets(w, r)
}
2015-09-18 16:47:02 +08:00
// Browse page
2015-09-18 04:26:06 +08:00
if page == "browse" {
2015-09-20 16:15:21 +08:00
code, err = browse.ServeHTTP(w, r, h.Config)
2015-09-18 04:26:06 +08:00
}
2015-09-18 16:47:02 +08:00
// Edit page
2015-09-18 04:26:06 +08:00
if page == "edit" {
2015-09-20 16:15:21 +08:00
code, err = editor.ServeHTTP(w, r, h.Config)
2015-09-18 04:26:06 +08:00
}
2015-09-18 16:47:02 +08:00
// Whenever the header "X-Refenerate" is true, the website should be
// regenerated. Used in edit and settings, for example.
2015-09-17 22:38:04 +08:00
if r.Header.Get("X-Regenerate") == "true" {
2015-09-27 20:20:05 +08:00
utils.Run(h.Config)
2015-09-17 22:38:04 +08:00
}
return code, err
2015-09-13 19:14:18 +08:00
}
2015-09-14 05:48:52 +08:00
return h.Next.ServeHTTP(w, r)
2015-09-13 19:14:18 +08:00
}
2015-09-27 05:08:12 +08:00
func serveAssets(w http.ResponseWriter, r *http.Request) (int, error) {
filename := strings.Replace(r.URL.Path, "/admin/", "", 1)
file, err := assets.Asset(filename)
if err != nil {
return 404, nil
}
// Get the file extension ant its mime type
extension := filepath.Ext(filename)
mime := mime.TypeByExtension(extension)
// Write the header with the Content-Type and write the file
// content to the buffer
w.Header().Set("Content-Type", mime)
w.Write(file)
return 200, nil
}