-
-
Notifications
You must be signed in to change notification settings - Fork 366
/
http.go
486 lines (420 loc) · 11.1 KB
/
http.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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
// +build !wasm
package app
import (
"bytes"
"crypto/sha1"
"fmt"
"net/http"
"net/url"
"os"
"path/filepath"
"runtime"
"strconv"
"strings"
"sync"
"text/template"
"time"
"github.com/maxence-charriere/go-app/v6/pkg/log"
)
const (
defaultThemeColor = "#2d2c2c"
)
// Handler is an HTTP handler that serves an HTML page that loads a Go wasm app
// and its resources.
type Handler struct {
// The page authors.
Author string
// A placeholder background color for the application page to display before
// its stylesheets are loaded.
//
// DEFAULT: #2d2c2c.
BackgroundColor string
// The page description.
Description string
// The icon that is used for the PWA, favicon, loading and default not
// found component.
Icon Icon
// The page keywords.
Keywords []string
// The text displayed while loading a page.
LoadingLabel string
// The name of the web application as it is usually displayed to the user.
Name string
// Additional headers to be added in head element.
RawHeaders []string
// The paths or urls of the JavaScript files to use with the page.
//
// Paths are relative to the program location.
Scripts []string
// The name of the web application displayed to the user when there is not
// enough space to display Name.
ShortName string
// The paths or urls of the CSS files to use with the page.
//
// Paths are relative to the program location.
Styles []string
// The theme color for the application. This affects how the OS displays the
// app (e.g., PWA title var or Android's task switcher).
//
// DEFAULT: #2d2c2c.
ThemeColor string
// The page title.
Title string
// The version number. This is used in order to update the PWA application
// in the browser. It must be set when deployed on a live system in order to
// prevent recurring updates.
//
// Default: Auto-generated in order to trigger pwa update on a local
// development system.
Version string
once sync.Once
etag string
page bytes.Buffer
manifestJSON bytes.Buffer
appJS bytes.Buffer
appWorkerJS bytes.Buffer
wasmExecJS []byte
appCSS []byte
}
func (h *Handler) init() {
h.initVersion()
h.initStyles()
h.initScripts()
h.initIcon()
h.initPWA()
h.initPage()
h.initWasmJS()
h.initAppJS()
h.initWorkerJS()
h.initManifestJSON()
h.initScripts()
h.initAppCSS()
}
func (h *Handler) initVersion() {
if h.Version == "" {
t := time.Now().UTC().String()
h.Version = fmt.Sprintf(`%x`, sha1.Sum([]byte(t)))
}
h.etag = `"` + h.Version + `"`
}
func (h *Handler) initStyles() {
for i, path := range h.Styles {
h.Styles[i] = h.staticResource(path)
}
}
func (h *Handler) initScripts() {
for i, path := range h.Scripts {
h.Scripts[i] = h.staticResource(path)
}
}
func (h *Handler) initIcon() {
if h.Icon.Default == "" {
h.Icon.Default = "https://storage.googleapis.com/murlok-github/icon-192.png"
h.Icon.Large = "https://storage.googleapis.com/murlok-github/icon-512.png"
}
if h.Icon.AppleTouch == "" {
h.Icon.AppleTouch = h.Icon.Default
}
h.Icon.Default = h.staticResource(h.Icon.Default)
h.Icon.Large = h.staticResource(h.Icon.Large)
h.Icon.AppleTouch = h.staticResource(h.Icon.AppleTouch)
}
func (h *Handler) initPWA() {
if h.Name == "" && h.ShortName == "" {
h.Name = "App PWA"
}
if h.ShortName == "" {
h.ShortName = h.Name
}
if h.Name == "" {
h.Name = h.ShortName
}
if h.BackgroundColor == "" {
h.BackgroundColor = defaultThemeColor
}
if h.ThemeColor == "" {
h.ThemeColor = defaultThemeColor
}
if h.LoadingLabel == "" {
h.LoadingLabel = "Loading"
}
}
func (h *Handler) initPage() {
h.page.WriteString("<!DOCTYPE html>\n")
Html().
Body(
Head().
Body(
Meta().Charset("UTF-8"),
Meta().
HTTPEquiv("Content-Type").
Content("text/html; charset=utf-8"),
Meta().
Name("author").
Content(h.Author),
Meta().
Name("description").
Content(h.Description),
Meta().
Name("keywords").
Content(strings.Join(h.Keywords, ", ")),
Meta().
Name("viewport").
Content("width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0, viewport-fit=cover"),
Title().
Body(
Text(h.Title),
),
Link().
Rel("icon").
Type("image/png").
Href(h.Icon.Default),
Link().
Rel("apple-touch-icon").
Href(h.Icon.AppleTouch),
Link().
Rel("manifest").
Href("/manifest.json"),
Link().
Type("text/css").
Rel("stylesheet").
Href("/app.css"),
Range(h.Styles).Slice(func(i int) UI {
return Link().
Type("text/css").
Rel("stylesheet").
Href(h.Styles[i])
}),
Script().Src("/wasm_exec.js"),
Script().Src("/app.js"),
Range(h.Scripts).Slice(func(i int) UI {
return Script().
Src(h.Scripts[i])
}),
Range(h.RawHeaders).Slice(func(i int) UI {
return Raw(h.RawHeaders[i])
}),
),
Body().
Body(
Div().
Class("app-wasm-layout").
Body(
Img().
ID("app-wasm-loader-icon").
Class("app-wasm-icon app-spin").
Src(h.Icon.Default),
P().
ID("app-wasm-loader-label").
Class("app-wasm-label").
Body(Text(h.LoadingLabel)),
),
Div().ID("app-context-menu"),
),
).
html(&h.page)
}
func (h *Handler) initWasmJS() {
h.wasmExecJS = []byte(wasmExecJS)
}
func (h *Handler) initAppJS() {
if err := template.
Must(template.New("app.js").Parse(appJS)).
Execute(&h.appJS, struct {
Wasm string
}{
Wasm: "/app.wasm",
}); err != nil {
log.Error("initializing app.js failed").
T("error", err).
Panic()
}
}
func (h *Handler) initWorkerJS() {
cacheableResources := make(map[string]struct{})
cacheableResources["/wasm_exec.js"] = struct{}{}
cacheableResources["/app.js"] = struct{}{}
cacheableResources["/app.css"] = struct{}{}
cacheableResources["/manifest.json"] = struct{}{}
cacheableResources["/app.wasm"] = struct{}{}
cacheableResources[h.Icon.Default] = struct{}{}
cacheableResources[h.Icon.Large] = struct{}{}
cacheableResources[h.Icon.AppleTouch] = struct{}{}
cacheableResources["/"] = struct{}{}
for _, resource := range staticResources(".") {
cacheableResources[resource] = struct{}{}
}
if err := template.
Must(template.New("app-worker.js").Parse(appWorkerJS)).
Execute(&h.appWorkerJS, struct {
Version string
ResourcesToCache map[string]struct{}
}{
Version: h.Version,
ResourcesToCache: cacheableResources,
}); err != nil {
log.Error("initializing app-worker.js failed").
T("error", err).
Panic()
}
}
func (h *Handler) initManifestJSON() {
if err := template.
Must(template.New("manifest.json").Parse(manifestJSON)).
Execute(&h.manifestJSON, struct {
ShortName string
Name string
DefaultIcon string
LargeIcon string
BackgroundColor string
ThemeColor string
}{
ShortName: h.ShortName,
Name: h.Name,
DefaultIcon: h.Icon.Default,
LargeIcon: h.Icon.Large,
BackgroundColor: h.BackgroundColor,
ThemeColor: h.ThemeColor,
}); err != nil {
log.Error("initializing manifest.json failed").
T("error", err).
Panic()
}
}
func (h *Handler) initAppCSS() {
h.appCSS = []byte(appCSS)
}
func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
h.once.Do(h.init)
w.Header().Set("Cache-Control", "no-cache")
w.Header().Set("ETag", h.etag)
etag := r.Header.Get("If-None-Match")
if etag == h.etag {
w.WriteHeader(http.StatusNotModified)
return
}
path := r.URL.Path
switch path {
case "/wasm_exec.js":
h.serveWasmExecJS(w, r)
return
case "/app.js", "/goapp.js":
h.serveAppJS(w, r)
return
case "/app-worker.js":
h.serveAppWorkerJS(w, r)
return
case "/manifest.json":
h.serveManifestJSON(w, r)
return
case "/app.css":
h.serveAppCSS(w, r)
return
case "/app.wasm", "/goapp.wasm":
http.ServeFile(w, r, "app.wasm")
return
}
if strings.HasPrefix(path, "/web/") {
filename := strings.TrimPrefix(path, "/")
filename = normalizeFilePath(filename)
if fi, err := os.Stat(filename); err == nil && !fi.IsDir() {
http.ServeFile(w, r, filename)
return
}
}
h.servePage(w, r)
}
func (h *Handler) servePage(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Length", strconv.Itoa(h.page.Len()))
w.Header().Set("Content-Type", "text/html")
w.WriteHeader(http.StatusOK)
w.Write(h.page.Bytes())
}
func (h *Handler) serveWasmExecJS(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Length", strconv.Itoa(len(h.wasmExecJS)))
w.Header().Set("Content-Type", "application/javascript")
w.WriteHeader(http.StatusOK)
w.Write(h.wasmExecJS)
}
func (h *Handler) serveAppJS(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Length", strconv.Itoa(h.appJS.Len()))
w.Header().Set("Content-Type", "application/javascript")
w.WriteHeader(http.StatusOK)
w.Write(h.appJS.Bytes())
}
func (h *Handler) serveAppWorkerJS(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Length", strconv.Itoa(h.appWorkerJS.Len()))
w.Header().Set("Content-Type", "application/javascript")
w.WriteHeader(http.StatusOK)
w.Write(h.appWorkerJS.Bytes())
}
func (h *Handler) serveManifestJSON(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Length", strconv.Itoa(h.manifestJSON.Len()))
w.Header().Set("Content-Type", "application/manifest+json")
w.WriteHeader(http.StatusOK)
w.Write(h.manifestJSON.Bytes())
}
func (h *Handler) serveAppCSS(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Length", strconv.Itoa(len(h.appCSS)))
w.Header().Set("Content-Type", "text/css")
w.WriteHeader(http.StatusOK)
w.Write(h.appCSS)
}
func (h *Handler) staticResource(path string) string {
u, _ := url.Parse(path)
if u.Scheme != "" {
return path
}
if !strings.HasPrefix(path, "/") {
path = "/" + path
}
return path
}
// Icon describes a square image that is used in various places such as
// application icon, favicon or loading icon.
type Icon struct {
// The path or url to a square image/png file. It must have a side of 192px.
//
// Path is relative to the program location.
Default string
// The path or url to larger square image/png file. It must have a side of
// 512px.
//
// Path is relative to the program location.
Large string
// The path or url to a square image/png file that is used for IOS/IPadOS
// home screen icon. It must have a side of 192px.
//
// Path is relative to the program location.
//
// DEFAULT: Icon.Default
AppleTouch string
}
func normalizeFilePath(path string) string {
if runtime.GOOS == "windows" {
return strings.ReplaceAll(path, "/", `\`)
}
return path
}
func staticResources(basedir string) []string {
var filenames []string
webdir := filepath.Join(basedir, "web")
filepath.Walk(webdir, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if info.IsDir() {
return nil
}
path = strings.TrimPrefix(path, basedir)
if !strings.HasPrefix(path, "/") {
path = "/" + path
}
if runtime.GOOS == "windows" {
path = strings.ReplaceAll(path, `\`, "/")
}
filenames = append(filenames, path)
return nil
})
return filenames
}