1
0

log_writer.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. package xray
  2. import (
  3. "regexp"
  4. "strings"
  5. "x-ui/logger"
  6. )
  7. func NewLogWriter() *LogWriter {
  8. return &LogWriter{}
  9. }
  10. type LogWriter struct {
  11. lastLine string
  12. }
  13. func (lw *LogWriter) Write(m []byte) (n int, err error) {
  14. crashRegex := regexp.MustCompile(`(?i)(panic|exception|stack trace|fatal error)`)
  15. // Convert the data to a string
  16. message := strings.TrimSpace(string(m))
  17. // Check if the message contains a crash
  18. if crashRegex.MatchString(message) {
  19. logger.Debug("Core crash detected:\n", message)
  20. lw.lastLine = message
  21. err1 := writeCrachReport(m)
  22. if err1 != nil {
  23. logger.Error("Unable to write crash report:", err1)
  24. }
  25. return len(m), nil
  26. }
  27. regex := regexp.MustCompile(`^(\d{4}/\d{2}/\d{2} \d{2}:\d{2}:\d{2}\.\d{6}) \[([^\]]+)\] (.+)$`)
  28. messages := strings.SplitSeq(message, "\n")
  29. for msg := range messages {
  30. matches := regex.FindStringSubmatch(msg)
  31. if len(matches) > 3 {
  32. level := matches[2]
  33. msgBody := matches[3]
  34. msgBodyLower := strings.ToLower(msgBody)
  35. if strings.Contains(msgBodyLower, "tls handshake error") ||
  36. strings.Contains(msgBodyLower, "connection ends") {
  37. logger.Debug("XRAY: " + msgBody)
  38. lw.lastLine = ""
  39. continue
  40. }
  41. if strings.Contains(msgBodyLower, "failed") {
  42. logger.Error("XRAY: " + msgBody)
  43. } else {
  44. switch level {
  45. case "Debug":
  46. logger.Debug("XRAY: " + msgBody)
  47. case "Info":
  48. logger.Info("XRAY: " + msgBody)
  49. case "Warning":
  50. logger.Warning("XRAY: " + msgBody)
  51. case "Error":
  52. logger.Error("XRAY: " + msgBody)
  53. default:
  54. logger.Debug("XRAY: " + msg)
  55. }
  56. }
  57. lw.lastLine = ""
  58. } else if msg != "" {
  59. msgLower := strings.ToLower(msg)
  60. if strings.Contains(msgLower, "tls handshake error") ||
  61. strings.Contains(msgLower, "connection ends") {
  62. logger.Debug("XRAY: " + msg)
  63. lw.lastLine = msg
  64. continue
  65. }
  66. if strings.Contains(msgLower, "failed") {
  67. logger.Error("XRAY: " + msg)
  68. } else {
  69. logger.Debug("XRAY: " + msg)
  70. }
  71. lw.lastLine = msg
  72. }
  73. }
  74. return len(m), nil
  75. }