aboutsummaryrefslogtreecommitdiff
path: root/page/page.go
blob: 83e3c9e710f68619e85590924b3760d6b6860a98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package page

import (
	"fmt"
	"io"
	"io/ioutil"
	"text/template"
	"time"

	"gopkg.in/russross/blackfriday.v2"
	"gopkg.in/yaml.v2"
)

type Page struct {
	Name      string
	Head      string
	Body      string
	Date      *time.Time
	Published bool
}

// Can be adjusted to change the base template used in rendering
var BaseTemplate = "inc/base.html"

func (p *Page) Render(wr io.Writer) error {
	if err := p.readYaml(); err != nil {
		return err
	}
	if err := p.readMarkdown(); err != nil {
		return err
	}

	t, err := template.ParseFiles(BaseTemplate)
	if err != nil {
		return err
	}

	// Automatically pull from the yml file if applicable
	if p.Head != "" {
		t, err = t.Parse(`
			{{define "head"}}
			{{.Head}}
			{{end}}
		`)
		if err != nil {
			return err
		}
	}

	return t.Execute(wr, p)
}

func (p *Page) readYaml() error {
	fname := p.Name + ".yml"
	b, err := ioutil.ReadFile(fname)
	if err != nil {
		return fmt.Errorf("While unmarshaling file '%s': %v", fname, err)
	}
	return yaml.Unmarshal(b, p)
}

func (p *Page) readMarkdown() error {
	b, err := ioutil.ReadFile(p.Name + ".md")
	if err != nil {
		return err
	}
	p.Body = string(blackfriday.Run(b))
	return nil
}