-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: huiwq1990 <[email protected]>
- Loading branch information
Showing
4 changed files
with
150 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package features | ||
|
||
import ( | ||
"k8s.io/apimachinery/pkg/util/runtime" | ||
"k8s.io/component-base/featuregate" | ||
|
||
clusterpediafeature "github.com/clusterpedia-io/clusterpedia/pkg/utils/feature" | ||
) | ||
|
||
const ( | ||
|
||
// ApiServerURLRewrite is a feature gate for rewrite apiserver request's URL | ||
// owner: @huiwq1990 | ||
// alpha: v0.7.0 | ||
ApiServerURLRewrite featuregate.Feature = "ApiServerURLRewrite" | ||
) | ||
|
||
func init() { | ||
runtime.Must(clusterpediafeature.MutableFeatureGate.Add(defaultApiServerFeatureGates)) | ||
} | ||
|
||
// defaultApiServerFeatureGates consists of all known apiserver feature keys. | ||
// To add a new feature, define a key for it above and add it here. | ||
var defaultApiServerFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{ | ||
ApiServerURLRewrite: {Default: false, PreRelease: featuregate.Alpha}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package filters | ||
|
||
import ( | ||
"net/http" | ||
"net/url" | ||
"strings" | ||
|
||
"k8s.io/klog/v2" | ||
) | ||
|
||
const OriginPathHeaderKey = "X-Rewrite-Original-Path" | ||
const OldResourceApiServerPrefix = "/apis/clusterpedia.io/v1beta1/resources" | ||
|
||
func WithRewriteFilter(handler http.Handler) http.Handler { | ||
return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) { | ||
if !doUrlRewrite(req) { | ||
klog.V(5).InfoS("request not need rewrite", "path", req.URL.EscapedPath()) | ||
} | ||
|
||
handler.ServeHTTP(w, req) | ||
}) | ||
} | ||
|
||
func doUrlRewrite(req *http.Request) bool { | ||
oldPath := req.URL.EscapedPath() | ||
if strings.HasPrefix(oldPath, OldResourceApiServerPrefix) { | ||
return false | ||
} | ||
|
||
rewritePath, err := url.JoinPath(OldResourceApiServerPrefix, req.URL.Path) | ||
if err != nil { | ||
return false | ||
} | ||
req.URL.Path = rewritePath | ||
req.Header.Set(OriginPathHeaderKey, oldPath) | ||
|
||
klog.V(5).InfoS("Rewrite url", "oldPath", oldPath, "newPath", req.URL.EscapedPath()) | ||
|
||
return true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
package filters | ||
|
||
import ( | ||
"net/http" | ||
"net/http/httptest" | ||
"testing" | ||
) | ||
|
||
type testCase struct { | ||
name string | ||
urls []kubeRequest | ||
} | ||
|
||
type kubeRequest struct { | ||
from string | ||
to string | ||
} | ||
|
||
func TestRewrite(t *testing.T) { | ||
tests := []testCase{ | ||
{ | ||
name: "do rewrite", | ||
urls: []kubeRequest{ | ||
{from: "/api/v1/namespaces/default/pods?limit=100", to: "/apis/clusterpedia.io/v1beta1/resources/api/v1/namespaces/default/pods?limit=100"}, | ||
{from: "/apis/clusterpedia.io/v1beta1/clusters", to: "/apis/clusterpedia.io/v1beta1/resources/apis/clusterpedia.io/v1beta1/clusters"}, | ||
}, | ||
}, | ||
{ | ||
name: "not need rewrite", | ||
urls: []kubeRequest{ | ||
{from: "/apis/clusterpedia.io/v1beta1/resources/api/v1/namespaces/default/pods", to: "/apis/clusterpedia.io/v1beta1/resources/api/v1/namespaces/default/pods"}, | ||
{from: "/apis/clusterpedia.io/v1beta1/resources/apis/clusterpedia.io/v1beta1/clusters", to: "/apis/clusterpedia.io/v1beta1/resources/apis/clusterpedia.io/v1beta1/clusters"}, | ||
}, | ||
}, | ||
{ | ||
name: "special cases", | ||
urls: []kubeRequest{ | ||
{from: "/api/v1/namespaces/default/pods?name=abc#xx", to: "/apis/clusterpedia.io/v1beta1/resources/api/v1/namespaces/default/pods?name=abc#xx"}, | ||
}, | ||
}, | ||
} | ||
|
||
for _, test := range tests { | ||
t.Logf("Test - name: %s", test.name) | ||
|
||
for _, tmp := range test.urls { | ||
req, err := http.NewRequest("GET", tmp.from, nil) | ||
if err != nil { | ||
t.Fatalf("create HTTP request error: %v", err) | ||
} | ||
|
||
oldPath := req.URL.EscapedPath() | ||
|
||
h := WithRewriteFilter( | ||
http.HandlerFunc(func(_ http.ResponseWriter, req *http.Request) { | ||
}), | ||
) | ||
|
||
t.Logf("From: %s", req.URL.String()) | ||
|
||
res := httptest.NewRecorder() | ||
h.ServeHTTP(res, req) | ||
|
||
t.Logf("Rewrited: %s", req.URL.String()) | ||
if req.URL.String() != tmp.to { | ||
t.Errorf("Test failed \n from : %s \n to : %s \n result: %s", | ||
tmp.from, tmp.to, req.URL.RequestURI()) | ||
} | ||
|
||
if oldHeaderPath := req.Header.Get(OriginPathHeaderKey); oldHeaderPath != "" { | ||
if oldPath != oldHeaderPath { | ||
t.Error("incorrect flag") | ||
} | ||
} | ||
} | ||
} | ||
} |