ugc.go 852 B

12345678910111213141516171819202122232425262728293031
  1. package web
  2. import (
  3. "context"
  4. "time"
  5. webmdl "go-common/app/interface/main/web-goblin/model/web"
  6. "go-common/library/database/elastic"
  7. "go-common/library/log"
  8. )
  9. const _ugcIncre = "web_goblin"
  10. // UgcIncre ugc increment .
  11. func (d *Dao) UgcIncre(ctx context.Context, pn, ps int, start, end int64) (res []*webmdl.SearchAids, err error) {
  12. var (
  13. startStr, endStr string
  14. rs struct {
  15. Result []*webmdl.SearchAids `json:"result"`
  16. }
  17. )
  18. startStr = time.Unix(start, 0).Format("2006-01-02 15:04:05")
  19. endStr = time.Unix(end, 0).Format("2006-01-02 15:04:05")
  20. r := d.ela.NewRequest(_ugcIncre).WhereRange("mtime", startStr, endStr, elastic.RangeScopeLoRo).Fields("aid").Fields("action").Index(_ugcIncre).Pn(pn).Ps(ps)
  21. if err = r.Scan(ctx, &rs); err != nil {
  22. log.Error("r.Scan error(%v)", err)
  23. return
  24. }
  25. res = rs.Result
  26. return
  27. }