-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.go
More file actions
340 lines (285 loc) · 7.56 KB
/
Copy pathapp.go
File metadata and controls
340 lines (285 loc) · 7.56 KB
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
package gomix
import (
"fmt"
"log"
"net/http"
"net/http/httptest"
"os"
"path/filepath"
"slices"
"strings"
"time"
"github.com/gorilla/mux"
"github.com/raitucarp/gomix/components"
"github.com/raitucarp/gomix/element"
"github.com/raitucarp/gomix/theme"
)
type Application struct {
name string
port int
host string
static string
portSetByUser bool
features []string
addons []string
web *webPage
enableLogger bool
}
type LocationPath string
type AppParam func(app *Application) (scope Scope, fn func(params ...any))
func App(params ...AppParam) {
app := &Application{
host: "0.0.0.0",
port: 3000,
web: &webPage{
layout: components.Component(
element.Body(
element.Element(components.Slot()),
),
),
theme: theme.Default,
pages: []*Page{},
},
}
app.web.pages = append(app.web.pages, app.notFoundPage())
for _, param := range params {
scope, runFn := param(app)
if scope == AppScope {
runFn()
}
}
if app.static != "" && app.portSetByUser {
log.Fatal("Conflict: Cannot use both Static generation and Port (Server) simultaneously. Please configure either Static() or Port().")
}
if app.static != "" {
app.generateSSG()
} else if app.port > 0 {
app.serve()
}
}
func Name(name string) AppParam {
return func(app *Application) (Scope, func(params ...any)) {
return AppScope, func(params ...any) {
app.name = name
}
}
}
func Static(dir string) AppParam {
return func(app *Application) (Scope, func(params ...any)) {
return AppScope, func(params ...any) {
app.static = dir
}
}
}
func Addons(addons ...AppParam) AppParam {
return func(app *Application) (Scope, func(params ...any)) {
return AppScope, func(params ...any) {
for _, addon := range addons {
scope, runFn := addon(app)
if scope == AppScope {
runFn()
}
}
}
}
}
func Features(features ...AppParam) AppParam {
return func(app *Application) (Scope, func(params ...any)) {
return AppScope, func(params ...any) {
for _, feature := range features {
scope, runFn := feature(app)
if scope == AppScope {
runFn()
}
}
}
}
}
func Web(features ...AppParam) AppParam {
return func(app *Application) (Scope, func(params ...any)) {
return AppScope, func(params ...any) {
for _, fn := range features {
scope, runFn := fn(app)
if scope == WebScope {
runFn()
}
}
}
}
}
func Port(port int) AppParam {
return func(app *Application) (Scope, func(params ...any)) {
return AppScope, func(params ...any) {
app.port = port
app.portSetByUser = true
}
}
}
func Logger() AppParam {
return func(app *Application) (Scope, func(params ...any)) {
return AppScope, func(params ...any) {
app.features = append(app.features, "logger")
}
}
}
func Rest(apis ...AppParam) AppParam {
return func(app *Application) (Scope, func(params ...any)) {
return AppScope, func(params ...any) {
for _, aa := range apis {
aa(app)
}
}
}
}
func (app *Application) Apply(scope Scope, param AppParam) {
paramScope, runFn := param(app)
if scope == paramScope {
runFn()
}
}
func (app *Application) InstallAddon(addonName string) {
log.Println("Install", addonName)
app.addons = append(app.addons, addonName)
}
func (app *Application) IsAddonActivated(addonName string) bool {
return slices.Contains(app.addons, addonName)
}
func (app *Application) defaultLayout() pageComponent {
return func(page *Page) components.IsComponent { return app.web.layout }
}
func (app *Application) flattenPages() (pages []*Page) {
for _, p := range app.web.pages {
p.flattened = true
p.applyTitle(app.web.title, app.web.titleTemplate)
layouts := []pageComponent{}
layouts = append(layouts, app.defaultLayout())
if p.layout != nil {
layouts = append(layouts, p.layout)
}
layouts = append(layouts, p.component)
p.addLayouts(layouts...)
p.addStylesheets(app.web.stylesheets...)
p.addScripts(app.web.scripts...)
p.css = app.web.css + p.css
if p.theme == nil {
p.theme = app.web.theme
}
pages = append(pages, p)
if len(p.children) > 0 {
pages = append(pages, p.flattenPages()...)
}
}
return
}
func (app *Application) notFoundPage() *Page {
notFoundPage := newPage("/404")
notFoundPage.kind = pageNotFound
notFoundPage.title = "404 Page Not Found"
notFoundPage.component = notFoundPageComponent
return notFoundPage
}
func (app *Application) favicon(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "image/x-icon")
w.WriteHeader(http.StatusOK)
w.Write([]byte{})
}
func (app *Application) getMuxRouter() *mux.Router {
r := mux.NewRouter()
allPages := app.flattenPages()
for _, page := range allPages {
switch page.kind {
case pageNotFound:
r.NotFoundHandler = http.HandlerFunc(page.handler)
continue
case pageError:
r.NotFoundHandler = http.HandlerFunc(page.handler)
continue
case pageNormal:
r.HandleFunc(string(page.path), page.handler)
continue
}
}
for _, fragment := range app.web.fragments {
r.HandleFunc(string(fragment.path), fragment.handler)
}
r.HandleFunc("/favicon.ico", app.favicon)
return r
}
func (app *Application) generateSSG() {
log.Printf("Generating static site to directory: %s\n", app.static)
err := os.MkdirAll(app.static, 0755)
if err != nil {
log.Fatalf("Failed to create static directory: %v", err)
}
r := app.getMuxRouter()
allPages := app.flattenPages()
for _, page := range allPages {
if page.kind == pageNormal {
pathsToGenerate := []string{string(page.path)}
if len(page.staticGenerationPaths) > 0 {
pathsToGenerate = page.staticGenerationPaths
}
for _, pathStr := range pathsToGenerate {
req := httptest.NewRequest("GET", pathStr, nil)
w := httptest.NewRecorder()
r.ServeHTTP(w, req)
if w.Result().StatusCode == http.StatusOK {
// create directory
dirPath := filepath.Join(app.static, pathStr)
// ensure it ends with html file
if !strings.HasSuffix(dirPath, ".html") {
if err := os.MkdirAll(dirPath, 0755); err != nil {
log.Printf("Failed to create directory %s: %v\n", dirPath, err)
continue
}
dirPath = filepath.Join(dirPath, "index.html")
} else {
if err := os.MkdirAll(filepath.Dir(dirPath), 0755); err != nil {
log.Printf("Failed to create directory %s: %v\n", filepath.Dir(dirPath), err)
continue
}
}
err := os.WriteFile(dirPath, w.Body.Bytes(), 0644)
if err != nil {
log.Printf("Failed to write file %s: %v\n", dirPath, err)
} else {
log.Printf("Generated: %s\n", dirPath)
}
} else {
log.Printf("Failed to generate path: %s, Status Code: %d\n", pathStr, w.Result().StatusCode)
}
}
}
}
// generate 404
req := httptest.NewRequest("GET", "/404", nil)
w := httptest.NewRecorder()
for _, page := range allPages {
if page.kind == pageNotFound {
r.ServeHTTP(w, req)
if w.Result().StatusCode == http.StatusOK || w.Result().StatusCode == http.StatusNotFound {
dirPath := filepath.Join(app.static, "404.html")
err := os.WriteFile(dirPath, w.Body.Bytes(), 0644)
if err != nil {
log.Printf("Failed to write file %s: %v\n", dirPath, err)
} else {
log.Printf("Generated: %s\n", dirPath)
}
}
break
}
}
log.Println("Static site generation completed.")
}
func (app *Application) serve() {
r := app.getMuxRouter()
logString := fmt.Sprintf("Server %s listening on %d", app.name, app.port)
srv := &http.Server{
Handler: r,
Addr: fmt.Sprintf("%s:%d", app.host, app.port),
WriteTimeout: 15 * time.Second,
ReadTimeout: 15 * time.Second,
}
log.Println(logString)
log.Fatal(srv.ListenAndServe())
}