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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
|
package page
import (
"bufio"
"bytes"
"fmt"
"io"
"os"
"path/filepath"
"strings"
"text/template"
"github.com/russross/blackfriday"
"gopkg.in/yaml.v3"
)
type Page struct {
Path string
Title string
Head string
Description string
Tags map[string]interface{}
Date *PageTime
Published bool
Vars map[string]interface{}
Markdown []byte
}
// Can be adjusted to change the base template used in rendering
var BaseTemplate = "inc/base.html"
// Used to split the .md files into yaml and markdown
var DocumentSplit = "|---\n"
// Renders a page
func (p *Page) Render(wr io.Writer) error {
if err := p.Read(); 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"}}
{{.RenderHead}}
{{end}}
`)
if err != nil {
return err
}
}
return t.Execute(wr, p)
}
func (p *Page) RenderHead() (string, error) {
buf := &bytes.Buffer{}
t, err := template.New("Head").Parse(p.Head)
if err != nil {
return "", err
}
err = t.Execute(buf, p)
if err != nil {
return "", err
}
return string(buf.Bytes()), nil
}
// Reads in the special markdown file format for the website off of the disk
func (p *Page) Read() error {
yamlBuf := bytes.NewBuffer(nil)
markdownBuf := bytes.NewBuffer(nil)
fh, err := os.Open(p.Path + ".md")
if err != nil {
return err
}
defer fh.Close()
rdr := bufio.NewReader(fh)
// Read in the file and split between markdown and yaml buffers
yamlDone := false
for {
bytes, err := rdr.ReadBytes('\n')
if err == io.EOF {
break
} else if err != nil {
return err
}
// Is this the line where we stop reading the yaml and start reading markdown?
if DocumentSplit == string(bytes) && !yamlDone {
yamlDone = true
continue
}
if !yamlDone {
yamlBuf.Write(bytes)
} else {
markdownBuf.Write(bytes)
}
}
err = yaml.Unmarshal(yamlBuf.Bytes(), p)
if err != nil {
return err
}
p.Markdown = markdownBuf.Bytes()
return nil
}
func (p *Page) RenderBody() (string, error) {
buf := &bytes.Buffer{}
t, err := template.New("Body").Parse(string(p.Markdown))
if err != nil {
return "", err
}
err = t.Execute(buf, p)
if err != nil {
return "", err
}
return string(blackfriday.Run(buf.Bytes())), nil
}
func (p Page) String() string {
return fmt.Sprintf("Page: %s", p.Path)
}
var pageIndex map[string]PageList
// Index returns a map of all pages below the current Page's Path seperated
// into their respective tags If a Page has multiple tags it will be listed
// under each
func (p *Page) Index() (map[string]PageList, error) {
if pageIndex != nil {
return pageIndex, nil
}
fmt.Fprintln(os.Stderr, "Rebuilding index...")
out := make(map[string]PageList)
var pageErr error
filepath.Walk(filepath.Dir(p.Path),
func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if !info.IsDir() && strings.HasSuffix(info.Name(), ".md") {
p2 := &Page{Path: strings.ReplaceAll(path, ".md", "")}
err = p2.Read()
if err != nil {
pageErr = err
fmt.Fprintln(os.Stderr, "Error encountered: ", err)
return err
}
for tag, _ := range p2.Tags {
if _, ok := out[tag]; !ok {
out[tag] = []*Page{p2}
} else {
out[tag] = append(out[tag], p2)
}
}
}
return nil
})
pageIndex = out
return out, nil
}
|