* Signed-off-by: hongming <talonwan@yunify.com> support ldap identity provider Signed-off-by: hongming <talonwan@yunify.com> * add login record Signed-off-by: Jeff <zw0948@gmail.com> Co-authored-by: hongming <talonwan@yunify.com>
48 lines
1.1 KiB
Go
48 lines
1.1 KiB
Go
/*
|
|
Copyright 2019 The KubeSphere 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 net
|
|
|
|
import (
|
|
"net"
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
// 0 is considered as a non valid port
|
|
func IsValidPort(port int) bool {
|
|
return port > 0 && port < 65535
|
|
}
|
|
|
|
func GetRequestIP(req *http.Request) string {
|
|
address := strings.Trim(req.Header.Get("X-Real-Ip"), " ")
|
|
if address != "" {
|
|
return address
|
|
}
|
|
|
|
address = strings.Trim(req.Header.Get("X-Forwarded-For"), " ")
|
|
if address != "" {
|
|
return address
|
|
}
|
|
|
|
address, _, err := net.SplitHostPort(req.RemoteAddr)
|
|
if err != nil {
|
|
return req.RemoteAddr
|
|
}
|
|
|
|
return address
|
|
}
|