-
Notifications
You must be signed in to change notification settings - Fork 351
/
ui_handler.go
98 lines (86 loc) · 2.79 KB
/
ui_handler.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
package api
import (
"errors"
"fmt"
"io/fs"
"net/http"
"path/filepath"
"strings"
gomime "github.com/cubewise-code/go-mime"
"github.com/go-chi/chi/v5/middleware"
"github.com/treeverse/lakefs/pkg/api/params"
gwerrors "github.com/treeverse/lakefs/pkg/gateway/errors"
"github.com/treeverse/lakefs/pkg/gateway/operations"
"github.com/treeverse/lakefs/pkg/gateway/sig"
"github.com/treeverse/lakefs/webui"
)
const (
uiIndexDoc = "index.html"
uiIndexMarker = "<!--Snippets-->"
)
func NewUIHandler(gatewayDomains []string, snippets []params.CodeSnippet) http.Handler {
content, err := fs.Sub(webui.Content, "dist")
if err != nil {
// embedded UI content is missing
panic(err)
}
injectedContent, err := NewInjectIndexFS(content, uiIndexDoc, uiIndexMarker, snippets)
if err != nil {
// failed to inject snippets to index.html
panic(err)
}
fileSystem := http.FS(injectedContent)
nocacheContent := middleware.NoCache(http.StripPrefix("/", http.FileServer(fileSystem)))
return NewHandlerWithDefault(fileSystem, nocacheContent, gatewayDomains)
}
func NewS3GatewayEndpointErrorHandler(gatewayDomains []string) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if isGatewayRequest(r) {
handleGatewayRequest(w, r, gatewayDomains)
return
}
// For other requests, return generic not found error
w.WriteHeader(http.StatusNotFound)
})
}
func NewHandlerWithDefault(fileSystem http.FileSystem, handler http.Handler, gatewayDomains []string) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if isGatewayRequest(r) {
handleGatewayRequest(w, r, gatewayDomains)
return
}
// serve root content in case of file not found
// the client side react browser router handles the rendering
_, err := fileSystem.Open(r.URL.Path)
if errors.Is(err, fs.ErrNotExist) {
r.URL.Path = "/"
}
// consistent content-type
contentType := gomime.TypeByExtension(filepath.Ext(r.URL.Path))
if contentType != "" {
w.Header().Set("Content-Type", contentType)
}
// handle request, capture page not found for redirect later
handler.ServeHTTP(w, r)
})
}
func handleGatewayRequest(w http.ResponseWriter, r *http.Request, gatewayDomains []string) {
// s3 signed request reaching the ui handler, return an error response instead of the default path
err := gwerrors.Codes[gwerrors.ERRLakeFSWrongEndpoint]
err.Description = fmt.Sprintf("%s (%v)", err.Description, gatewayDomains)
o := operations.Operation{}
o.EncodeError(w, r, err)
}
func isGatewayRequest(r *http.Request) bool {
// v4 and v2 header key are equal
vals := r.Header.Values(sig.V4authHeaderName)
for _, v := range vals {
if strings.HasPrefix(v, sig.V4authHeaderPrefix) {
return true
}
if sig.V2AuthHeaderRegexp.MatchString(v) {
return true
}
}
return false
}