Этот коммит содержится в:
David Lu
2016-05-24 08:39:11 -04:00
коммит произвёл Joram Wilander
родитель 34beaa569b
Коммит 8e5c318590
2 изменённых файлов: 0 добавлений и 96 удалений

Просмотреть файл

@@ -457,70 +457,6 @@ func GetIpAddress(r *http.Request) string {
return address
}
// func IsTestDomain(r *http.Request) bool {
// if strings.Index(r.Host, "localhost") == 0 {
// return true
// }
// if strings.Index(r.Host, "dockerhost") == 0 {
// return true
// }
// if strings.Index(r.Host, "test") == 0 {
// return true
// }
// if strings.Index(r.Host, "127.0.") == 0 {
// return true
// }
// if strings.Index(r.Host, "192.168.") == 0 {
// return true
// }
// if strings.Index(r.Host, "10.") == 0 {
// return true
// }
// if strings.Index(r.Host, "176.") == 0 {
// return true
// }
// return false
// }
// func IsBetaDomain(r *http.Request) bool {
// if strings.Index(r.Host, "beta") == 0 {
// return true
// }
// if strings.Index(r.Host, "ci") == 0 {
// return true
// }
// return false
// }
// var privateIpAddress = []*net.IPNet{
// {IP: net.IPv4(10, 0, 0, 1), Mask: net.IPv4Mask(255, 0, 0, 0)},
// {IP: net.IPv4(176, 16, 0, 1), Mask: net.IPv4Mask(255, 255, 0, 0)},
// {IP: net.IPv4(192, 168, 0, 1), Mask: net.IPv4Mask(255, 255, 255, 0)},
// {IP: net.IPv4(127, 0, 0, 1), Mask: net.IPv4Mask(255, 255, 255, 252)},
// }
// func IsPrivateIpAddress(ipAddress string) bool {
// for _, pips := range privateIpAddress {
// if pips.Contains(net.ParseIP(ipAddress)) {
// return true
// }
// }
// return false
// }
func RenderWebError(err *model.AppError, w http.ResponseWriter, r *http.Request) {
T, _ := utils.GetTranslationsAndLocale(w, r)