logger.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. package logger
  2. import (
  3. "fmt"
  4. "log"
  5. "net/http"
  6. "os"
  7. "runtime"
  8. "strings"
  9. "time"
  10. "github.com/rollbar/rollbar-go"
  11. "github.com/vladimirok5959/golang-utils/utils/http/helpers"
  12. )
  13. var AccessLogFile = ""
  14. var ErrorLogFile = ""
  15. func appendToLogFile(fileName, msg string) error {
  16. flags := os.O_RDWR | os.O_CREATE | os.O_APPEND
  17. f, err := os.OpenFile(fileName, flags, 0666)
  18. if err != nil {
  19. return err
  20. }
  21. defer f.Close()
  22. if _, err := fmt.Fprint(f, msg); err != nil {
  23. return err
  24. }
  25. return nil
  26. }
  27. func LogError(format string, a ...any) {
  28. msg := fmt.Sprintf("[ERROR] %s\n", fmt.Sprintf(format, a...))
  29. if pc, file, line, ok := runtime.Caller(1); ok {
  30. msg = fmt.Sprintf(
  31. "[ERROR] (%s, line #%d, func: %v) %s\n",
  32. file,
  33. line,
  34. runtime.FuncForPC(pc).Name(),
  35. fmt.Sprintf(format, a...),
  36. )
  37. }
  38. log.Printf("%s", msg)
  39. if ErrorLogFile != "" {
  40. if err := appendToLogFile(ErrorLogFile, time.Now().Format("2006/01/02 15:04:05")+" "+msg); err != nil {
  41. log.Printf("%s\n", err.Error())
  42. }
  43. }
  44. }
  45. func LogInfo(format string, a ...any) {
  46. msg := fmt.Sprintf("[INFO] %s\n", fmt.Sprintf(format, a...))
  47. log.Printf("%s", msg)
  48. if AccessLogFile != "" {
  49. if err := appendToLogFile(AccessLogFile, time.Now().Format("2006/01/02 15:04:05")+" "+msg); err != nil {
  50. log.Printf("%s\n", err.Error())
  51. }
  52. }
  53. }
  54. func LogInternalError(err error) {
  55. msg := fmt.Sprintf("[ERROR] %s\n", err.Error())
  56. if pc, file, line, ok := runtime.Caller(1); ok {
  57. msg = fmt.Sprintf(
  58. "[ERROR] (%s, line #%d, func: %v) %s\n",
  59. file,
  60. line,
  61. runtime.FuncForPC(pc).Name(),
  62. err.Error(),
  63. )
  64. }
  65. log.Printf("%s", msg)
  66. if ErrorLogFile != "" {
  67. if err := appendToLogFile(ErrorLogFile, time.Now().Format("2006/01/02 15:04:05")+" "+msg); err != nil {
  68. log.Printf("%s\n", err.Error())
  69. }
  70. }
  71. if RollBarEnabled && !RollBarSkipErrors.contain(err.Error()) {
  72. rollbar.Error(err)
  73. }
  74. }
  75. func LogRequests(handler http.Handler) http.Handler {
  76. return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  77. start := time.Now()
  78. nw := &ResponseWriter{
  79. ResponseWriter: w,
  80. Content: []byte{},
  81. Size: 0,
  82. Status: http.StatusOK,
  83. }
  84. handler.ServeHTTP(nw, r)
  85. ua := strings.TrimSpace(r.Header.Get("User-Agent"))
  86. if ua == "" || len(ua) > 256 {
  87. ua = "-"
  88. }
  89. msg := fmt.Sprintf(
  90. "\"%s\" \"%s %s\" %d %d \"%.3f ms\" \"%s\"\n",
  91. strings.Join(helpers.ClientIPs(r), ", "),
  92. r.Method,
  93. r.URL,
  94. nw.Status,
  95. nw.Size,
  96. time.Since(start).Seconds(),
  97. ua,
  98. )
  99. if nw.Status < 400 {
  100. log.Printf("[ACCESS] %s", msg)
  101. if AccessLogFile != "" {
  102. if err := appendToLogFile(AccessLogFile, start.Format("2006/01/02 15:04:05")+" "+msg); err != nil {
  103. log.Printf("%s\n", err.Error())
  104. }
  105. }
  106. } else {
  107. log.Printf("[ERROR] %s", msg)
  108. if ErrorLogFile != "" {
  109. if err := appendToLogFile(ErrorLogFile, start.Format("2006/01/02 15:04:05")+" "+msg); err != nil {
  110. log.Printf("%s\n", err.Error())
  111. }
  112. }
  113. }
  114. if RollBarEnabled && !RollBarSkipStatusCodes.contain(nw.Status) {
  115. if !RollBarSkipErrors.contain(string(nw.Content)) {
  116. rollbar.Error(r, nw.Status, nw.Size, string(nw.Content))
  117. }
  118. }
  119. })
  120. }