Only lookup hostname if the results are going to need it.

This commit is contained in:
George Shammas 2014-07-10 18:34:34 +00:00
parent 8f3934c13a
commit 5e97b47197
1 changed files with 18 additions and 6 deletions

12
main.go
View File

@ -40,6 +40,15 @@ func Logger() gin.HandlerFunc {
} }
} }
func stringInSlice(a string, list []string) bool {
for _, b := range list {
if b == a {
return true
}
}
return false
}
func mainHandler(c *gin.Context) { func mainHandler(c *gin.Context) {
fields := strings.Split(c.Params.ByName("field"), ".") fields := strings.Split(c.Params.ByName("field"), ".")
ip, err := net.ResolveTCPAddr("tcp", c.Req.RemoteAddr) ip, err := net.ResolveTCPAddr("tcp", c.Req.RemoteAddr)
@ -56,12 +65,15 @@ func mainHandler(c *gin.Context) {
c.Set("referer", c.Req.Header.Get("Referer")) c.Set("referer", c.Req.Header.Get("Referer"))
c.Set("forwarded", c.Req.Header.Get("X-Forwarded-For")) c.Set("forwarded", c.Req.Header.Get("X-Forwarded-For"))
// Only lookup hostname if the results are going to need it.
if stringInSlice(fields[0], []string{"", "all", "host"}) {
hostnames, err := net.LookupAddr(ip.IP.String()) hostnames, err := net.LookupAddr(ip.IP.String())
if err != nil { if err != nil {
c.Set("host", "") c.Set("host", "")
} else { } else {
c.Set("host", hostnames[0]) c.Set("host", hostnames[0])
} }
}
wantsJSON := false wantsJSON := false
if len(fields) >= 2 && fields[1] == "json" { if len(fields) >= 2 && fields[1] == "json" {