reply.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. package reply
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/model/music"
  5. "go-common/app/interface/main/creative/model/reply"
  6. seamdl "go-common/app/interface/main/creative/model/search"
  7. "go-common/app/interface/openplatform/article/model"
  8. account "go-common/app/service/main/account/model"
  9. "go-common/app/service/main/archive/api"
  10. "go-common/library/log"
  11. "go-common/library/net/metadata"
  12. "go-common/library/sync/errgroup"
  13. )
  14. // Replies get reply list.
  15. func (s *Service) Replies(c context.Context, p *seamdl.ReplyParam) (res *seamdl.Replies, err error) {
  16. if res, err = s.sear.ReplyES(c, p); err != nil {
  17. return
  18. }
  19. if res == nil {
  20. return
  21. }
  22. var (
  23. g, ctx = errgroup.WithContext(c)
  24. mids = res.Repliers
  25. oids = res.Oids
  26. tyOids = res.TyOids
  27. replies map[int64]*reply.Reply
  28. elecRelation map[int64]int
  29. followers map[int64]int
  30. users map[int64]*account.Info
  31. arcs map[int64]*api.Arc
  32. arts map[int64]*model.Meta
  33. auds map[int64]*music.Audio
  34. )
  35. log.Info("s.sear.Replies mid(%d)|type(%d)|mids(%+v)|res(%+v)", p.OMID, p.Type, mids, res)
  36. g.Go(func() error { //获取具体评论信息
  37. if len(res.DeriveIds) > 0 && len(res.DeriveOids) > 0 {
  38. replies, _ = s.reply.ReplyMinfo(ctx, p.Ak, p.Ck, p.OMID, int64(p.Type), res.DeriveIds, res.DeriveOids, p.IP)
  39. }
  40. return nil
  41. })
  42. g.Go(func() error { //获取被充电状态
  43. if len(mids) > 0 {
  44. elecRelation, _ = s.elec.ElecRelation(ctx, p.OMID, mids, p.IP)
  45. }
  46. return nil
  47. })
  48. g.Go(func() error { //获取被关注状态
  49. if len(mids) > 0 {
  50. followers, _ = s.acc.Followers(ctx, p.OMID, mids, p.IP)
  51. }
  52. return nil
  53. })
  54. g.Go(func() error { //获取用户信息
  55. if len(mids) > 0 {
  56. users, _ = s.acc.Infos(ctx, mids, p.IP)
  57. }
  58. return nil
  59. })
  60. g.Go(func() error { //获取各种查询对象信息
  61. switch p.Type {
  62. case seamdl.All: //查询所有
  63. if v, ok := tyOids[seamdl.Archive]; ok { //稿件
  64. g.Go(func() error {
  65. arcs, _ = s.arc.Archives(ctx, v, p.IP)
  66. return nil
  67. })
  68. }
  69. if v, ok := tyOids[seamdl.Article]; ok { //文章
  70. g.Go(func() error {
  71. arts, _ = s.art.ArticleMetas(ctx, v, p.IP)
  72. return nil
  73. })
  74. }
  75. if v, ok := tyOids[seamdl.Audio]; ok { //音频
  76. g.Go(func() error {
  77. auds, _ = s.mus.Audio(c, v, 0, p.IP)
  78. return nil
  79. })
  80. }
  81. case seamdl.Archive: //稿件
  82. arcs, _ = s.arc.Archives(ctx, oids, p.IP)
  83. case seamdl.SmallVideo: //小视频
  84. case seamdl.Article: //文章
  85. arts, _ = s.art.ArticleMetas(ctx, oids, p.IP)
  86. case seamdl.Audio: //音频
  87. auds, _ = s.mus.Audio(c, oids, 0, p.IP)
  88. }
  89. return nil
  90. })
  91. g.Wait()
  92. for _, v := range res.Result {
  93. if v == nil {
  94. continue
  95. }
  96. if p, ok := replies[v.Parent]; ok { //设置父级评论信息
  97. v.RootInfo = p
  98. v.ParentInfo = p
  99. }
  100. if elec, ok := elecRelation[v.Mid]; ok { //设置充电状态
  101. v.IsElec = elec
  102. }
  103. if fl, ok := followers[v.Mid]; ok { //设置关注状态
  104. v.Relation = fl
  105. }
  106. if u, ok := users[v.Mid]; ok { //设置图像和用户名
  107. v.Replier = u.Name
  108. v.Uface = u.Face
  109. }
  110. switch v.Type {
  111. case seamdl.Archive: //稿件
  112. if av, ok := arcs[v.Oid]; ok && av != nil {
  113. v.Title = av.Title
  114. v.Cover = av.Pic
  115. }
  116. case seamdl.SmallVideo: //小视频
  117. case seamdl.Article: //文章
  118. if art, ok := arts[v.Oid]; ok && art != nil {
  119. var cover string
  120. if len(art.ImageURLs) > 0 {
  121. cover = art.ImageURLs[0]
  122. }
  123. v.Title = art.Title
  124. v.Cover = cover
  125. }
  126. case seamdl.Audio: //音频
  127. if au, ok := auds[v.Oid]; ok && au != nil {
  128. v.Title = au.Title
  129. v.Cover = au.Cover
  130. }
  131. }
  132. }
  133. return
  134. }
  135. // AppIndexReplies get newest reply list.
  136. func (s *Service) AppIndexReplies(c context.Context, ak, ck string, mid, oid int64, isReport, isHidden, tp, resMdlPlat int8, filterStr, kw, order, ip string, pn, ps int64) (res *seamdl.Replies, err error) {
  137. p := &seamdl.ReplyParam{
  138. Ak: ak,
  139. Ck: ck,
  140. OMID: mid,
  141. OID: oid,
  142. IsReport: isReport,
  143. Type: tp,
  144. FilterCtime: filterStr,
  145. Kw: kw,
  146. Order: order,
  147. IP: metadata.String(c, metadata.RemoteIP),
  148. Ps: int(ps),
  149. Pn: int(pn),
  150. ResMdlPlat: resMdlPlat,
  151. }
  152. if res, err = s.Replies(c, p); err != nil {
  153. return
  154. }
  155. if res == nil || len(res.Result) == 0 {
  156. return
  157. }
  158. replies := make([]*seamdl.Reply, 0, len(res.Result))
  159. for _, v := range res.Result {
  160. if v.Type == seamdl.Audio {
  161. continue
  162. }
  163. replies = append(replies, v)
  164. if len(replies) == 2 {
  165. break
  166. }
  167. }
  168. res.Result = replies
  169. return
  170. }