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
|
package main
import (
"flag"
"html/template"
"log"
"log/slog"
"net/http"
"os"
"strings"
"sync"
"time"
"xeiaso.net/v4"
"xeiaso.net/v4/config"
"xeiaso.net/v4/internal"
"xeiaso.net/v4/internal/embedded"
)
var (
addr = flag.String("addr", ":8080", "address to listen on")
)
var baseTmpl *template.Template
var templateMap = map[string]*template.Template{}
var templateLock sync.RWMutex
func templateFor(name string) *template.Template {
templateLock.RLock()
tmpl, ok := templateMap[name]
templateLock.RUnlock()
if ok {
return tmpl
}
templateLock.Lock()
defer templateLock.Unlock()
base := template.Must(baseTmpl.Clone())
tmpl = template.Must(base.ParseFS(xeiaso.Templates, "tmpl/"+name))
tmpl = tmpl.Lookup(name)
templateMap[name] = tmpl
return tmpl
}
type Site struct {
Config *config.Config
Blog []*internal.Post
Talks []*internal.Post
Gallery []*internal.Post
}
func (s *Site) Index(w http.ResponseWriter, r *http.Request) {
if r.URL.Path != "/" {
w.WriteHeader(http.StatusNotFound)
if err := templateFor("404.html").Execute(w, map[string]string{
"Page": r.URL.Path,
}); err != nil {
slog.Error("can't render template", "err", err)
}
return
}
if err := templateFor("index.html").Execute(w, nil); err != nil {
slog.Error("can't render template", "err", err)
}
}
func (s *Site) BlogIndex(w http.ResponseWriter, r *http.Request) {
if err := templateFor("blogindex.html").Execute(w, s.Blog); err != nil {
slog.Error("can't render template", "err", err)
}
}
func main() {
flag.Parse()
internal.Slog()
mux := http.NewServeMux()
slog.Debug("loading config")
config, err := config.Parse("./config/config.ts")
if err != nil {
log.Fatal(err)
}
posts := embedded.Posts
var blog []*internal.Post
var talks []*internal.Post
var gallery []*internal.Post
for _, post := range posts {
switch strings.Split(post.Link, "/")[0] {
case "blog":
blog = append(blog, post)
case "talks":
talks = append(talks, post)
case "gallery":
gallery = append(gallery, post)
}
}
mux.Handle("/static/", http.FileServer(http.FS(xeiaso.Static)))
site := &Site{
Config: config,
Blog: blog,
Talks: talks,
Gallery: gallery,
}
baseTmpl = template.Must(
template.New("xesite/v4").Funcs(template.FuncMap{
"getYear": func() string {
return time.Now().Format("2006")
},
"argv0": func() string {
return os.Args[0]
},
"config": func() any {
return config
},
"recentPosts": func() []*internal.Post {
return posts[:5]
},
}).
ParseFS(xeiaso.Templates, "tmpl/base.html"),
)
for k, v := range config.Redirects {
mux.HandleFunc(k, func(w http.ResponseWriter, r *http.Request) {
http.Redirect(w, r, v, http.StatusMovedPermanently)
})
}
mux.HandleFunc("/", site.Index)
mux.HandleFunc("/blog", site.BlogIndex)
slog.Info("listening", "addr", *addr)
log.Fatal(http.ListenAndServe(*addr, mux))
}
|