2017-03-25 19:58:14 +00:00
|
|
|
//go:generate go get github.com/jteeuwen/go-bindata/go-bindata
|
2016-08-10 08:54:40 +00:00
|
|
|
//go:generate go-bindata -nomemcopy -pkg hugo -prefix "assets" -o binary.go assets/...
|
2016-06-21 15:01:46 +00:00
|
|
|
|
2016-02-14 10:14:28 +00:00
|
|
|
// Package hugo makes the bridge between the static website generator Hugo
|
|
|
|
// and the webserver Caddy, also providing an administrative user interface.
|
2015-10-16 18:34:27 +00:00
|
|
|
package hugo
|
2015-09-12 08:52:41 +00:00
|
|
|
|
|
|
|
import (
|
2016-06-30 19:35:50 +00:00
|
|
|
"bytes"
|
2016-06-29 19:39:29 +00:00
|
|
|
"io/ioutil"
|
2016-06-28 13:59:33 +00:00
|
|
|
"log"
|
2016-06-22 17:27:12 +00:00
|
|
|
"mime"
|
2015-09-12 08:52:41 +00:00
|
|
|
"net/http"
|
2016-06-21 15:35:42 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2016-06-30 19:35:50 +00:00
|
|
|
"reflect"
|
2016-06-21 15:35:42 +00:00
|
|
|
"strings"
|
2016-06-29 19:39:29 +00:00
|
|
|
"time"
|
2015-09-12 08:52:41 +00:00
|
|
|
|
2016-06-21 14:28:15 +00:00
|
|
|
"github.com/hacdias/caddy-filemanager"
|
2016-06-28 16:12:02 +00:00
|
|
|
"github.com/hacdias/caddy-filemanager/assets"
|
2016-06-30 19:35:50 +00:00
|
|
|
"github.com/hacdias/caddy-filemanager/frontmatter"
|
2016-06-28 13:59:33 +00:00
|
|
|
"github.com/hacdias/caddy-filemanager/utils/variables"
|
|
|
|
"github.com/hacdias/caddy-hugo/utils/commands"
|
2016-06-07 15:08:52 +00:00
|
|
|
"github.com/mholt/caddy/caddyhttp/httpserver"
|
2016-06-29 19:39:29 +00:00
|
|
|
"github.com/robfig/cron"
|
2016-06-30 19:35:50 +00:00
|
|
|
"github.com/spf13/hugo/parser"
|
2015-09-12 08:52:41 +00:00
|
|
|
)
|
|
|
|
|
2016-06-28 13:59:33 +00:00
|
|
|
// Hugo is hugo
|
2016-06-16 16:04:38 +00:00
|
|
|
type Hugo struct {
|
2016-06-21 14:28:15 +00:00
|
|
|
Next httpserver.Handler
|
|
|
|
Config *Config
|
2016-06-28 13:59:33 +00:00
|
|
|
FileManager *filemanager.FileManager
|
2015-09-20 08:15:21 +00:00
|
|
|
}
|
2015-09-12 08:52:41 +00:00
|
|
|
|
2016-06-28 16:12:02 +00:00
|
|
|
// ServeHTTP determines if the request is for this plugin, and if all prerequisites are met.
|
2016-06-16 16:04:38 +00:00
|
|
|
func (h Hugo) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error) {
|
2016-06-28 16:12:02 +00:00
|
|
|
// If the site matches the baseURL
|
2016-06-21 15:35:42 +00:00
|
|
|
if httpserver.Path(r.URL.Path).Matches(h.Config.BaseURL) {
|
2016-06-28 16:12:02 +00:00
|
|
|
// Serve the hugo assets
|
2016-06-22 17:27:12 +00:00
|
|
|
if httpserver.Path(r.URL.Path).Matches(h.Config.BaseURL + AssetsURL) {
|
2016-06-28 16:12:02 +00:00
|
|
|
return serveAssets(w, r, h.Config)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Serve the filemanager assets
|
|
|
|
if httpserver.Path(r.URL.Path).Matches(h.Config.BaseURL + assets.BaseURL) {
|
|
|
|
return h.FileManager.ServeHTTP(w, r)
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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 == h.Config.BaseURL+"/settings/" || r.URL.Path == h.Config.BaseURL+"/settings" {
|
|
|
|
var frontmatter string
|
|
|
|
var err error
|
|
|
|
|
|
|
|
if _, err = os.Stat(h.Config.Root + "config.yaml"); err == nil {
|
|
|
|
frontmatter = "yaml"
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err = os.Stat(h.Config.Root + "config.json"); err == nil {
|
|
|
|
frontmatter = "json"
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err = os.Stat(h.Config.Root + "config.toml"); err == nil {
|
|
|
|
frontmatter = "toml"
|
|
|
|
}
|
|
|
|
|
2016-11-14 20:19:31 +00:00
|
|
|
http.Redirect(w, r, h.FileManager.Configs[0].AbsoluteURL()+"/config."+frontmatter, http.StatusTemporaryRedirect)
|
2016-06-28 16:12:02 +00:00
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
|
2016-12-11 10:41:03 +00:00
|
|
|
if r.Method == http.MethodPut && r.Header.Get("archetype") != "" {
|
2016-06-29 13:57:40 +00:00
|
|
|
filename := r.Header.Get("Filename")
|
|
|
|
archetype := r.Header.Get("archetype")
|
|
|
|
|
|
|
|
if !strings.HasSuffix(filename, ".md") && !strings.HasSuffix(filename, ".markdown") {
|
|
|
|
return h.FileManager.ServeHTTP(w, r)
|
|
|
|
}
|
|
|
|
|
2016-12-11 10:41:03 +00:00
|
|
|
filename = strings.Replace(r.URL.Path, h.Config.BaseURL+h.Config.WebDavURL+"/content/", "", 1)
|
2016-06-29 13:57:40 +00:00
|
|
|
filename = filepath.Clean(filename)
|
|
|
|
|
|
|
|
args := []string{"new", filename, "--kind", archetype}
|
|
|
|
|
|
|
|
if err := commands.Run(h.Config.Hugo, args, h.Config.Root); err != nil {
|
|
|
|
return http.StatusInternalServerError, err
|
|
|
|
}
|
|
|
|
|
2016-12-11 10:41:03 +00:00
|
|
|
return http.StatusCreated, nil
|
2016-06-28 16:12:02 +00:00
|
|
|
}
|
|
|
|
|
2016-11-14 20:19:31 +00:00
|
|
|
if canBeEdited(r.URL.Path) && r.Method == http.MethodPut {
|
2016-06-28 16:12:02 +00:00
|
|
|
code, err := h.FileManager.ServeHTTP(w, r)
|
|
|
|
|
2016-06-28 21:20:42 +00:00
|
|
|
if err != nil {
|
|
|
|
return code, err
|
|
|
|
}
|
|
|
|
|
2016-06-28 16:12:02 +00:00
|
|
|
if r.Header.Get("Regenerate") == "true" {
|
2016-12-18 12:40:56 +00:00
|
|
|
if err = h.Config.BeforePublish(
|
|
|
|
r,
|
|
|
|
&h.FileManager.Configs[0],
|
|
|
|
h.FileManager.Configs[0].User,
|
|
|
|
); err != nil {
|
|
|
|
return http.StatusInternalServerError, err
|
|
|
|
}
|
|
|
|
|
2016-06-28 21:20:42 +00:00
|
|
|
RunHugo(h.Config, false)
|
2016-12-18 12:40:56 +00:00
|
|
|
|
|
|
|
if err = h.Config.AfterPublish(
|
|
|
|
r,
|
|
|
|
&h.FileManager.Configs[0],
|
|
|
|
h.FileManager.Configs[0].User,
|
|
|
|
); err != nil {
|
|
|
|
return http.StatusInternalServerError, err
|
|
|
|
}
|
2016-06-28 16:12:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if r.Header.Get("Schedule") != "" {
|
2016-06-30 19:35:50 +00:00
|
|
|
code, err = h.Schedule(w, r)
|
2016-06-28 16:12:02 +00:00
|
|
|
}
|
2016-06-21 15:35:42 +00:00
|
|
|
|
2016-06-28 16:12:02 +00:00
|
|
|
return code, err
|
2016-06-21 15:35:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return h.FileManager.ServeHTTP(w, r)
|
|
|
|
}
|
|
|
|
|
2016-06-28 13:59:33 +00:00
|
|
|
return h.Next.ServeHTTP(w, r)
|
2016-06-21 15:35:42 +00:00
|
|
|
}
|
|
|
|
|
2016-06-28 13:59:33 +00:00
|
|
|
// RunHugo is used to run the static website generator
|
|
|
|
func RunHugo(c *Config, force bool) {
|
|
|
|
os.RemoveAll(c.Root + "public")
|
2016-06-21 15:35:42 +00:00
|
|
|
|
2016-06-28 13:59:33 +00:00
|
|
|
// Prevent running if watching is enabled
|
|
|
|
if b, pos := variables.StringInSlice("--watch", c.Args); b && !force {
|
|
|
|
if len(c.Args) > pos && c.Args[pos+1] != "false" {
|
|
|
|
return
|
|
|
|
}
|
2016-06-21 15:35:42 +00:00
|
|
|
|
2016-06-28 13:59:33 +00:00
|
|
|
if len(c.Args) == pos+1 {
|
|
|
|
return
|
2016-06-21 15:35:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-28 13:59:33 +00:00
|
|
|
if err := commands.Run(c.Hugo, c.Args, c.Root); err != nil {
|
2016-07-02 22:29:47 +00:00
|
|
|
log.Println(err)
|
2016-06-28 13:59:33 +00:00
|
|
|
}
|
2016-06-21 15:35:42 +00:00
|
|
|
}
|
2016-06-22 17:27:12 +00:00
|
|
|
|
2016-06-29 09:46:55 +00:00
|
|
|
// Schedule schedules a post to be published later
|
2016-06-30 19:35:50 +00:00
|
|
|
func (h Hugo) Schedule(w http.ResponseWriter, r *http.Request) (int, error) {
|
|
|
|
t, err := time.Parse("2006-01-02T15:04", r.Header.Get("Schedule"))
|
2016-06-29 19:39:29 +00:00
|
|
|
|
2016-06-30 19:35:50 +00:00
|
|
|
if err != nil {
|
|
|
|
return http.StatusInternalServerError, err
|
|
|
|
}
|
2016-06-29 19:39:29 +00:00
|
|
|
|
2017-01-18 18:21:04 +00:00
|
|
|
format := rune(r.Header.Get("Rune")[0])
|
2016-06-29 19:39:29 +00:00
|
|
|
scheduler := cron.New()
|
2016-06-30 19:35:50 +00:00
|
|
|
scheduler.AddFunc(t.Format("05 04 15 02 01 *"), func() {
|
2016-06-29 19:39:29 +00:00
|
|
|
filename := r.URL.Path
|
2016-12-07 20:03:06 +00:00
|
|
|
filename = strings.Replace(filename, h.FileManager.Configs[0].WebDavURL, h.Config.Root, 1)
|
2016-06-29 19:39:29 +00:00
|
|
|
filename = filepath.Clean(filename)
|
|
|
|
|
|
|
|
raw, err := ioutil.ReadFile(filename)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-06-30 19:35:50 +00:00
|
|
|
buffer := bytes.NewBuffer(raw)
|
|
|
|
page, err := parser.ReadFrom(buffer)
|
2016-06-29 19:39:29 +00:00
|
|
|
|
2016-06-30 19:35:50 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
return
|
|
|
|
}
|
2016-06-29 19:39:29 +00:00
|
|
|
|
2016-06-30 19:35:50 +00:00
|
|
|
content := strings.TrimSpace(string(page.Content()))
|
|
|
|
front, err := frontmatter.Unmarshal(page.FrontMatter())
|
2016-06-29 19:39:29 +00:00
|
|
|
|
|
|
|
if err != nil {
|
2016-06-30 19:35:50 +00:00
|
|
|
log.Println(err)
|
2016-06-29 19:39:29 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-06-30 19:35:50 +00:00
|
|
|
kind := reflect.TypeOf(front)
|
|
|
|
|
|
|
|
if kind == reflect.TypeOf(map[interface{}]interface{}{}) {
|
|
|
|
delete(front.(map[interface{}]interface{}), "draft")
|
|
|
|
delete(front.(map[interface{}]interface{}), "Draft")
|
|
|
|
} else {
|
|
|
|
delete(front.(map[string]interface{}), "draft")
|
|
|
|
delete(front.(map[string]interface{}), "Draft")
|
|
|
|
}
|
|
|
|
|
2017-01-18 18:21:04 +00:00
|
|
|
fm, err := frontmatter.Marshal(front, format)
|
2016-06-30 19:35:50 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
return
|
|
|
|
}
|
2016-06-29 19:39:29 +00:00
|
|
|
|
|
|
|
f := new(bytes.Buffer)
|
2016-06-30 19:35:50 +00:00
|
|
|
f.Write(fm)
|
|
|
|
f.Write([]byte(content))
|
2016-06-29 19:39:29 +00:00
|
|
|
file := f.Bytes()
|
|
|
|
|
|
|
|
if err = ioutil.WriteFile(filename, file, 0666); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-06-30 19:35:50 +00:00
|
|
|
RunHugo(h.Config, false)
|
|
|
|
})
|
|
|
|
scheduler.Start()
|
2016-06-29 19:39:29 +00:00
|
|
|
|
2016-06-29 09:46:55 +00:00
|
|
|
return http.StatusOK, nil
|
|
|
|
}
|
|
|
|
|
2016-11-14 20:19:31 +00:00
|
|
|
func canBeEdited(name string) bool {
|
|
|
|
extensions := [...]string{
|
|
|
|
".md", ".markdown", ".mdown", ".mmark",
|
|
|
|
".asciidoc", ".adoc", ".ad",
|
|
|
|
".rst",
|
|
|
|
".json", ".toml", ".yaml", ".csv", ".xml", ".rss", ".conf", ".ini",
|
|
|
|
".tex", ".sty",
|
|
|
|
".css", ".sass", ".scss",
|
|
|
|
".js",
|
|
|
|
".html",
|
|
|
|
".txt", ".rtf",
|
|
|
|
".sh", ".bash", ".ps1", ".bat", ".cmd",
|
|
|
|
".php", ".pl", ".py",
|
|
|
|
"Caddyfile",
|
|
|
|
".c", ".cc", ".h", ".hh", ".cpp", ".hpp", ".f90",
|
|
|
|
".f", ".bas", ".d", ".ada", ".nim", ".cr", ".java", ".cs", ".vala", ".vapi",
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, extension := range extensions {
|
|
|
|
if strings.HasSuffix(name, extension) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-06-28 13:59:33 +00:00
|
|
|
// serveAssets provides the needed assets for the front-end
|
|
|
|
func serveAssets(w http.ResponseWriter, r *http.Request, c *Config) (int, error) {
|
2016-06-22 17:27:12 +00:00
|
|
|
// gets the filename to be used with Assets function
|
2016-06-28 13:59:33 +00:00
|
|
|
filename := strings.Replace(r.URL.Path, c.BaseURL+AssetsURL, "public", 1)
|
2016-06-22 17:27:12 +00:00
|
|
|
file, err := Asset(filename)
|
|
|
|
if err != nil {
|
|
|
|
return http.StatusNotFound, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the file extension and its mimetype
|
|
|
|
extension := filepath.Ext(filename)
|
|
|
|
mediatype := mime.TypeByExtension(extension)
|
|
|
|
|
|
|
|
// Write the header with the Content-Type and write the file
|
|
|
|
// content to the buffer
|
|
|
|
w.Header().Set("Content-Type", mediatype)
|
|
|
|
w.Write(file)
|
|
|
|
return 200, nil
|
|
|
|
}
|