feed.go 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. package show
  2. import (
  3. "context"
  4. "hash/crc32"
  5. "strconv"
  6. "time"
  7. "go-common/app/interface/main/app-show/model"
  8. "go-common/app/interface/main/app-show/model/card"
  9. "go-common/app/interface/main/app-show/model/feed"
  10. "go-common/app/service/main/archive/api"
  11. "go-common/app/service/main/archive/model/archive"
  12. )
  13. var (
  14. _emptyList = []*feed.Item{}
  15. )
  16. // FeedIndex feed index
  17. func (s *Service) FeedIndex(c context.Context, mid, idx int64, plat int8, build, loginEvent int, lastParam, mobiApp, device, buvid string, now time.Time) (res []*feed.Item) {
  18. var (
  19. ps = 10
  20. isIpad = plat == model.PlatIPad
  21. cards, cardCache []*card.PopularCard
  22. )
  23. if isIpad {
  24. ps = 20
  25. }
  26. var key int
  27. if mid > 0 {
  28. key = int((mid / 1000) % 10)
  29. } else {
  30. key = int((crc32.ChecksumIEEE([]byte(buvid)) / 1000) % 10)
  31. }
  32. cardCache = s.PopularCardTenList(c, key)
  33. if len(cardCache) > int(idx) {
  34. cards = cardCache[idx:]
  35. } else {
  36. res = _emptyList
  37. return
  38. }
  39. res = s.dealItem(c, plat, build, ps, cards, idx, lastParam, now)
  40. if len(res) == 0 {
  41. res = _emptyList
  42. return
  43. }
  44. //infoc
  45. infoc := &feedInfoc{
  46. mobiApp: mobiApp,
  47. device: device,
  48. build: strconv.Itoa(build),
  49. now: now.Format("2006-01-02 15:04:05"),
  50. loginEvent: strconv.Itoa(loginEvent),
  51. mid: strconv.FormatInt(mid, 10),
  52. buvid: buvid,
  53. page: strconv.Itoa((int(idx) / ps) + 1),
  54. feed: res,
  55. }
  56. s.infocfeed(infoc)
  57. return
  58. }
  59. // dealItem feed item
  60. func (s *Service) dealItem(c context.Context, plat int8, build, ps int, cards []*card.PopularCard, idx int64, lastParam string, now time.Time) (is []*feed.Item) {
  61. const _rankCount = 3
  62. var (
  63. uri map[int64]string
  64. // key
  65. max = int64(100)
  66. _fTypeOperation = "operation"
  67. aids []int64
  68. am map[int64]*api.Arc
  69. feedcards []*card.PopularCard
  70. err error
  71. )
  72. LOOP:
  73. for pos, ca := range cards {
  74. var cardIdx = idx + int64(pos+1)
  75. if cardIdx > max && ca.FromType != _fTypeOperation {
  76. continue
  77. }
  78. if config, ok := ca.PopularCardPlat[plat]; ok {
  79. for _, l := range config {
  80. if model.InvalidBuild(build, l.Build, l.Condition) {
  81. continue LOOP
  82. }
  83. }
  84. } else if ca.FromType == _fTypeOperation {
  85. continue LOOP
  86. }
  87. tmp := &card.PopularCard{}
  88. *tmp = *ca
  89. tmp.Idx = cardIdx
  90. feedcards = append(feedcards, tmp)
  91. switch ca.Type {
  92. case model.GotoAv:
  93. aids = append(aids, ca.Value)
  94. }
  95. if len(feedcards) == ps {
  96. break
  97. }
  98. }
  99. if len(aids) != 0 {
  100. if am, err = s.arc.ArchivesPB(c, aids); err != nil {
  101. s.pMiss.Incr("popularcard_Archives")
  102. err = nil
  103. } else {
  104. s.pHit.Incr("popularcard_Archives")
  105. }
  106. }
  107. for _, ca := range feedcards {
  108. i := &feed.Item{}
  109. i.FromType = ca.FromType
  110. i.Idx = ca.Idx
  111. i.Pos = ca.Pos
  112. switch ca.Type {
  113. case model.GotoAv:
  114. a := am[ca.Value]
  115. isOsea := model.IsOverseas(plat)
  116. if a != nil && a.IsNormal() && (!isOsea || (isOsea && a.AttrVal(archive.AttrBitOverseaLock) == 0)) {
  117. i.FromPlayerAv(a, uri[a.Aid])
  118. i.FromRcmdReason(ca)
  119. // if tag, ok := s.hotArcTag[a.Aid]; ok {
  120. // i.Tag = &feed.Tag{TagID: tag.ID, TagName: tag.Name}
  121. // }
  122. i.Goto = ca.Type
  123. is = append(is, i)
  124. }
  125. case model.GotoRank:
  126. if rankAids := s.rankAidsCache; len(rankAids) >= _rankCount {
  127. i.FromRank(rankAids, s.rankScoreCache, s.rankArchivesCache)
  128. // i.Param = strconv.FormatInt(ca.ID, 10)
  129. if i.Goto != "" {
  130. is = append(is, i)
  131. }
  132. }
  133. case model.GotoHotTopic:
  134. if hotTopics := s.hottopicsCache; len(hotTopics) > 0 {
  135. i.FromHotTopic(hotTopics)
  136. is = append(is, i)
  137. }
  138. }
  139. }
  140. if rl := len(is); rl == 0 {
  141. is = _emptyList
  142. return
  143. }
  144. return
  145. }