-
Notifications
You must be signed in to change notification settings - Fork 120
/
build.go
executable file
·301 lines (290 loc) · 8.06 KB
/
build.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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
package main
import (
"fmt"
"html/template"
"os"
"path/filepath"
"sort"
"strings"
"sync"
"time"
"github.com/facebookgo/symwalk"
)
// Parse config
var articleTpl, pageTpl, archiveTpl, tagTpl template.Template
var themePath, publicPath, sourcePath string
// For concurrency
var wg sync.WaitGroup
// Data struct
type ArticleInfo struct {
DetailDate int64
Date string
Title string
Link string
Top bool
}
type Archive struct {
Year string
Articles Collections
}
type Tag struct {
Name string
Count int
Articles Collections
}
// For sort
type Collections []interface{}
func (v Collections) Len() int { return len(v) }
func (v Collections) Swap(i, j int) { v[i], v[j] = v[j], v[i] }
func (v Collections) Less(i, j int) bool {
switch v[i].(type) {
case ArticleInfo:
return v[i].(ArticleInfo).DetailDate > v[j].(ArticleInfo).DetailDate
case Article:
article1 := v[i].(Article)
article2 := v[j].(Article)
if article1.Top && !article2.Top {
return true
} else if !article1.Top && article2.Top {
return false
} else {
return article1.Date > article2.Date
}
case Archive:
return v[i].(Archive).Year > v[j].(Archive).Year
case Tag:
if v[i].(Tag).Count == v[j].(Tag).Count {
return v[i].(Tag).Name > v[j].(Tag).Name
}
return v[i].(Tag).Count > v[j].(Tag).Count
}
return false
}
func Build() {
startTime := time.Now()
var articles = make(Collections, 0)
var visibleArticles = make(Collections, 0)
var pages = make(Collections, 0)
var tagMap = make(map[string]Collections)
var archiveMap = make(map[string]Collections)
// Parse config
themePath = filepath.Join(rootPath, globalConfig.Site.Theme)
publicPath = filepath.Join(rootPath, globalConfig.Build.Output)
sourcePath = filepath.Join(rootPath, "source")
// Append all partial html
var partialTpl string
files, _ := filepath.Glob(filepath.Join(themePath, "*.html"))
for _, path := range files {
fileExt := strings.ToLower(filepath.Ext(path))
baseName := strings.ToLower(filepath.Base(path))
if fileExt == ".html" && strings.HasPrefix(baseName, "_") {
html, err := os.ReadFile(path)
if err != nil {
Fatal(err.Error())
}
tplName := strings.TrimPrefix(baseName, "_")
tplName = strings.TrimSuffix(tplName, ".html")
htmlStr := "{{define \"" + tplName + "\"}}" + string(html) + "{{end}}"
partialTpl += htmlStr
}
}
// Compile template
funcCxt := FuncContext{
rootPath: rootPath,
themePath: themePath,
publicPath: publicPath,
global: globalConfig,
currentCwd: themePath,
}
articleTpl = CompileTpl(filepath.Join(themePath, "article.html"), partialTpl, "article", funcCxt)
pageTpl = CompileTpl(filepath.Join(themePath, "page.html"), partialTpl, "page", funcCxt)
archiveTpl = CompileTpl(filepath.Join(themePath, "archive.html"), partialTpl, "archive", funcCxt)
tagTpl = CompileTpl(filepath.Join(themePath, "tag.html"), partialTpl, "tag", funcCxt)
// Clean public folder
cleanPatterns := []string{"post", "tag", "images", "js", "css", "*.html", "favicon.ico", "robots.txt"}
for _, pattern := range cleanPatterns {
files, _ := filepath.Glob(filepath.Join(publicPath, pattern))
for _, path := range files {
os.RemoveAll(path)
}
}
// Find all .md to generate article
symwalk.Walk(sourcePath, func(path string, info os.FileInfo, err error) error {
fileExt := strings.ToLower(filepath.Ext(path))
if fileExt == ".md" {
// Parse markdown data
article := ParseArticle(path)
if article == nil || article.Draft {
return nil
}
Log("Building " + article.Link)
// Generate file path
directory := filepath.Dir(article.Link)
err := os.MkdirAll(filepath.Join(publicPath, directory), 0777)
if err != nil {
Fatal(err.Error())
}
// Append to collections
if article.Type == "page" {
pages = append(pages, *article)
return nil
}
articles = append(articles, *article)
if article.Hide {
return nil
}
visibleArticles = append(visibleArticles, *article)
// Get tags info
for _, tag := range article.Tags {
if _, ok := tagMap[tag]; !ok {
tagMap[tag] = make(Collections, 0)
}
tagMap[tag] = append(tagMap[tag], *article)
}
// Get archive info
dateYear := article.Time.Format("2006")
if _, ok := archiveMap[dateYear]; !ok {
archiveMap[dateYear] = make(Collections, 0)
}
articleInfo := ArticleInfo{
DetailDate: article.Date,
Date: article.Time.Format("2006-01-02"),
Title: article.Title,
Link: article.Link,
Top: article.Top,
}
archiveMap[dateYear] = append(archiveMap[dateYear], articleInfo)
}
return nil
})
if len(visibleArticles) == 0 {
Fatal("Must be have at least one article")
}
// Sort by date
sort.Sort(articles)
sort.Sort(visibleArticles)
// Generate RSS page
wg.Add(1)
go GenerateRSS(visibleArticles)
// Generate sitemap page
wg.Add(1)
go GenerateSitemap(visibleArticles)
// Generate article list JSON
wg.Add(1)
go GenerateJSON(visibleArticles)
// Render articles
wg.Add(1)
go RenderArticles(articleTpl, articles)
// Render pages
wg.Add(1)
go RenderArticles(articleTpl, pages)
// Generate article list pages
wg.Add(1)
go RenderArticleList("", visibleArticles, "")
// Generate article list pages by tag
for tagName, articles := range tagMap {
sort.Sort(articles)
wg.Add(1)
go RenderArticleList(filepath.Join("tag", tagName), articles, tagName)
}
// Generate archive page
archives := make(Collections, 0)
for year, articleInfos := range archiveMap {
// Sort by date
sort.Sort(articleInfos)
archives = append(archives, Archive{
Year: year,
Articles: articleInfos,
})
}
// Sort by year
sort.Sort(archives)
wg.Add(1)
go RenderPage(archiveTpl, map[string]interface{}{
"Total": len(visibleArticles),
"Archive": archives,
"Site": globalConfig.Site,
"I18n": globalConfig.I18n,
}, filepath.Join(publicPath, "archive.html"))
// Generate tag page
tags := make(Collections, 0)
for tagName, tagArticles := range tagMap {
articleInfos := make(Collections, 0)
for _, article := range tagArticles {
articleValue := article.(Article)
articleInfos = append(articleInfos, ArticleInfo{
DetailDate: articleValue.Date,
Date: articleValue.Time.Format("2006-01-02"),
Title: articleValue.Title,
Link: articleValue.Link,
Top: articleValue.Top,
})
}
// Sort by date
sort.Sort(articleInfos)
tags = append(tags, Tag{
Name: tagName,
Count: len(tagArticles),
Articles: articleInfos,
})
}
// Sort by count
sort.Sort(Collections(tags))
wg.Add(1)
go RenderPage(tagTpl, map[string]interface{}{
"Total": len(visibleArticles),
"Tag": tags,
"Site": globalConfig.Site,
"I18n": globalConfig.I18n,
}, filepath.Join(publicPath, "tag.html"))
// Generate other pages
files, _ = filepath.Glob(filepath.Join(sourcePath, "*.html"))
funcCxt = FuncContext{
rootPath: rootPath,
themePath: themePath,
publicPath: publicPath,
global: globalConfig,
currentCwd: sourcePath,
}
for _, path := range files {
fileExt := strings.ToLower(filepath.Ext(path))
baseName := filepath.Base(path)
if fileExt == ".html" && !strings.HasPrefix(baseName, "_") {
htmlTpl := CompileTpl(path, partialTpl, baseName, funcCxt)
relPath, _ := filepath.Rel(sourcePath, path)
wg.Add(1)
go RenderPage(htmlTpl, globalConfig, filepath.Join(publicPath, relPath))
}
}
// Copy static files
Copy()
wg.Wait()
endTime := time.Now()
usedTime := endTime.Sub(startTime)
fmt.Printf("\nFinished to build in public folder (%v)\n", usedTime)
}
// Copy static files
func Copy() {
srcList := globalConfig.Build.Copy
for _, source := range srcList {
if matches, err := filepath.Glob(filepath.Join(rootPath, source)); err == nil {
for _, srcPath := range matches {
Log("Copying " + srcPath)
file, err := os.Stat(srcPath)
if err != nil {
Fatal("Not exist: " + srcPath)
}
fileName := file.Name()
desPath := filepath.Join(publicPath, fileName)
wg.Add(1)
if file.IsDir() {
go CopyDir(srcPath, desPath)
} else {
go CopyFile(srcPath, desPath)
}
}
} else {
Fatal(err.Error())
}
}
}