record.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package search
  2. import (
  3. "context"
  4. "time"
  5. "fmt"
  6. model "go-common/app/interface/main/reply/model/reply"
  7. es "go-common/library/database/elastic"
  8. "go-common/library/log"
  9. )
  10. var (
  11. recordStates = []int64{0, 1, 2, 5, 6, 7, 9, 11}
  12. )
  13. type recordResult struct {
  14. Page struct {
  15. Num int32 `json:"num"`
  16. Size int32 `json:"size"`
  17. Total int32 `json:"total"`
  18. } `json:"page"`
  19. Result []*model.Record `json:"result"`
  20. }
  21. // RecordPaginate return a page of records from es.
  22. func (d *Dao) RecordPaginate(c context.Context, types []int64, mid, stime, etime int64, order, sort string, pn, ps int32) (records []*model.Record, total int32, err error) {
  23. r := d.es.NewRequest("reply_record").Index(fmt.Sprintf("%s_%d", "replyrecord", mid%100)).
  24. WhereRange("ctime", time.Unix(stime, 0).Format(model.RecordTimeLayout), time.Unix(etime, 0).Format(model.RecordTimeLayout), es.RangeScopeLcRc).
  25. WhereIn("state", recordStates).
  26. WhereEq("mid", mid).
  27. Order(order, sort).Pn(int(pn)).Ps(int(ps))
  28. if len(types) > 0 {
  29. r = r.WhereIn("type", types)
  30. }
  31. var res recordResult
  32. err = r.Scan(c, &res)
  33. if err != nil {
  34. log.Error("r.Scan(%v) error(%v)", c, err)
  35. return
  36. }
  37. records = res.Result
  38. total = int32(res.Page.Total)
  39. return
  40. }