-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.go
430 lines (386 loc) · 10.6 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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
//go:build build
package main
import (
"bufio"
"embed"
"fmt"
"os"
"path/filepath"
"strings"
"text/template"
"time"
"github.com/Darkness4/blog/d2"
"github.com/Darkness4/blog/images"
"github.com/Darkness4/blog/index"
"github.com/Darkness4/blog/markdown"
"github.com/Darkness4/blog/utils/blog"
"github.com/Darkness4/blog/utils/ptr"
"github.com/Darkness4/blog/utils/unique"
chromahtml "github.com/alecthomas/chroma/v2/formatters/html"
mathjax "github.com/litao91/goldmark-mathjax"
"github.com/rs/zerolog/log"
admonitions "github.com/stefanfritsch/goldmark-admonitions"
"github.com/yuin/goldmark"
highlighting "github.com/yuin/goldmark-highlighting/v2"
meta "github.com/yuin/goldmark-meta"
"github.com/yuin/goldmark/extension"
"github.com/yuin/goldmark/parser"
"github.com/yuin/goldmark/renderer"
goldmarkhtml "github.com/yuin/goldmark/renderer/html"
"github.com/yuin/goldmark/text"
"github.com/yuin/goldmark/util"
"go.abhg.dev/goldmark/anchor"
"go.abhg.dev/goldmark/toc"
"oss.terrastruct.com/d2/d2themes/d2themescatalog"
)
var (
//go:embed pages/*
md embed.FS
//go:embed templates/markdown.tmpl templates/markdown-blog.tmpl
mdTmpl embed.FS
)
func processDirectory(fs embed.FS, dirPath string, filePaths chan<- string) error {
out, err := fs.ReadDir(dirPath)
if err != nil {
return err
}
for _, file := range out {
filePath := filepath.Join(dirPath, file.Name())
if file.IsDir() {
// If it's a directory, recursively process it
if err := processDirectory(fs, filePath, filePaths); err != nil {
return err
}
} else {
filePaths <- filePath
}
}
return nil
}
func files() <-chan string {
f := make(chan string, 1)
go func() {
defer close(f)
processDirectory(md, "pages", f)
}()
return f
}
func filterBlogPages(input <-chan string) (blogPages <-chan string, rest <-chan string) {
o := make(chan string, 100)
r := make(chan string, 100)
go func() {
defer close(o)
defer close(r)
for file := range input {
if strings.HasPrefix(filepath.Base(file), "-") {
continue
}
if strings.HasPrefix(file, "pages/blog") && filepath.Base(file) == "page.md" {
o <- file
} else {
r <- file
}
}
}()
return o, r
}
func triple(input <-chan string) <-chan struct {
prev string
curr string
next string
} {
output := make(chan struct {
prev string
curr string
next string
}, 100)
go func() {
defer close(output)
var prev, curr string
for next := range input {
if curr != "" {
output <- struct {
prev string
curr string
next string
}{prev: prev, curr: curr, next: next}
}
prev, curr = curr, next
}
if curr != "" {
output <- struct {
prev string
curr string
next string
}{prev: prev, curr: curr, next: ""}
}
}()
return output
}
func processPages() {
_ = os.RemoveAll("gen")
// Markdown engine
cssBuffer := unique.NewLineWriter()
markdown := goldmark.New(
goldmark.WithParserOptions(parser.WithAutoHeadingID()),
goldmark.WithRendererOptions(
goldmarkhtml.WithUnsafe(),
renderer.WithNodeRenderers(util.Prioritized(markdown.NewRenderer(), 1)),
),
images.NewReplacer(func(link string) string {
if filepath.IsAbs(link) || strings.HasPrefix(strings.ToLower(link), "http") {
return link
}
return filepath.Join("\\{\\{ $.Path }}", link)
}),
goldmark.WithExtensions(
mathjax.MathJax,
&d2.Extender{
RenderOptions: d2.RenderOptions{
ThemeID: &d2themescatalog.DarkMauve.ID,
Scale: ptr.Ref(0.9),
Pad: ptr.Ref(int64(25)),
Center: ptr.Ref(true),
},
},
highlighting.NewHighlighting(
highlighting.WithStyle("onedark"),
highlighting.WithCSSWriter(cssBuffer),
highlighting.WithFormatOptions(
chromahtml.WithLineNumbers(true),
chromahtml.WithClasses(true),
),
),
extension.GFM,
meta.Meta,
&anchor.Extender{
Texter: anchor.Text("🔗"),
Attributer: anchor.Attributes{
"class": "anchor",
},
},
&admonitions.Extender{},
),
)
files := files()
blogPages, files := filterBlogPages(files)
// Process blogPages
for file := range triple(blogPages) {
curr := file.curr
content, err := md.ReadFile(curr)
if err != nil {
log.Fatal().Err(err).Msg("read file failure")
}
ext := filepath.Ext(curr)
curr = filepath.Join("gen", strings.TrimSuffix(curr, ext))
if err := os.MkdirAll(filepath.Dir(curr), 0o755); err != nil {
log.Fatal().Err(err).Msg("mkdir failure")
}
func() {
w, err := os.Create(curr + ".tmpl")
if err != nil {
log.Fatal().Err(err).Msg("create file failure")
}
defer w.Close()
var sb strings.Builder
ctx := parser.NewContext()
doc := markdown.Parser().Parse(text.NewReader(content), parser.WithContext(ctx))
if err := markdown.Renderer().Render(&sb, content, doc); err != nil {
log.Fatal().Err(err).Msg("write file failure")
}
tree, err := toc.Inspect(doc, content, toc.Compact(true))
if err != nil {
log.Fatal().Err(err).Msg("toc failure")
}
var tocSB strings.Builder
list := toc.RenderList(tree)
if list != nil {
if err := markdown.Renderer().Render(&tocSB, content, list); err != nil {
log.Fatal().Err(err).Msg("toc render failure")
}
}
// Replace {{ with {{
out := strings.ReplaceAll(sb.String(), "{{", "{{")
out = strings.ReplaceAll(out, "\\{\\{", "{{")
metaData := meta.Get(ctx)
date, err := blog.ExtractDate(filepath.Base(filepath.Dir(curr)))
if err != nil {
log.Fatal().Err(err).Msg("failed to parse date failure")
}
readingTime := computeReadingTime(string(content))
// Compile time variable
var bodySB strings.Builder
tBody := template.Must(template.New("body").Parse(out))
if err := tBody.Execute(&bodySB, struct {
TOC string
Path string
}{
TOC: tocSB.String(),
Path: "{{ $.Path }}", // Pass variable to runtime
}); err != nil {
log.Fatal().Err(err).Msg("body template failure")
}
t := template.Must(template.ParseFS(mdTmpl, "templates/markdown-blog.tmpl"))
if err := t.Execute(w, struct {
Title string
Description string
Style string
Body string
PublishedDate string
TOC string
ReadingTime string
Curr string
Prev string
Next string
}{
Title: fmt.Sprintf("%v", metaData["title"]),
Description: fmt.Sprintf("%v", metaData["description"]),
Style: cssBuffer.String(),
Body: bodySB.String(),
TOC: tocSB.String(),
ReadingTime: readingTime,
PublishedDate: date.Format("Monday 02 January 2006"),
Curr: strings.TrimSuffix(strings.TrimPrefix(file.curr, "pages"), "/page.md"),
Prev: strings.TrimSuffix(strings.TrimPrefix(file.prev, "pages"), "/page.md"),
Next: strings.TrimSuffix(strings.TrimPrefix(file.next, "pages"), "/page.md"),
}); err != nil {
log.Fatal().Err(err).Msg("generate file from template failure")
}
cssBuffer.Reset()
}()
}
for file := range files {
content, err := md.ReadFile(file)
if err != nil {
log.Fatal().Err(err).Msg("read file failure")
}
ext := filepath.Ext(file)
file = filepath.Join("gen", strings.TrimSuffix(file, ext))
if err := os.MkdirAll(filepath.Dir(file), 0o755); err != nil {
log.Fatal().Err(err).Msg("mkdir failure")
}
func() {
if ext == ".md" {
w, err := os.Create(file + ".tmpl")
if err != nil {
log.Fatal().Err(err).Msg("create file failure")
}
defer w.Close()
var sb strings.Builder
ctx := parser.NewContext()
doc := markdown.Parser().Parse(text.NewReader(content), parser.WithContext(ctx))
if err := markdown.Renderer().Render(&sb, content, doc); err != nil {
log.Fatal().Err(err).Msg("write file failure")
}
tree, err := toc.Inspect(doc, content, toc.Compact(true))
if err != nil {
log.Fatal().Err(err).Msg("toc failure")
}
var tocSB strings.Builder
list := toc.RenderList(tree)
if list != nil {
if err := markdown.Renderer().Render(&tocSB, content, list); err != nil {
log.Fatal().Err(err).Msg("toc render failure")
}
}
// Replace {{ with {{
out := strings.ReplaceAll(sb.String(), "{{", "{{")
out = strings.ReplaceAll(out, "\\{\\{", "{{")
metaData := meta.Get(ctx)
// Compile time variable
var bodySB strings.Builder
tBody := template.Must(template.New("body").Parse(out))
if err := tBody.Execute(&bodySB, struct {
TOC string
Path string
}{
TOC: tocSB.String(),
Path: "{{ $.Path }}", // Pass variable to runtime
}); err != nil {
log.Fatal().Err(err).Msg("body template failure")
}
t := template.Must(template.ParseFS(mdTmpl, "templates/markdown.tmpl"))
if err := t.Execute(w, struct {
Title string
Description string
Style string
Body string
TOC string
Curr string
}{
Title: fmt.Sprintf("%v", metaData["title"]),
Description: fmt.Sprintf("%v", metaData["description"]),
Style: cssBuffer.String(),
Body: bodySB.String(),
TOC: tocSB.String(),
Curr: strings.TrimSuffix(strings.TrimPrefix(file, "gen/pages"), "/page.md"),
}); err != nil {
log.Fatal().Err(err).Msg("generate file from template failure")
}
cssBuffer.Reset()
} else {
w, err := os.Create(file + ext)
if err != nil {
log.Fatal().Err(err).Msg("create file failure")
}
defer w.Close()
if _, err := w.Write(content); err != nil {
log.Fatal().Err(err).Msg("write file failure")
}
}
}()
}
}
func countWords(line string) uint64 {
scanner := bufio.NewScanner(strings.NewReader(line))
scanner.Split(bufio.ScanWords)
count := uint64(0)
for scanner.Scan() {
count++
}
return count
}
func countWordsInText(text string) (uint64, error) {
scanner := bufio.NewScanner(strings.NewReader(text))
words := uint64(0)
for scanner.Scan() {
line := scanner.Text()
// Count words in the line
words += countWords(line)
}
if err := scanner.Err(); err != nil {
return 0, err
}
return words, nil
}
func computeReadingTime(text string) string {
words, err := countWordsInText(text)
if err != nil {
log.Fatal().Err(err).Msg("count words failure")
}
minutes := words / 75 // Reading rate for technical articles
d := time.Duration(minutes) * time.Minute
h := d / time.Hour
d -= h * time.Hour
m := d / time.Minute
hourFormat := "hour"
if h > 1 {
hourFormat = "hours"
}
minuteFormat := "min"
if m > 1 {
minuteFormat = "mins"
}
res := ""
if h > 0 {
res += fmt.Sprintf("%d %s ", h, hourFormat)
}
if m > 0 {
res += fmt.Sprintf("%d %s", m, minuteFormat)
}
return res
}
func main() {
processPages()
index.Generate()
}