filebrowser/setup.go

109 lines
2.0 KiB
Go
Raw Normal View History

2016-06-10 13:36:43 +00:00
package filemanager
import (
"fmt"
"io/ioutil"
"net/http"
"text/template"
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,
})
}
// setup configures a new Browse middleware instance.
2016-06-10 13:36:43 +00:00
func setup(c *caddy.Controller) error {
2016-06-10 19:54:19 +00:00
// Second argument would be the template file to use
2016-06-10 21:18:44 +00:00
tplBytes, err := Asset("templates/template.tmpl")
2016-06-10 19:54:19 +00:00
if err != nil {
return err
}
tplText := string(tplBytes)
// Build the template
tpl, err := template.New("listing").Parse(tplText)
if err != nil {
return err
}
Template = tpl
configs, err := fileManagerParse(c)
if err != nil {
return err
}
2016-06-10 13:36:43 +00:00
f := FileManager{
Configs: configs,
IgnoreIndexes: false,
}
2016-06-10 13:36:43 +00:00
httpserver.GetConfig(c.Key).AddMiddleware(func(next httpserver.Handler) httpserver.Handler {
f.Next = next
return f
})
return nil
}
func fileManagerParse(c *caddy.Controller) ([]Config, error) {
var configs []Config
2016-06-10 19:54:19 +00:00
appendCfg := func(fmc Config) error {
for _, c := range configs {
2016-06-10 19:54:19 +00:00
if c.PathScope == fmc.PathScope {
return fmt.Errorf("duplicate file managing config for %s", c.PathScope)
}
2016-06-10 13:36:43 +00:00
}
2016-06-10 19:54:19 +00:00
configs = append(configs, fmc)
return nil
2016-06-10 13:36:43 +00:00
}
for c.Next() {
2016-06-10 19:54:19 +00:00
var fmc = Config{
PathScope: ".",
BaseURL: "/",
StyleSheet: "",
}
2016-06-10 19:54:19 +00:00
for c.NextBlock() {
switch c.Val() {
case "show":
if !c.NextArg() {
return configs, c.ArgErr()
}
fmc.PathScope = c.Val()
case "on":
if !c.NextArg() {
return configs, c.ArgErr()
}
fmc.BaseURL = c.Val()
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
}
fmc.StyleSheet = string(tplBytes)
}
}
2016-06-10 19:54:19 +00:00
fmc.Root = http.Dir(fmc.PathScope)
// Save configuration
2016-06-10 19:54:19 +00:00
err := appendCfg(fmc)
if err != nil {
return configs, err
}
}
return configs, nil
2016-06-10 13:36:43 +00:00
}