-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrequest.go
100 lines (87 loc) · 2.74 KB
/
request.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
/*
Copyright 2023 The KusionStack Authors.
Copyright 2021 The Kruise Authors.
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 common
import (
"fmt"
"net/http"
"net/url"
"os"
"strings"
"k8s.io/apiserver/pkg/endpoints/handlers/responsewriters"
"k8s.io/apiserver/pkg/endpoints/request"
ctrlmeshhttp "github.com/KusionStack/controller-mesh/pkg/apis/ctrlmesh/http"
)
var (
trimApiServerPathPrefix = os.Getenv(ctrlmeshhttp.HeaderHttpApiServerPreUrl)
)
// WithRequestInfo attaches a RequestInfo to the context.
func WithRequestInfo(handler http.Handler, resolver request.RequestInfoResolver) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
oldUrl := req.URL
localUrl, err := TrimUrl(req.URL, trimApiServerPathPrefix)
if err != nil {
responsewriters.InternalError(w, req, fmt.Errorf("failed to trim url by: %s, %v", trimApiServerPathPrefix, err))
}
req.URL = localUrl
ctx := req.Context()
info, err := resolver.NewRequestInfo(req)
req.URL = oldUrl
if err != nil {
responsewriters.InternalError(w, req, fmt.Errorf("failed to create RequestInfo: %v", err))
return
}
req = req.WithContext(request.WithRequestInfo(ctx, info))
handler.ServeHTTP(w, req)
})
}
func TrimUrl(inUrl *url.URL, prePath string) (*url.URL, error) {
// /apis/*/v1/clusterextensions/* /proxy
// /apis/*/v1/clusterextensions/* /proxy/
// /apis/*/v1/clusterextensions/cluster1/proxy/api/v1/namespaces/*/pods/*
if prePath == "" {
return inUrl, nil
}
segments := clear(strings.Split(inUrl.Path, "/"))
preSegments := clear(strings.Split(prePath, "/"))
if len(segments) < len(preSegments) {
return inUrl, fmt.Errorf(fmt.Sprintf("%s is too long than %s", prePath, inUrl.Path))
}
resultPath := ""
done := true
for i, item := range preSegments {
if item == "*" {
continue
}
if item != segments[i] {
done = false
break
}
}
if !done {
return inUrl, fmt.Errorf(fmt.Sprintf("fail to trim url, %s is not %s prefix", prePath, inUrl.Path))
}
for i := len(preSegments); i < len(segments); i++ {
resultPath += "/" + segments[i]
}
return url.Parse(resultPath)
}
func clear(items []string) []string {
var result []string
for _, item := range items {
if item != "" {
result = append(result, item)
}
}
return result
}