-
Notifications
You must be signed in to change notification settings - Fork 328
/
web_server.go
201 lines (180 loc) · 5.67 KB
/
web_server.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
// Copyright 2020 H2O.ai, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package wave
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"path"
"path/filepath"
"strings"
"github.com/h2oai/wave/pkg/keychain"
)
// WebServer represents a web server (d'oh).
type WebServer struct {
site *Site
broker *Broker
fs http.Handler
keychain *keychain.Keychain
maxRequestSize int64
baseURL string
}
const (
contentTypeJSON = "application/json"
contentTypeHTML = "text/html; charset=UTF-8"
)
func newWebServer(
site *Site,
broker *Broker,
auth *Auth,
keychain *keychain.Keychain,
maxRequestSize int64,
baseURL string,
webDir string,
header http.Header,
) (*WebServer, error) {
// read default index.html page from the web root
indexPage, err := ioutil.ReadFile(filepath.Join(webDir, "index.html"))
if err != nil {
return nil, fmt.Errorf("failed reading default index.html page: %v", err)
}
fs := handleStatic([]byte(mungeIndexPage(baseURL, string(indexPage))), http.StripPrefix(baseURL, http.FileServer(http.Dir(webDir))), header)
if auth != nil {
fs = auth.wrap(fs)
}
return &WebServer{site, broker, fs, keychain, maxRequestSize, baseURL}, nil
}
func mungeIndexPage(baseURL, html string) string {
// HACK
// set base URL as a body tag attribute, to be used by the front-end for deducing hash-routing and websocket addresses.
html = strings.Replace(html, "<body", `<body data-base-url="`+baseURL+`"`, 1)
// ./wave-static/a/b/c.d -> /base-url/wave-static/a/b/c.d
html = strings.ReplaceAll(html, `="./wave-static/`, `="`+baseURL+"wave-static/")
return html
}
func (s *WebServer) ServeHTTP(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case http.MethodPatch: // writes
if !s.keychain.Guard(w, r) {
return
}
s.patch(w, r)
case http.MethodGet: // reads
switch r.Header.Get("Content-Type") {
case contentTypeJSON: // data
if !s.keychain.Guard(w, r) {
return
}
s.get(w, r)
default: // static/public assets
h := s.fs
if strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
h = serveGzipped(s.fs)
}
h.ServeHTTP(w, r)
}
case http.MethodPost: // all other APIs
if !s.keychain.Guard(w, r) {
return
}
s.post(w, r)
default:
http.Error(w, http.StatusText(http.StatusMethodNotAllowed), http.StatusMethodNotAllowed)
}
}
func (s *WebServer) patch(w http.ResponseWriter, r *http.Request) {
data, err := readRequestWithLimit(w, r.Body, s.maxRequestSize)
if err != nil {
echo(Log{"t": "read patch request body", "error": err.Error()})
if isRequestTooLarge(err) {
http.Error(w, http.StatusText(http.StatusRequestEntityTooLarge), http.StatusRequestEntityTooLarge)
return
}
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
return
}
s.broker.patch(resolveURL(r.URL.Path, s.baseURL), data)
}
func (s *WebServer) get(w http.ResponseWriter, r *http.Request) {
url := resolveURL(r.URL.Path, s.baseURL)
page := s.site.at(url)
if page == nil {
echo(Log{"t": "page_not_found", "url": url})
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
return
}
data := page.marshal()
if data == nil {
echo(Log{"t": "cache_miss", "url": url})
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
return
}
w.Header().Set("Content-Type", contentTypeJSON)
w.Write(data)
}
func (s *WebServer) post(w http.ResponseWriter, r *http.Request) {
switch r.Header.Get("Content-Type") {
case contentTypeJSON: // data
var req AppRequest
b, err := readRequestWithLimit(w, r.Body, s.maxRequestSize)
if err != nil {
echo(Log{"t": "read post request body", "error": err.Error()})
if isRequestTooLarge(err) {
http.Error(w, http.StatusText(http.StatusRequestEntityTooLarge), http.StatusRequestEntityTooLarge)
return
}
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
return
}
if err := json.Unmarshal(b, &req); err != nil {
echo(Log{"t": "json_unmarshal", "error": err.Error()})
http.Error(w, http.StatusText(http.StatusBadRequest), http.StatusBadRequest)
return
}
if req.RegisterApp != nil {
q := req.RegisterApp
s.broker.addApp(q.Mode, q.Route, q.Address, q.KeyID, q.KeySecret)
} else if req.UnregisterApp != nil {
q := req.UnregisterApp
s.broker.dropApp(q.Route)
}
default:
http.Error(w, http.StatusText(http.StatusBadRequest), http.StatusBadRequest)
}
}
func handleStatic(indexPage []byte, fs http.Handler, extraHeader http.Header) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
// if the url has an extension, serve the file
if len(path.Ext(r.URL.Path)) > 0 {
fs.ServeHTTP(w, r)
return
}
// url has no extension; assume index.html
// bypass file server, write index.html containing embedded base URL.
header := w.Header()
header.Add("Content-Type", contentTypeHTML)
header.Add("Cache-Control", "no-cache, must-revalidate")
header.Add("Pragma", "no-cache")
copyHeaders(extraHeader, header)
w.Write(indexPage)
})
}
func copyHeaders(src, dst http.Header) {
for k, vs := range src {
for _, v := range vs {
dst.Add(k, v)
}
}
}