log.go 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package service
  2. import (
  3. "fmt"
  4. "go-common/app/interface/main/videoup/model/archive"
  5. "go-common/library/log"
  6. "go-common/library/queue/databus/report"
  7. "net"
  8. "strconv"
  9. "time"
  10. )
  11. // SendArchiveLog send to log service
  12. func (s *Service) SendArchiveLog(aid int64, build, buvid, action, platform string, ap *archive.ArcParam, videoerr error) {
  13. var (
  14. LogType = archive.LogTypeSuccess
  15. index = []interface{}{ap.TypeID, ap.UpFrom, ap.OrderID, ap.Title, ap.BizFrom, strconv.Itoa(ap.MissionID), fmt.Sprint(videoerr)}
  16. )
  17. if videoerr != nil {
  18. LogType = archive.LogTypeFail
  19. }
  20. buildNum, _ := strconv.Atoi(build)
  21. ip := net.IP(ap.IPv6[:]).String()
  22. uInfo := &report.UserInfo{
  23. Mid: ap.Mid,
  24. Platform: platform,
  25. Build: int64(buildNum),
  26. Buvid: buvid,
  27. Business: archive.ArchiveAddLogID,
  28. Type: LogType,
  29. Oid: aid,
  30. Action: action,
  31. Ctime: time.Now(),
  32. Index: index,
  33. IP: ip,
  34. }
  35. ap.Aid = aid
  36. // es 最多存32k,我们日志就最多记100p吧
  37. if len(ap.Videos) > 100 {
  38. ap.Videos = ap.Videos[:100]
  39. }
  40. uInfo.Content = map[string]interface{}{
  41. "content": ap,
  42. "errmsg": videoerr,
  43. }
  44. report.User(uInfo)
  45. log.Info("sendLog data(%+v)", uInfo)
  46. }