-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswerve.go
73 lines (63 loc) · 1.95 KB
/
swerve.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
package swerve
import (
"bytes"
"crypto/rand"
"encoding/base64"
"encoding/json"
"fmt"
"net/http"
)
const StatusCookieName = "swerve.installed"
// Handler adds Swerve handling to h
func Handler(h http.Handler, options ...Option) http.Handler {
config, err := DefaultConfig.Copy()
if err != nil {
panic(err)
}
for _, option := range options {
option(config)
}
mux := http.NewServeMux()
mux.Handle("/", h)
mux.HandleFunc("/swerve.client.js", handleClient)
mux.HandleFunc("/swerve.bootstrap.js", handleBootstrap)
mux.HandleFunc("/swerve.core.js", handleCore)
mux.HandleFunc("/swerve.config.json", func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(config)
})
return mux
}
func HandlerFunc(h http.HandlerFunc, options ...Option) http.Handler {
return Handler(h, options...)
}
func handleClient(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/javascript")
w.Write(ClientJavaScript)
}
func handleBootstrap(w http.ResponseWriter, r *http.Request) {
if isInstalled(r) {
// the bootstrap file must only be served once per installation
w.WriteHeader(http.StatusNotFound)
return
}
k := make([]byte, 32) // 32-byte keys for AES-256
if _, err := rand.Read(k); err != nil {
w.WriteHeader(http.StatusInternalServerError)
return
}
ek := make([]byte, base64.RawStdEncoding.EncodedLen(len(k)))
base64.RawURLEncoding.Encode(ek, k)
jwk := fmt.Sprintf(`{"alg":"A256GCM","ext":true,"k":"%s","key_ops":["encrypt","decrypt"],"kty":"oct"}`, ek)
bootstrap := bytes.Replace(BootstrapJavaScript, []byte("$$ENCRYPTION_KEY$$"), []byte(jwk), 1)
w.Header().Set("Content-Type", "text/javascript")
w.Write(bootstrap)
}
func handleCore(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/javascript")
w.Write(CoreJavaScript)
}
func isInstalled(r *http.Request) bool {
_, err := r.Cookie(StatusCookieName)
return err != http.ErrNoCookie
}