logger.go 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package logger
  2. import (
  3. "log"
  4. "net/http"
  5. "strings"
  6. "time"
  7. )
  8. type ResponseWriter struct {
  9. http.ResponseWriter
  10. Status int
  11. }
  12. func (r *ResponseWriter) WriteHeader(status int) {
  13. r.Status = status
  14. r.ResponseWriter.WriteHeader(status)
  15. }
  16. func ClientIP(r *http.Request) string {
  17. ips := ClientIPs(r)
  18. if len(ips) >= 1 {
  19. return ips[0]
  20. }
  21. return ""
  22. }
  23. func ClientIPs(r *http.Request) []string {
  24. ra := r.RemoteAddr
  25. if xff := strings.Trim(r.Header.Get("X-Forwarded-For"), " "); xff != "" {
  26. ra = strings.Join([]string{xff, ra}, ",")
  27. }
  28. res := []string{}
  29. ips := strings.Split(ra, ",")
  30. for _, ip := range ips {
  31. res = append(res, strings.Trim(ip, " "))
  32. }
  33. return res
  34. }
  35. func LogRequests(handler http.Handler) http.Handler {
  36. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  37. start := time.Now()
  38. nw := &ResponseWriter{
  39. ResponseWriter: w,
  40. Status: http.StatusOK,
  41. }
  42. handler.ServeHTTP(nw, r)
  43. log.Printf(
  44. "\"%s\" \"%s %s\" %d \"%.3f ms\"\n",
  45. ClientIP(r), r.Method, r.URL, nw.Status, time.Since(start).Seconds(),
  46. )
  47. })
  48. }