forked from karmada-io/karmada
-
Notifications
You must be signed in to change notification settings - Fork 2
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: Poor12 <shentiecheng@huawei.com>
- Loading branch information
Poor12
committed
Jul 17, 2023
1 parent
1251ec9
commit 8911cff
Showing
2 changed files
with
55 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,51 @@ | ||
package util | ||
|
||
import ( | ||
"net/http" | ||
"net/textproto" | ||
"strings" | ||
|
||
"k8s.io/client-go/transport" | ||
) | ||
|
||
type proxyHeaderRoundTripper struct { | ||
proxyHeaders http.Header | ||
roundTripper http.RoundTripper | ||
} | ||
|
||
var _ http.RoundTripper = &proxyHeaderRoundTripper{} | ||
|
||
// NewProxyHeaderRoundTripperWrapperConstructor returns a RoundTripper wrapper that's usable within restConfig.WrapTransport. | ||
func NewProxyHeaderRoundTripperWrapperConstructor(wt transport.WrapperFunc, headers map[string]string) transport.WrapperFunc { | ||
return func(rt http.RoundTripper) http.RoundTripper { | ||
if wt != nil { | ||
rt = wt(rt) | ||
} | ||
return &proxyHeaderRoundTripper{ | ||
proxyHeaders: parseProxyHeaders(headers), | ||
roundTripper: rt, | ||
} | ||
} | ||
} | ||
|
||
// RoundTrip implements the http.RoundTripper interface. | ||
func (r *proxyHeaderRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) { | ||
if tr, ok := r.roundTripper.(*http.Transport); ok { | ||
tr = tr.Clone() | ||
tr.ProxyConnectHeader = r.proxyHeaders | ||
return tr.RoundTrip(req) | ||
} | ||
return r.roundTripper.RoundTrip(req) | ||
} | ||
|
||
func parseProxyHeaders(headers map[string]string) http.Header { | ||
if len(headers) == 0 { | ||
return nil | ||
} | ||
|
||
proxyHeaders := make(http.Header) | ||
for key, values := range headers { | ||
proxyHeaders[textproto.CanonicalMIMEHeaderKey(key)] = strings.Split(values, ",") | ||
} | ||
return proxyHeaders | ||
} |