filebrowser/hugo.go

173 lines
4.6 KiB
Go
Raw Normal View History

//go:generate go get github.com/jteeuwen/go-bindata
2015-09-27 08:43:36 +00:00
//go:generate go install github.com/jteeuwen/go-bindata/go-bindata
2016-02-10 17:18:19 +00:00
//go:generate go-bindata -pkg assets -o assets/assets.go templates/ assets/css/ assets/js/ assets/fonts/
2015-09-13 11:14:18 +00:00
// Package hugo makes the bridge between the static website generator Hugo
// and the webserver Caddy, also providing an administrative user interface.
package hugo
2015-09-12 08:52:41 +00:00
import (
2016-02-20 08:46:48 +00:00
"log"
2015-09-13 19:37:20 +00:00
"mime"
2015-09-12 08:52:41 +00:00
"net/http"
2015-09-18 15:49:53 +00:00
"os"
2015-09-13 19:37:20 +00:00
"path/filepath"
2015-09-13 11:14:18 +00:00
"strings"
2015-09-12 08:52:41 +00:00
2015-10-18 14:10:32 +00: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-11-06 19:47:33 +00:00
"github.com/mholt/caddy/caddy/setup"
2015-09-12 08:52:41 +00:00
"github.com/mholt/caddy/middleware"
)
// Setup is the init function of Caddy plugins and it configures the whole
// middleware thing.
2015-09-12 08:52:41 +00:00
func Setup(c *setup.Controller) (middleware.Middleware, error) {
config, _ := config.ParseHugo(c)
2016-02-11 20:19:22 +00:00
// Checks if there is an Hugo website in the path that is provided.
// If not, a new website will be created.
2016-02-20 11:31:59 +00:00
create := true
2016-02-11 20:19:22 +00:00
2016-02-20 11:31:59 +00:00
if _, err := os.Stat(config.Path + "config.yaml"); err == nil {
create = false
2016-02-11 20:19:22 +00:00
}
2016-02-20 11:31:59 +00:00
if _, err := os.Stat(config.Path + "config.json"); err == nil {
create = false
2016-02-11 20:19:22 +00:00
}
2016-02-20 11:31:59 +00:00
if _, err := os.Stat(config.Path + "config.toml"); err == nil {
create = false
2016-02-11 20:19:22 +00:00
}
if create {
2016-02-20 11:31:59 +00:00
err := utils.RunCommand("hugo", []string{"new", "site", config.Path, "--force"}, ".")
if err != nil {
log.Panic(err)
}
2016-02-11 20:19:22 +00:00
}
// Generates the Hugo website for the first time the plugin is activated.
2016-02-20 12:04:12 +00:00
go utils.Run(config, true)
2015-09-12 10:33:39 +00:00
2015-09-12 08:52:41 +00:00
return func(next middleware.Handler) middleware.Handler {
return &CaddyHugo{Next: next, Config: config}
2015-09-12 08:52:41 +00:00
}, nil
}
// CaddyHugo contais the next middleware to be run and the configuration
// of the current one.
type CaddyHugo struct {
2015-09-20 08:15:21 +00:00
Next middleware.Handler
Config *config.Config
}
2015-09-12 08:52:41 +00:00
// ServeHTTP is the main function of the whole plugin that routes every single
// request to its function.
func (h CaddyHugo) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) {
2015-09-18 08:47:02 +00:00
// Only handle /admin path
2015-09-13 21:48:52 +00:00
if middleware.Path(r.URL.Path).Matches("/admin") {
2015-09-17 14:38:04 +00:00
var err error
2015-09-18 08:47:02 +00: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-13 21:48:52 +00:00
2015-09-18 08:47:02 +00:00
// If the page isn't "assets" neither "edit", it should always put a
// trailing slash in the path
2015-09-17 20:26:06 +00: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 08:47:02 +00:00
if r.URL.Path == "/admin/" {
http.Redirect(w, r, "/admin/browse/content/", http.StatusTemporaryRedirect)
2015-09-18 08:47:02 +00: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 15:49:53 +00:00
var frontmatter string
2015-10-10 09:25:02 +00:00
if _, err := os.Stat(h.Config.Path + "config.yaml"); err == nil {
2015-09-18 15:49:53 +00:00
frontmatter = "yaml"
}
2015-10-10 09:25:02 +00:00
if _, err := os.Stat(h.Config.Path + "config.json"); err == nil {
2015-09-18 15:49:53 +00:00
frontmatter = "json"
}
2015-10-10 09:25:02 +00:00
if _, err := os.Stat(h.Config.Path + "config.toml"); err == nil {
2015-09-18 15:49:53 +00:00
frontmatter = "toml"
}
http.Redirect(w, r, "/admin/edit/config."+frontmatter, http.StatusTemporaryRedirect)
return 0, nil
2015-09-18 08:47:02 +00:00
}
2015-09-26 21:08:12 +00:00
// Serve the static assets
if page == "assets" {
return serveAssets(w, r)
}
2015-09-18 08:47:02 +00:00
// Browse page
2015-09-17 20:26:06 +00:00
if page == "browse" {
2015-09-20 08:15:21 +00:00
code, err = browse.ServeHTTP(w, r, h.Config)
2015-09-17 20:26:06 +00:00
}
2015-09-18 08:47:02 +00:00
// Edit page
2015-09-17 20:26:06 +00:00
if page == "edit" {
2015-09-20 08:15:21 +00:00
code, err = editor.ServeHTTP(w, r, h.Config)
2015-09-17 20:26:06 +00:00
}
// Whenever the header "X-Regenerate" is true, the website should be
2015-09-18 08:47:02 +00:00
// regenerated. Used in edit and settings, for example.
2015-09-17 14:38:04 +00:00
if r.Header.Get("X-Regenerate") == "true" {
2016-02-20 12:04:12 +00:00
go utils.Run(h.Config, false)
2015-09-17 14:38:04 +00:00
}
2016-02-20 08:46:48 +00:00
if err != nil {
log.Panic(err)
}
2015-09-17 14:38:04 +00:00
return code, err
2015-09-13 11:14:18 +00:00
}
2015-09-13 21:48:52 +00:00
return h.Next.ServeHTTP(w, r)
2015-09-13 11:14:18 +00:00
}
2015-09-26 21:08:12 +00:00
// serveAssets handles the /admin/assets requests
2015-09-26 21:08:12 +00: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
}