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-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
|
|
|
)
|
|
|
|
|
2021-05-14 06:17:10 +02:00
|
|
|
// Site represents a site.
|
|
|
|
type Site 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-06-26 08:09:55 +02:00
|
|
|
Params map[string]string `toml:"params"`
|
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-14 06:17:10 +02:00
|
|
|
templates Templates
|
|
|
|
root *Dir
|
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
|
2021-09-02 11:59:08 +02:00
|
|
|
Feeds []Feed `toml:"feeds"`
|
2021-09-03 05:41:52 +02:00
|
|
|
feeds map[string][]Feed
|
2021-09-02 11:59:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type Feed struct {
|
|
|
|
InputDir string `toml:"input_dir"`
|
|
|
|
Title string `toml:"title"`
|
|
|
|
Template string `toml:"template"`
|
|
|
|
Output string `toml:"output"`
|
2021-05-10 18:23:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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-05-14 06:17:10 +02:00
|
|
|
// LoadSite loads the site with the given configuration file.
|
|
|
|
func LoadSite(config string) (*Site, error) {
|
|
|
|
f, err := os.Open(config)
|
2020-11-20 18:07:38 +01:00
|
|
|
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-05-14 06:17:10 +02:00
|
|
|
site := &Site{}
|
|
|
|
if err := toml.NewDecoder(f).Decode(site); err != nil {
|
2021-03-20 07:02:36 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-05-14 06:17:10 +02:00
|
|
|
funcs := site.funcs()
|
|
|
|
|
2021-05-10 17:06:55 +02:00
|
|
|
// Parse permalinks
|
2021-05-14 06:17:10 +02:00
|
|
|
site.permalinks = map[string]*template.Template{}
|
|
|
|
for path := range site.Permalinks {
|
|
|
|
t := template.New(fmt.Sprintf("permalink %q", path)).Funcs(funcs)
|
|
|
|
_, err := t.Parse(site.Permalinks[path])
|
2021-05-10 17:06:55 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-05-14 06:17:10 +02:00
|
|
|
site.permalinks[path] = t
|
2020-11-20 18:07:38 +01:00
|
|
|
}
|
|
|
|
|
2021-05-14 06:17:10 +02:00
|
|
|
// Load templates
|
|
|
|
templateExts := []string{}
|
|
|
|
for _, task := range site.Tasks {
|
|
|
|
if task.TemplateExt != "" {
|
|
|
|
templateExts = append(templateExts, task.TemplateExt)
|
2021-05-10 17:12:26 +02:00
|
|
|
}
|
|
|
|
}
|
2021-05-14 06:17:10 +02:00
|
|
|
site.templates.Funcs(funcs)
|
|
|
|
if err := site.templates.Load("templates", templateExts); err != nil {
|
|
|
|
return nil, err
|
2021-05-10 17:12:26 +02:00
|
|
|
}
|
|
|
|
|
2021-09-03 05:41:52 +02:00
|
|
|
// Populate task feeds map
|
|
|
|
for _, task := range site.Tasks {
|
|
|
|
task.feeds = map[string][]Feed{}
|
|
|
|
for _, feed := range task.Feeds {
|
2021-09-03 06:22:07 +02:00
|
|
|
dir := feed.InputDir
|
|
|
|
task.feeds[dir] = append(task.feeds[dir], feed)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-14 06:17:10 +02:00
|
|
|
return site, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Site) dir(path string) *Dir {
|
|
|
|
return s.root.getDir(path)
|
|
|
|
}
|
2021-05-10 01:28:09 +02:00
|
|
|
|
2021-05-14 06:17:10 +02:00
|
|
|
func (s *Site) page(path string) *Page {
|
|
|
|
return s.root.getPage(path)
|
2021-05-10 01:28:09 +02:00
|
|
|
}
|