reply_record.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package service
  2. import (
  3. "context"
  4. "text/template"
  5. model "go-common/app/interface/main/reply/model/reply"
  6. "go-common/library/log"
  7. "go-common/library/xstr"
  8. )
  9. var _emptyRecords = make([]*model.Record, 0)
  10. // Records return reply record from es.
  11. func (s *Service) Records(c context.Context, types []int64, mid, stime, etime int64, order, sort string, pn, ps int32) (res []*model.Record, total int32, err error) {
  12. var midAts []int64
  13. if res, total, err = s.search.RecordPaginate(c, types, mid, stime, etime, order, sort, pn, ps); err != nil {
  14. log.Error("s.search.RecordPaginate(%d,%d,%d,%d,%s,%s) error(%v)", mid, sort, pn, ps, stime, etime, err)
  15. return
  16. }
  17. if res == nil {
  18. res = _emptyRecords
  19. return
  20. }
  21. for _, r := range res {
  22. r.Message = template.HTMLEscapeString(r.Message)
  23. if len(r.Ats) == 0 {
  24. continue
  25. }
  26. var ats []int64
  27. if ats, err = xstr.SplitInts(r.Ats); err != nil {
  28. log.Error("xstr.SplitInts(%s) error(%v)", r.Ats, err)
  29. err = nil
  30. }
  31. midAts = append(midAts, ats...)
  32. }
  33. if len(midAts) == 0 {
  34. return
  35. }
  36. accMap, _ := s.getAccInfo(c, midAts)
  37. for _, r := range res {
  38. r.FillAts(accMap)
  39. }
  40. return
  41. }