reply.go 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. package member
  2. import (
  3. "context"
  4. "fmt"
  5. "go-common/app/interface/main/account/model"
  6. artMdl "go-common/app/interface/openplatform/article/model"
  7. "go-common/app/service/main/archive/api"
  8. arcMdl "go-common/app/service/main/archive/model/archive"
  9. "go-common/library/log"
  10. "go-common/library/net/metadata"
  11. )
  12. var (
  13. _typeToURL = map[int64]string{
  14. 1: "https://www.bilibili.com/video/av%d/", // 稿件
  15. 2: "https://www.bilibili.com/topic/%d.html", // 话题
  16. 3: "https://h.bilibili.com/dy%d", // 画站
  17. 5: "https://vc.bilibili.com/video/%d", // 直播小视频
  18. 6: "https://www.bilibili.com/blackroom/ban/%d", // 封禁信息
  19. 7: "https://www.bilibili.com/blackroom/notice/%d", // 公告信息
  20. 10: "https://link.bilibili.com/p/eden/news#/newsdetail?id=%d", // 直播公告
  21. 11: "https://h.bilibili.com/%d", // 直播有文画
  22. 12: "https://www.bilibili.com/read/cv%d", // 专栏
  23. 13: "https://show.bilibili.com/platform/detail.html?id=%d", // 票务
  24. 15: "https://www.bilibili.com/judgement/case/%d", // 风纪委
  25. }
  26. )
  27. // ReplyHistoryList reply history list
  28. func (s *Service) ReplyHistoryList(c context.Context, mid int64, stime, etime, order, sort string, pn, ps int64, accessKey, cookie string) (rhl *model.ReplyHistory, err error) {
  29. ip := metadata.String(c, metadata.RemoteIP)
  30. if rhl, err = s.replyDao.ReplyHistoryList(c, mid, stime, etime, order, sort, pn, ps, accessKey, cookie, ip); err != nil {
  31. log.Error("s.replyDao.ReplyHistoryList error(%v)", err)
  32. return
  33. }
  34. idsMap := make(map[int64][]int64) // type -> ids
  35. unique := make(map[int64]struct{})
  36. for _, v := range rhl.Records {
  37. if _, ok := unique[v.Oid]; !ok {
  38. idsMap[v.Type] = append(idsMap[v.Type], v.Oid)
  39. unique[v.Oid] = struct{}{}
  40. }
  41. }
  42. rhlt, _ := s.fetchData(c, mid, idsMap, accessKey, cookie, ip)
  43. for _, v := range rhl.Records {
  44. if t, ok := rhlt[v.Type]; ok {
  45. for _, b := range t {
  46. if o, ok := b[v.Oid]; ok {
  47. v.Title = o.Title
  48. v.URL = o.URL
  49. }
  50. }
  51. }
  52. }
  53. return
  54. }
  55. // fetchData
  56. func (s *Service) fetchData(c context.Context, mid int64, idsMap map[int64][]int64, accessKey, cookie, ip string) (rhlt map[int64][]map[int64]*model.RecordAppend, err error) {
  57. rhlt = make(map[int64][]map[int64]*model.RecordAppend) // type -> oid -> title/url
  58. for t, v := range idsMap {
  59. switch t {
  60. case 1:
  61. // 稿件
  62. if len(v) > 0 {
  63. var arcs map[int64]*api.Arc
  64. arcArg := &arcMdl.ArgAids2{Aids: v, RealIP: ip}
  65. if arcs, err = s.arcRPC.Archives3(c, arcArg); err != nil {
  66. log.Error("s.arcRPC.Archives3 error(%v)", err)
  67. return
  68. }
  69. for _, vv := range v {
  70. if arc, ok := arcs[vv]; ok {
  71. itu := &model.RecordAppend{
  72. Title: arc.Title,
  73. }
  74. if arc.RedirectURL != "" {
  75. itu.URL = arc.RedirectURL
  76. } else {
  77. itu.URL = fmt.Sprintf(_typeToURL[t], arc.Aid)
  78. }
  79. vitu := make(map[int64]*model.RecordAppend)
  80. vitu[vv] = itu
  81. rhlt[t] = append(rhlt[t], vitu)
  82. }
  83. }
  84. }
  85. case 4:
  86. // 活动
  87. if len(v) > 0 {
  88. var aps map[int64]*model.RecordAppend
  89. if aps, err = s.replyDao.ActivityPages(c, mid, v, accessKey, cookie, ip); err != nil {
  90. log.Error("s.replyDao.ActivityPages error(%v)", err)
  91. return
  92. }
  93. for _, vv := range v {
  94. if ap, ok := aps[vv]; ok {
  95. vitu := make(map[int64]*model.RecordAppend)
  96. vitu[vv] = ap
  97. rhlt[t] = append(rhlt[t], vitu)
  98. }
  99. }
  100. }
  101. case 12:
  102. // 专栏
  103. if len(v) > 0 {
  104. var arts map[int64]*artMdl.Meta
  105. artArg := &artMdl.ArgAids{Aids: v}
  106. if arts, err = s.artRPC.ArticleMetas(c, artArg); err != nil {
  107. log.Error("s.artRPC.ArticleMetas error(%v)", err)
  108. return
  109. }
  110. for _, vv := range v {
  111. if ap, ok := arts[vv]; ok {
  112. itu := &model.RecordAppend{
  113. Title: ap.Title,
  114. URL: fmt.Sprintf(_typeToURL[t], ap.ID),
  115. }
  116. vitu := make(map[int64]*model.RecordAppend)
  117. vitu[vv] = itu
  118. rhlt[t] = append(rhlt[t], vitu)
  119. }
  120. }
  121. }
  122. default:
  123. if len(v) > 0 {
  124. for _, vv := range v {
  125. itu := &model.RecordAppend{
  126. Title: "",
  127. URL: "",
  128. }
  129. if _, ok := _typeToURL[t]; ok {
  130. itu.URL = fmt.Sprintf(_typeToURL[t], vv)
  131. }
  132. vitu := make(map[int64]*model.RecordAppend)
  133. vitu[vv] = itu
  134. rhlt[t] = append(rhlt[t], vitu)
  135. }
  136. }
  137. }
  138. }
  139. return
  140. }