2016-06-25 20:57:10 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/mholt/caddy"
|
2016-07-01 14:46:06 +00:00
|
|
|
"github.com/mholt/caddy/caddyhttp/httpserver"
|
2016-06-25 20:57:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Config is a configuration for browsing in a particualr path.
|
|
|
|
type Config struct {
|
|
|
|
PathScope string
|
|
|
|
Root http.FileSystem
|
|
|
|
BaseURL string
|
2016-07-01 14:46:06 +00:00
|
|
|
AbsoluteURL string
|
2016-07-01 14:51:02 +00:00
|
|
|
AddrPath string
|
2016-07-05 16:46:45 +00:00
|
|
|
Token string // Anti CSRF token
|
2016-06-25 20:57:10 +00:00
|
|
|
StyleSheet string // Costum stylesheet
|
2016-06-29 09:16:10 +00:00
|
|
|
FrontMatter string // Default frontmatter to save files in
|
2016-06-26 17:30:08 +00:00
|
|
|
HugoEnabled bool // Enables the Hugo plugin for File Manager
|
2016-06-25 20:57:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Parse parses the configuration set by the user so it can
|
|
|
|
// be used by the middleware
|
|
|
|
func Parse(c *caddy.Controller) ([]Config, error) {
|
|
|
|
var configs []Config
|
|
|
|
|
|
|
|
appendConfig := func(cfg Config) error {
|
|
|
|
for _, c := range configs {
|
|
|
|
if c.PathScope == cfg.PathScope {
|
|
|
|
return fmt.Errorf("duplicate file managing config for %s", c.PathScope)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
configs = append(configs, cfg)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
for c.Next() {
|
2016-06-29 09:41:17 +00:00
|
|
|
var cfg = Config{PathScope: ".", BaseURL: "", FrontMatter: "yaml", HugoEnabled: false}
|
2016-06-25 20:57:10 +00:00
|
|
|
for c.NextBlock() {
|
|
|
|
switch c.Val() {
|
|
|
|
case "show":
|
|
|
|
if !c.NextArg() {
|
|
|
|
return configs, c.ArgErr()
|
|
|
|
}
|
|
|
|
cfg.PathScope = c.Val()
|
|
|
|
cfg.PathScope = strings.TrimSuffix(cfg.PathScope, "/")
|
2016-06-29 09:43:13 +00:00
|
|
|
case "frontmatter":
|
|
|
|
if !c.NextArg() {
|
|
|
|
return configs, c.ArgErr()
|
|
|
|
}
|
|
|
|
cfg.FrontMatter = c.Val()
|
|
|
|
if cfg.FrontMatter != "yaml" && cfg.FrontMatter != "json" && cfg.FrontMatter != "toml" {
|
|
|
|
return configs, c.Err("frontmatter type not supported")
|
|
|
|
}
|
2016-06-25 20:57:10 +00:00
|
|
|
case "on":
|
|
|
|
if !c.NextArg() {
|
|
|
|
return configs, c.ArgErr()
|
|
|
|
}
|
|
|
|
cfg.BaseURL = c.Val()
|
|
|
|
cfg.BaseURL = strings.TrimPrefix(cfg.BaseURL, "/")
|
|
|
|
cfg.BaseURL = strings.TrimSuffix(cfg.BaseURL, "/")
|
|
|
|
cfg.BaseURL = "/" + cfg.BaseURL
|
|
|
|
case "styles":
|
|
|
|
if !c.NextArg() {
|
|
|
|
return configs, c.ArgErr()
|
|
|
|
}
|
|
|
|
tplBytes, err := ioutil.ReadFile(c.Val())
|
|
|
|
if err != nil {
|
|
|
|
return configs, err
|
|
|
|
}
|
|
|
|
cfg.StyleSheet = string(tplBytes)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-01 14:46:06 +00:00
|
|
|
caddyConf := httpserver.GetConfig(c)
|
2016-07-03 18:45:46 +00:00
|
|
|
cfg.AbsoluteURL = strings.TrimSuffix(caddyConf.Addr.Path, "/") + "/" + cfg.BaseURL
|
2016-07-01 14:46:06 +00:00
|
|
|
cfg.AbsoluteURL = strings.Replace(cfg.AbsoluteURL, "//", "/", -1)
|
2016-07-03 18:45:46 +00:00
|
|
|
cfg.AbsoluteURL = strings.TrimSuffix(cfg.AbsoluteURL, "/")
|
2016-07-01 14:51:02 +00:00
|
|
|
cfg.AddrPath = strings.TrimSuffix(caddyConf.Addr.Path, "/")
|
2016-06-25 20:57:10 +00:00
|
|
|
cfg.Root = http.Dir(cfg.PathScope)
|
|
|
|
if err := appendConfig(cfg); err != nil {
|
|
|
|
return configs, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return configs, nil
|
|
|
|
}
|