forked from kabukky/journey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generation.go
243 lines (232 loc) · 8.97 KB
/
generation.go
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
package templates
import (
"bytes"
"errors"
"github.com/kabukky/journey/database"
"github.com/kabukky/journey/filenames"
"github.com/kabukky/journey/flags"
"github.com/kabukky/journey/helpers"
"github.com/kabukky/journey/plugins"
"github.com/kabukky/journey/structure"
"github.com/kabukky/journey/watcher"
"io/ioutil"
"log"
"os"
"path/filepath"
"regexp"
"strings"
)
// For parsing of the theme files
var openTag = []byte("{{")
var closeTag = []byte("}}")
var twoPartArgumentChecker = regexp.MustCompile("(\\S+?)\\s*?=\\s*?['\"](.*?)['\"]")
var quoteTagChecker = regexp.MustCompile("(.*?)[\"'](.+?)[\"']$")
func getFunction(name string) func(*structure.Helper, *structure.RequestData) []byte {
if helperFuctions[name] != nil {
return helperFuctions[name]
} else {
return helperFuctions["null"]
}
}
func createHelper(helperName []byte, unescaped bool, startPos int, block []byte, children []structure.Helper, elseHelper *structure.Helper) *structure.Helper {
var helper *structure.Helper
// Check for =arguments
twoPartArgumentResult := twoPartArgumentChecker.FindAllSubmatch(helperName, -1)
twoPartArguments := make([][]byte, 0)
for _, arg := range twoPartArgumentResult {
if len(arg) == 3 {
twoPartArguments = append(twoPartArguments, bytes.Join(arg[1:], []byte("=")))
//remove =argument from helper name
helperName = bytes.Replace(helperName, arg[0], []byte(""), 1)
}
}
// Separate arguments (e.g. 'if @blog.title')
tags := bytes.Fields(helperName)
for index, tag := range tags {
//remove "" around tag if present
quoteTagResult := quoteTagChecker.FindSubmatch(tag)
if len(quoteTagResult) != 0 {
tag = quoteTagResult[1]
}
//TODO: This may have to change if the first argument is surrounded by quotes
if index == 0 {
helper = makeHelper(string(tag), unescaped, startPos, block, children)
} else {
// Handle whitespaces in arguments
helper.Arguments = append(helper.Arguments, *makeHelper(string(tag), unescaped, 0, []byte{}, nil))
}
}
if len(twoPartArguments) != 0 {
for _, arg := range twoPartArguments {
// Check for quotes in the =argument (has beem omitted from the check above)
quoteTagResult := quoteTagChecker.FindSubmatch(arg)
if len(quoteTagResult) != 0 {
// Join poth parts, this time without the youtes
arg = bytes.Join([][]byte{quoteTagResult[1], quoteTagResult[2]}, []byte(""))
}
helper.Arguments = append(helper.Arguments, *makeHelper(string(arg), unescaped, 0, []byte{}, nil))
}
}
if elseHelper != nil {
helper.Arguments = append(helper.Arguments, *elseHelper)
}
return helper
}
func makeHelper(tag string, unescaped bool, startPos int, block []byte, children []structure.Helper) *structure.Helper {
return &structure.Helper{Name: tag, Arguments: nil, Unescaped: unescaped, Position: startPos, Block: block, Children: children, Function: getFunction(tag)}
}
func findHelper(data []byte, allHelpers []structure.Helper) ([]byte, []structure.Helper) {
startPos := bytes.Index(data, openTag)
endPos := bytes.Index(data, closeTag)
if startPos != -1 && endPos != -1 {
openTagLength := len(openTag)
closeTagLength := len(closeTag)
unescaped := false
helperName := data[startPos+openTagLength : endPos]
// Check if helper calls for unescaped text (e.g. three brackets - {{{title}}})
if bytes.HasPrefix(helperName, []byte("{")) {
unescaped = true
openTagLength++ //not necessary
closeTagLength++
helperName = helperName[len([]byte("{")):]
}
helperName = bytes.Trim(helperName, " ") //make sure there are no trailing whitespaces
// Remove helper from data
parts := [][]byte{data[:startPos], data[endPos+closeTagLength:]}
data = bytes.Join(parts, []byte(""))
// Check if comment
if bytes.HasPrefix(helperName, []byte("! ")) || bytes.HasPrefix(helperName, []byte("!--")) {
return findHelper(data, allHelpers)
}
// Check if block
if bytes.HasPrefix(helperName, []byte("#")) {
helperName = helperName[len([]byte("#")):] //remove '#' from helperName
var helper structure.Helper
data, helper = findBlock(data, helperName, unescaped, startPos) //only use the data string after the opening tag
allHelpers = append(allHelpers, helper)
return findHelper(data, allHelpers)
}
allHelpers = append(allHelpers, *createHelper(helperName, unescaped, startPos, []byte{}, nil, nil))
return findHelper(data, allHelpers)
} else {
return data, allHelpers
}
}
func findBlock(data []byte, helperName []byte, unescaped bool, startPos int) ([]byte, structure.Helper) {
arguments := bytes.Fields(helperName)
tag := arguments[0] // Get only the first tag (e.g. 'if' in 'if @blog.cover')
arguments = arguments[1:]
closeParts := []string{"{{2,3}\\s*/", string(tag), ".?}{2,3}"}
openParts := []string{"{{2,3}\\s*#", string(tag), ".+?}{2,3}"}
closeRegex := regexp.MustCompile(strings.Join(closeParts, ""))
openRegex := regexp.MustCompile(strings.Join(openParts, ""))
closePositions := closeRegex.FindAllIndex(data, -1)
openPositions := openRegex.FindAllIndex(data, -1)
// Check if there are opening tags before the closing tag
positionIndex := 0
for _, openPosition := range openPositions {
if openPosition[0] < closePositions[positionIndex][0] {
positionIndex++
}
}
block := data[startPos:closePositions[positionIndex][0]]
parts := [][]byte{data[:startPos], data[closePositions[positionIndex][1]:]}
data = bytes.Join(parts, []byte(""))
children := make([]structure.Helper, 0)
block, children = findHelper(block, children)
// Handle else (search children for else helper)
for index, child := range children {
if child.Name == "else" {
elseHelper := child
// Change blocks
elseHelper.Block = block[elseHelper.Position:]
block = block[:elseHelper.Position]
// Change children, omit else helper
elseHelper.Children = children[(index + 1):]
// Change Position in children of else helper
for indexElse, _ := range elseHelper.Children {
elseHelper.Children[indexElse].Position = elseHelper.Children[indexElse].Position - elseHelper.Position
}
children = children[:index]
helper := createHelper(helperName, unescaped, startPos, block, children, &elseHelper)
return data, *helper
}
}
helper := createHelper(helperName, unescaped, startPos, block, children, nil)
return data, *helper
}
func compileTemplate(data []byte, name string) *structure.Helper {
baseHelper := structure.Helper{Name: name, Arguments: nil, Unescaped: false, Position: 0, Block: []byte{}, Children: nil, Function: getFunction(name)}
allHelpers := make([]structure.Helper, 0)
data, allHelpers = findHelper(data, allHelpers)
baseHelper.Block = data
baseHelper.Children = allHelpers
// Handle extend helper
for index, child := range baseHelper.Children {
if child.Name == "body" {
baseHelper.BodyHelper = &baseHelper.Children[index]
}
}
return &baseHelper
}
func createTemplateFromFile(filename string) (*structure.Helper, error) {
data, err := ioutil.ReadFile(filename)
if err != nil {
return nil, err
}
fileNameWithoutExtension := helpers.GetFilenameWithoutExtension(filename)
// Check if a helper with the same name is already in the map
if compiledTemplates.m[fileNameWithoutExtension] != nil {
return nil, errors.New("Error: Conflicting .hbs name '" + fileNameWithoutExtension + "'. A theme file of the same name already exists.")
}
helper := compileTemplate(data, fileNameWithoutExtension)
return helper, nil
}
func inspectTemplateFile(filePath string, info os.FileInfo, err error) error {
if !info.IsDir() && filepath.Ext(filePath) == ".hbs" {
helper, err := createTemplateFromFile(filePath)
if err != nil {
return err
}
compiledTemplates.m[helper.Name] = helper
}
return nil
}
func Generate() error {
compiledTemplates.Lock()
defer compiledTemplates.Unlock()
activeTheme, err := database.RetrieveActiveTheme()
if err != nil {
return err
}
// Compile all template files
// First clear compiledTemplates map (theme could have been changed)
compiledTemplates.m = make(map[string]*structure.Helper)
currentThemePath := filepath.Join(filenames.ThemesFilepath, *activeTheme)
// Check if the theme folder exists
if _, err := os.Stat(currentThemePath); os.IsNotExist(err) {
log.Fatal("Error: Couldn't find theme files in " + currentThemePath + ": " + err.Error())
return err
}
err = filepath.Walk(currentThemePath, inspectTemplateFile)
if err != nil {
return err
}
// Check if index and post templates are compiled
if _, ok := compiledTemplates.m["index"]; !ok {
return errors.New("Couldn't compile template 'index'. Is index.hbs missing?")
}
if _, ok := compiledTemplates.m["post"]; !ok {
return errors.New("Couldn't compile template 'post'. Is post.hbs missing?")
}
// If the dev flag is set, watch the theme directory and the plugin directoy for changes
// TODO: It seems unclean to do the watching of the plugins in the templates package. Move this somewhere else.
if flags.IsInDevMode {
// Create watcher
err = watcher.Watch([]string{currentThemePath, filenames.PluginsFilepath}, map[string]func() error{".hbs": Generate, ".lua": plugins.Load})
if err != nil {
return err
}
}
return nil
}