summaryrefslogtreecommitdiffstats
path: root/api/context.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/context.go')
-rw-r--r--api/context.go64
1 files changed, 0 insertions, 64 deletions
diff --git a/api/context.go b/api/context.go
index f87a306d9..5aa35ad89 100644
--- a/api/context.go
+++ b/api/context.go
@@ -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)