logger.go 889 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package logger
  2. import (
  3. "log"
  4. "net/http"
  5. "time"
  6. "github.com/rollbar/rollbar-go"
  7. "github.com/vladimirok5959/golang-utils/utils/http/helpers"
  8. )
  9. var RollBarEnabled = false
  10. type ResponseWriter struct {
  11. http.ResponseWriter
  12. Status int
  13. }
  14. func (r *ResponseWriter) WriteHeader(status int) {
  15. r.Status = status
  16. r.ResponseWriter.WriteHeader(status)
  17. }
  18. func LogRequests(handler http.Handler) http.Handler {
  19. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  20. start := time.Now()
  21. nw := &ResponseWriter{
  22. ResponseWriter: w,
  23. Status: http.StatusOK,
  24. }
  25. handler.ServeHTTP(nw, r)
  26. if RollBarEnabled {
  27. if !(nw.Status == http.StatusOK || nw.Status == http.StatusNotFound) {
  28. rollbar.Error(r, nw)
  29. }
  30. }
  31. log.Printf(
  32. "\"%s\" \"%s %s\" %d \"%.3f ms\"\n",
  33. helpers.ClientIP(r), r.Method, r.URL, nw.Status, time.Since(start).Seconds(),
  34. )
  35. })
  36. }