2020-11-20 18:07:38 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-05-01 19:56:41 +02:00
|
|
|
"fmt"
|
2020-11-20 18:07:38 +01:00
|
|
|
"os"
|
2021-05-01 19:56:41 +02:00
|
|
|
"strings"
|
2021-05-10 17:06:55 +02:00
|
|
|
"text/template"
|
2020-11-20 18:07:38 +01:00
|
|
|
|
2021-05-10 18:15:58 +02:00
|
|
|
"github.com/pelletier/go-toml"
|
2020-11-20 18:07:38 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// Config contains site configuration.
|
|
|
|
type Config struct {
|
2021-05-10 06:44:25 +02:00
|
|
|
Title string `toml:"title"`
|
|
|
|
URLs []string `toml:"urls"`
|
2021-05-10 16:26:12 +02:00
|
|
|
Tasks []*Task `toml:"tasks"`
|
2021-05-10 17:06:55 +02:00
|
|
|
Feeds map[string]string `toml:"feeds"`
|
2021-05-10 06:44:25 +02:00
|
|
|
Permalinks map[string]string `toml:"permalinks"`
|
2021-05-10 17:06:55 +02:00
|
|
|
permalinks map[string]*template.Template
|
2021-05-09 02:27:13 +02:00
|
|
|
templates *Templates
|
2020-11-20 18:07:38 +01:00
|
|
|
}
|
|
|
|
|
2021-03-21 04:17:58 +01:00
|
|
|
// Task represents a site build task.
|
|
|
|
type Task struct {
|
2021-05-10 18:23:27 +02:00
|
|
|
Input []string `toml:"input"` // input file suffixes
|
|
|
|
OutputExt string `toml:"output"` // output file suffix
|
|
|
|
TemplateExt string `toml:"template"` // template file suffix
|
|
|
|
Preprocess map[string]string `toml:"preprocess"` // preprocess commands
|
|
|
|
Postprocess string `toml:"postprocess"` // postprocess command
|
|
|
|
StaticDir string `toml:"static_dir"` // static file directory
|
|
|
|
OutputDir string `toml:"output_dir"` // output directory
|
|
|
|
UglyURLs bool `toml:"ugly_urls"` // whether to use ugly URLs
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *Task) Match(ext string) bool {
|
|
|
|
for i := range t.Input {
|
|
|
|
if t.Input[i] == ext {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
2021-03-21 04:17:58 +01:00
|
|
|
}
|
|
|
|
|
2021-03-21 04:57:16 +01:00
|
|
|
// LoadConfig loads the configuration from the provided path.
|
|
|
|
func LoadConfig(path string) (*Config, error) {
|
2020-11-20 18:07:38 +01:00
|
|
|
f, err := os.Open(path)
|
|
|
|
if err != nil {
|
2021-03-20 07:02:36 +01:00
|
|
|
return nil, err
|
2020-11-20 18:07:38 +01:00
|
|
|
}
|
2021-03-20 07:02:36 +01:00
|
|
|
defer f.Close()
|
2020-11-20 18:07:38 +01:00
|
|
|
|
2021-04-20 22:16:12 +02:00
|
|
|
c := &Config{}
|
2021-05-10 18:15:58 +02:00
|
|
|
if err := toml.NewDecoder(f).Decode(c); err != nil {
|
2021-03-20 07:02:36 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-05-10 17:06:55 +02:00
|
|
|
// Parse permalinks
|
|
|
|
c.permalinks = map[string]*template.Template{}
|
|
|
|
for s := range c.Permalinks {
|
2021-05-10 17:31:32 +02:00
|
|
|
t := template.New(fmt.Sprintf("permalink %q", s)).Funcs(funcs)
|
|
|
|
_, err := t.Parse(c.Permalinks[s])
|
2021-05-10 17:06:55 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
c.permalinks[s] = t
|
|
|
|
}
|
|
|
|
|
2020-11-20 18:07:38 +01:00
|
|
|
// Site contains site metadata passed to templates
|
|
|
|
type Site struct {
|
|
|
|
Title string
|
2020-11-28 00:24:31 +01:00
|
|
|
URLs []string
|
2020-11-20 18:07:38 +01:00
|
|
|
}
|
|
|
|
|
2021-05-10 17:12:26 +02:00
|
|
|
funcs["site"] = func() Site {
|
|
|
|
return Site{
|
|
|
|
Title: c.Title,
|
|
|
|
URLs: c.URLs,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
funcs["partial"] = func(name string, data interface{}) (interface{}, error) {
|
|
|
|
t, ok := c.templates.FindPartial(name)
|
|
|
|
if !ok {
|
|
|
|
return "", fmt.Errorf("Error: partial %q not found", name)
|
|
|
|
}
|
|
|
|
var b strings.Builder
|
|
|
|
if err := t.Execute(&b, data); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return b.String(), nil
|
|
|
|
}
|
|
|
|
|
2021-05-10 01:28:09 +02:00
|
|
|
// Initialize templates
|
2021-05-09 02:27:13 +02:00
|
|
|
c.templates = NewTemplates()
|
2021-05-10 17:12:26 +02:00
|
|
|
c.templates.Funcs(funcs)
|
2021-05-10 01:28:09 +02:00
|
|
|
|
|
|
|
return c, nil
|
|
|
|
}
|