63 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
package config
 | 
						|
 | 
						|
import (
 | 
						|
	"strings"
 | 
						|
 | 
						|
	"github.com/mholt/caddy/caddy/setup"
 | 
						|
)
 | 
						|
 | 
						|
// Config is the add-on configuration set on Caddyfile
 | 
						|
type Config struct {
 | 
						|
	Public string   // Public content path
 | 
						|
	Path   string   // Hugo files path
 | 
						|
	Styles string   // Admin styles path
 | 
						|
	Args   []string // Hugo arguments
 | 
						|
}
 | 
						|
 | 
						|
// ParseHugo parses the configuration file
 | 
						|
func ParseHugo(c *setup.Controller) (*Config, error) {
 | 
						|
	conf := &Config{
 | 
						|
		Public: strings.Replace(c.Root, "./", "", -1),
 | 
						|
		Path:   "./",
 | 
						|
	}
 | 
						|
 | 
						|
	for c.Next() {
 | 
						|
		args := c.RemainingArgs()
 | 
						|
 | 
						|
		switch len(args) {
 | 
						|
		case 1:
 | 
						|
			conf.Path = args[0]
 | 
						|
			conf.Path = strings.TrimSuffix(conf.Path, "/")
 | 
						|
			conf.Path += "/"
 | 
						|
		}
 | 
						|
 | 
						|
		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
 | 
						|
			case "args":
 | 
						|
				if !c.NextArg() {
 | 
						|
					return nil, c.ArgErr()
 | 
						|
				}
 | 
						|
 | 
						|
				// Get the arguments and split the array
 | 
						|
				args := strings.Split(c.Val(), " ")
 | 
						|
				for index, element := range args {
 | 
						|
					args[index] = strings.Replace(element, "\"", "", -1)
 | 
						|
				}
 | 
						|
 | 
						|
				conf.Args = args
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	return conf, nil
 | 
						|
}
 |