filebrowser/config/config.go

69 lines
1.3 KiB
Go
Raw Normal View History

2015-09-20 08:15:21 +00:00
package config
import (
"strings"
"github.com/mholt/caddy/config/setup"
)
// Config is the add-on configuration set on Caddyfile
type Config struct {
2015-09-30 21:03:28 +00:00
Public string
Content string
Path string
2015-09-27 19:33:36 +00:00
Styles string
2015-09-27 12:20:05 +00:00
Command string
2015-09-30 21:03:28 +00:00
Hugo bool
2015-09-20 08:15:21 +00:00
}
2015-09-27 12:20:05 +00:00
// ParseCMS parses the configuration file
func ParseCMS(c *setup.Controller) (*Config, error) {
2015-09-30 21:03:28 +00:00
conf := &Config{
Public: strings.Replace(c.Root, "./", "", -1),
Content: "content",
Hugo: true,
Path: "./",
}
2015-09-20 08:15:21 +00:00
for c.Next() {
2015-09-30 21:03:28 +00:00
args := c.RemainingArgs()
switch len(args) {
case 1:
conf.Path = args[0]
conf.Path = strings.TrimSuffix(conf.Path, "/")
conf.Path += "/"
}
2015-09-20 08:15:21 +00:00
for c.NextBlock() {
switch c.Val() {
case "styles":
if !c.NextArg() {
return nil, c.ArgErr()
}
conf.Styles = c.Val()
// Remove the beginning slash if it exists or not
conf.Styles = strings.TrimPrefix(conf.Styles, "/")
// Add a beginning slash to make a
conf.Styles = "/" + conf.Styles
2015-09-27 18:49:58 +00:00
case "content":
if !c.NextArg() {
return nil, c.ArgErr()
}
conf.Content = c.Val()
2015-09-27 12:20:05 +00:00
case "command":
if !c.NextArg() {
return nil, c.ArgErr()
}
conf.Command = c.Val()
2015-09-30 21:03:28 +00:00
if conf.Command != "" && !strings.HasPrefix(conf.Command, "-") {
conf.Hugo = false
2015-09-20 21:00:25 +00:00
}
2015-09-20 08:15:21 +00:00
}
}
}
return conf, nil
}