filebrowser/setup.go

96 lines
2.1 KiB
Go
Raw Normal View History

2016-06-10 13:36:43 +00:00
package filemanager
import (
"fmt"
"io/ioutil"
"net/http"
2016-06-14 17:19:10 +00:00
"strings"
2016-06-10 13:36:43 +00:00
"github.com/mholt/caddy"
"github.com/mholt/caddy/caddyhttp/httpserver"
)
func init() {
caddy.RegisterPlugin("filemanager", caddy.Plugin{
ServerType: "http",
Action: setup,
})
}
2016-06-11 20:20:47 +00:00
// setup configures a new FileManager middleware instance.
2016-06-10 13:36:43 +00:00
func setup(c *caddy.Controller) error {
2016-06-11 20:20:47 +00:00
configs, err := parseConfiguration(c)
if err != nil {
return err
}
2016-06-10 13:36:43 +00:00
2016-06-22 20:30:40 +00:00
httpserver.GetConfig(c).AddMiddleware(func(next httpserver.Handler) httpserver.Handler {
2016-06-11 20:20:47 +00:00
return FileManager{Configs: configs, Next: next}
})
return nil
}
2016-06-11 20:20:47 +00:00
// Config is a configuration for browsing in a particualr path.
type Config struct {
2016-06-22 20:03:48 +00:00
PathScope string
Root http.FileSystem
BaseURL string
StyleSheet string // Costum stylesheet
HugoEnabled bool // This must be only used by Hugo plugin
2016-06-11 20:20:47 +00:00
}
// parseConfiguration parses the configuration set by the user so it can
// be used by the middleware
func parseConfiguration(c *caddy.Controller) ([]Config, error) {
var configs []Config
2016-06-11 20:20:47 +00:00
appendConfig := func(cfg Config) error {
for _, c := range configs {
2016-06-11 20:20:47 +00:00
if c.PathScope == cfg.PathScope {
2016-06-10 19:54:19 +00:00
return fmt.Errorf("duplicate file managing config for %s", c.PathScope)
}
2016-06-10 13:36:43 +00:00
}
2016-06-11 20:20:47 +00:00
configs = append(configs, cfg)
return nil
2016-06-10 13:36:43 +00:00
}
for c.Next() {
2016-06-22 20:03:48 +00:00
var cfg = Config{PathScope: ".", BaseURL: "", HugoEnabled: false}
2016-06-10 19:54:19 +00:00
for c.NextBlock() {
switch c.Val() {
case "show":
if !c.NextArg() {
return configs, c.ArgErr()
}
2016-06-11 20:20:47 +00:00
cfg.PathScope = c.Val()
2016-06-14 19:33:59 +00:00
cfg.PathScope = strings.TrimSuffix(cfg.PathScope, "/")
2016-06-10 19:54:19 +00:00
case "on":
if !c.NextArg() {
return configs, c.ArgErr()
}
2016-06-11 20:20:47 +00:00
cfg.BaseURL = c.Val()
2016-06-14 17:19:10 +00:00
cfg.BaseURL = strings.TrimPrefix(cfg.BaseURL, "/")
cfg.BaseURL = strings.TrimSuffix(cfg.BaseURL, "/")
cfg.BaseURL = "/" + cfg.BaseURL
2016-06-10 19:54:19 +00:00
case "styles":
if !c.NextArg() {
return configs, c.ArgErr()
}
2016-06-10 21:18:44 +00:00
tplBytes, err := ioutil.ReadFile(c.Val())
if err != nil {
return configs, err
}
2016-06-11 20:20:47 +00:00
cfg.StyleSheet = string(tplBytes)
}
}
2016-06-11 20:20:47 +00:00
cfg.Root = http.Dir(cfg.PathScope)
if err := appendConfig(cfg); err != nil {
return configs, err
}
}
return configs, nil
2016-06-10 13:36:43 +00:00
}