ugc.go 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package web
  2. import (
  3. "context"
  4. webmdl "go-common/app/interface/main/web-goblin/model/web"
  5. "go-common/library/log"
  6. "go-common/library/net/metadata"
  7. "go-common/library/xstr"
  8. )
  9. const (
  10. _del = "del"
  11. )
  12. // UgcFull search all ugc .
  13. func (s *Service) UgcFull(ctx context.Context, pn, ps int64, source string) (res []*webmdl.Mi, err error) {
  14. if res, err = s.FullShort(ctx, pn, ps, source); err != nil {
  15. log.Error("UgcFull error (%v)", err)
  16. return
  17. }
  18. if len(res) > 0 {
  19. for idx := range res {
  20. res[idx].UgcFullDeal()
  21. }
  22. }
  23. return
  24. }
  25. // UgcIncre search ugc after a certain time .
  26. func (s *Service) UgcIncre(ctx context.Context, pn, ps int, start, end int64, source string) (res []*webmdl.Mi, err error) {
  27. var (
  28. aids []*webmdl.SearchAids
  29. opmap map[int64]string
  30. delaids []int64
  31. tmpAids []int64
  32. ip = metadata.String(ctx, metadata.RemoteIP)
  33. )
  34. if aids, err = s.dao.UgcIncre(ctx, pn, ps, start, end); err != nil {
  35. log.Error("s.dao.UgcIncre error (%v)", err)
  36. return
  37. }
  38. opmap = make(map[int64]string, len(aids))
  39. for _, v := range aids {
  40. opmap[v.Aid] = v.Action
  41. if v.Action == _del {
  42. delaids = append(delaids, v.Aid)
  43. } else {
  44. tmpAids = append(tmpAids, v.Aid)
  45. }
  46. }
  47. if res, err = s.archiveWithTag(ctx, tmpAids, ip, opmap, source); err != nil {
  48. log.Warn("s.archiveWithTag ip(%s) aids(%s) error(%v)", err, ip, xstr.JoinInts(tmpAids))
  49. }
  50. for _, v := range delaids {
  51. m := &webmdl.Mi{}
  52. m.Op = _del
  53. m.ID = v
  54. res = append(res, m)
  55. }
  56. if len(res) > 0 {
  57. for idx := range res {
  58. res[idx].UgcIncreDeal()
  59. }
  60. }
  61. return
  62. }