2013-06-18 19:02:56 +00:00
|
|
|
package httplog
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
/* kindof a common log type output */
|
|
|
|
func LogRequest(r *http.Request, statusCode int) {
|
|
|
|
var addr string
|
|
|
|
var user_agent string
|
|
|
|
|
|
|
|
user_agent = ""
|
2013-06-18 19:09:12 +00:00
|
|
|
addr = RealIP(r)
|
2013-06-18 19:02:56 +00:00
|
|
|
|
|
|
|
for k, v := range r.Header {
|
|
|
|
if k == "User-Agent" {
|
|
|
|
user_agent = strings.Join(v, " ")
|
|
|
|
}
|
|
|
|
if k == "X-Forwarded-For" {
|
|
|
|
addr = strings.Join(v, " ")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("%s - - [%s] \"%s %s\" \"%s\" %d %d\n",
|
|
|
|
addr,
|
|
|
|
time.Now(),
|
|
|
|
r.Method,
|
|
|
|
r.URL.String(),
|
|
|
|
user_agent,
|
|
|
|
statusCode,
|
|
|
|
r.ContentLength)
|
|
|
|
}
|
2013-06-18 19:09:12 +00:00
|
|
|
|
|
|
|
func RealIP(r *http.Request) (ip string) {
|
|
|
|
ip = r.RemoteAddr
|
|
|
|
|
|
|
|
port_pos := strings.LastIndex(ip, ":")
|
|
|
|
if port_pos != -1 {
|
|
|
|
ip = ip[0:port_pos]
|
|
|
|
}
|
|
|
|
|
|
|
|
for k, v := range r.Header {
|
|
|
|
if k == "X-Forwarded-For" {
|
|
|
|
ip = strings.Join(v, " ")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ip
|
|
|
|
}
|