* feat: kubesphere 4.0 Signed-off-by: ci-bot <ci-bot@kubesphere.io> * feat: kubesphere 4.0 Signed-off-by: ci-bot <ci-bot@kubesphere.io> --------- Signed-off-by: ci-bot <ci-bot@kubesphere.io> Co-authored-by: ks-ci-bot <ks-ci-bot@example.com> Co-authored-by: joyceliu <joyceliu@yunify.com>
37 lines
727 B
Go
37 lines
727 B
Go
/*
|
|
* Please refer to the LICENSE file in the root directory of the project.
|
|
* https://github.com/kubesphere/kubesphere/blob/master/LICENSE
|
|
*/
|
|
|
|
package iputil
|
|
|
|
import (
|
|
"net"
|
|
"net/http"
|
|
)
|
|
|
|
const (
|
|
XForwardedFor = "X-Forwarded-For"
|
|
XRealIP = "X-Real-IP"
|
|
XClientIP = "x-client-ip"
|
|
)
|
|
|
|
func RemoteIp(req *http.Request) string {
|
|
remoteAddr := req.RemoteAddr
|
|
if ip := req.Header.Get(XClientIP); ip != "" {
|
|
remoteAddr = ip
|
|
} else if ip := req.Header.Get(XRealIP); ip != "" {
|
|
remoteAddr = ip
|
|
} else if ip = req.Header.Get(XForwardedFor); ip != "" {
|
|
remoteAddr = ip
|
|
} else {
|
|
remoteAddr, _, _ = net.SplitHostPort(remoteAddr)
|
|
}
|
|
|
|
if remoteAddr == "::1" {
|
|
remoteAddr = "127.0.0.1"
|
|
}
|
|
|
|
return remoteAddr
|
|
}
|