feed2.go 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. package show
  2. import (
  3. "context"
  4. "hash/crc32"
  5. "strconv"
  6. "time"
  7. cdm "go-common/app/interface/main/app-card/model"
  8. cardm "go-common/app/interface/main/app-card/model/card"
  9. operate "go-common/app/interface/main/app-card/model/card/operate"
  10. "go-common/app/interface/main/app-card/model/card/rank"
  11. "go-common/app/interface/main/app-show/model"
  12. "go-common/app/interface/main/app-show/model/card"
  13. "go-common/app/interface/main/app-show/model/feed"
  14. account "go-common/app/service/main/account/model"
  15. "go-common/app/service/main/archive/api"
  16. "go-common/app/service/main/archive/model/archive"
  17. relation "go-common/app/service/main/relation/model"
  18. "go-common/library/ecode"
  19. "go-common/library/log"
  20. "go-common/library/sync/errgroup"
  21. )
  22. var (
  23. _emptyList2 = []cardm.Handler{}
  24. )
  25. // FeedIndex feed index
  26. func (s *Service) FeedIndex2(c context.Context, mid, idx int64, plat int8, build, loginEvent int, lastParam, mobiApp, device, buvid string, now time.Time) (res []cardm.Handler, ver string, err error) {
  27. var (
  28. ps = 10
  29. isIpad = plat == model.PlatIPad
  30. cards, cardCache []*card.PopularCard
  31. infocs []*feed.Item
  32. style int8
  33. )
  34. if isIpad {
  35. ps = 20
  36. }
  37. var key int
  38. if mid > 0 {
  39. key = int((mid / 1000) % 10)
  40. } else {
  41. key = int((crc32.ChecksumIEEE([]byte(buvid)) / 1000) % 10)
  42. }
  43. cardCache = s.PopularCardTenList(c, key)
  44. if len(cardCache) > int(idx) {
  45. cards = cardCache[idx:]
  46. } else {
  47. err = ecode.AppNotData
  48. res = _emptyList2
  49. return
  50. }
  51. // HotDynamic====================
  52. // cards = append(cards[:0], append([]*card.PopularCard{&card.PopularCard{Type: model.GotoHotDynamic, ReasonType: 0, FromType: "recommend"}}, cards[0:]...)...)
  53. // HotDynamic====================
  54. //build
  55. if plat == model.PlatIPhone && build > 8230 || plat == model.PlatAndroid && build > 5345000 {
  56. // switch key {
  57. // // case 0, 3:
  58. // // style = cdm.HotCardStyleShowUp
  59. // case 2, 5:
  60. // style = cdm.HotCardStyleHideUp
  61. // default:
  62. // style = cdm.HotCardStyleOld
  63. // }
  64. style = cdm.HotCardStyleHideUp
  65. } else {
  66. style = cdm.HotCardStyleOld
  67. }
  68. //build
  69. res, infocs = s.dealItem2(c, plat, build, ps, cards, mid, idx, lastParam, now, style)
  70. ver = strconv.FormatInt(now.Unix(), 10)
  71. if len(res) == 0 {
  72. err = ecode.AppNotData
  73. res = _emptyList2
  74. return
  75. }
  76. //infoc
  77. infoc := &feedInfoc{
  78. mobiApp: mobiApp,
  79. device: device,
  80. build: strconv.Itoa(build),
  81. now: now.Format("2006-01-02 15:04:05"),
  82. loginEvent: strconv.Itoa(loginEvent),
  83. mid: strconv.FormatInt(mid, 10),
  84. buvid: buvid,
  85. page: strconv.Itoa((int(idx) / ps) + 1),
  86. feed: infocs,
  87. }
  88. s.infocfeed(infoc)
  89. return
  90. }
  91. // dealItem feed item
  92. func (s *Service) dealItem2(c context.Context, plat int8, build, ps int, cards []*card.PopularCard, mid, idx int64, lastParam string, now time.Time, style int8) (is []cardm.Handler, infocs []*feed.Item) {
  93. var (
  94. max = int64(100)
  95. _fTypeOperation = "operation"
  96. aids, avUpIDs, upIDs, rnUpIDs []int64
  97. am map[int64]*archive.ArchiveWithPlayer
  98. feedcards []*card.PopularCard
  99. err error
  100. rank *operate.Card
  101. accountm map[int64]*account.Card
  102. isAtten map[int64]int8
  103. statm map[int64]*relation.Stat
  104. )
  105. cardSet := map[int64]*operate.Card{}
  106. eventTopic := map[int64]*operate.Card{}
  107. LOOP:
  108. for pos, ca := range cards {
  109. var cardIdx = idx + int64(pos+1)
  110. if cardIdx > max && ca.FromType != _fTypeOperation {
  111. continue
  112. }
  113. if config, ok := ca.PopularCardPlat[plat]; ok {
  114. for _, l := range config {
  115. if model.InvalidBuild(build, l.Build, l.Condition) {
  116. continue LOOP
  117. }
  118. }
  119. } else if ca.FromType == _fTypeOperation {
  120. continue LOOP
  121. }
  122. tmp := &card.PopularCard{}
  123. *tmp = *ca
  124. if plat == model.PlatIPhone && build > 8290 || plat == model.PlatAndroid && build > 5365000 {
  125. switch ca.Type {
  126. case model.GotoUpRcmdNew:
  127. tmp.Type = model.GotoUpRcmdNewV2
  128. }
  129. }
  130. tmp.Idx = cardIdx
  131. feedcards = append(feedcards, tmp)
  132. switch ca.Type {
  133. case model.GotoAv:
  134. aids = append(aids, ca.Value)
  135. case model.GotoRank:
  136. rank = &operate.Card{}
  137. rank.FromRank(s.rankCache2)
  138. case model.GotoUpRcmdNew, model.GotoUpRcmdNewV2:
  139. cardm, as, upid := s.cardSetChange(c, ca.Value)
  140. aids = append(aids, as...)
  141. for id, card := range cardm {
  142. cardSet[id] = card
  143. }
  144. rnUpIDs = append(rnUpIDs, upid)
  145. case model.GotoEventTopic:
  146. eventTopic = s.eventTopicChange(c, ca.Value)
  147. }
  148. if len(feedcards) == ps {
  149. break
  150. }
  151. }
  152. if len(aids) != 0 {
  153. var as map[int64]*api.Arc
  154. if as, err = s.arc.ArchivesPB(c, aids); err != nil {
  155. log.Error("%+v", err)
  156. err = nil
  157. } else {
  158. am = map[int64]*archive.ArchiveWithPlayer{}
  159. for _, a := range as {
  160. avUpIDs = append(avUpIDs, a.Author.Mid)
  161. am[a.Aid] = &archive.ArchiveWithPlayer{Archive3: archive.BuildArchive3(a)}
  162. }
  163. }
  164. }
  165. switch style {
  166. case cdm.HotCardStyleShowUp, cdm.HotCardStyleHideUp:
  167. upIDs = append(upIDs, avUpIDs...)
  168. }
  169. upIDs = append(upIDs, rnUpIDs...)
  170. avUpIDs = append(avUpIDs, rnUpIDs...)
  171. g, ctx := errgroup.WithContext(c)
  172. if len(avUpIDs) > 0 {
  173. g.Go(func() (err error) {
  174. if accountm, err = s.acc.Cards3(ctx, avUpIDs); err != nil {
  175. log.Error("%+v", err)
  176. err = nil
  177. }
  178. return nil
  179. })
  180. }
  181. if len(upIDs) > 0 {
  182. g.Go(func() (err error) {
  183. if statm, err = s.reldao.Stats(ctx, upIDs); err != nil {
  184. log.Error("%+v", err)
  185. err = nil
  186. }
  187. return nil
  188. })
  189. if mid != 0 {
  190. g.Go(func() error {
  191. isAtten = s.acc.IsAttention(ctx, upIDs, mid)
  192. return nil
  193. })
  194. }
  195. }
  196. g.Wait()
  197. for _, ca := range feedcards {
  198. var (
  199. r = ca.PopularCardToAiChange()
  200. main interface{}
  201. cardType cdm.CardType
  202. )
  203. r.Style = style
  204. op := &operate.Card{}
  205. op.From(cdm.CardGt(r.Goto), r.ID, 0, plat, build)
  206. switch r.Style {
  207. case cdm.HotCardStyleShowUp, cdm.HotCardStyleHideUp:
  208. switch r.Goto {
  209. case model.GotoAv:
  210. cardType = cdm.SmallCoverV5
  211. }
  212. }
  213. switch r.Goto {
  214. case model.GotoAv:
  215. if a, ok := am[r.ID]; ok && (a.AttrVal(archive.AttrBitOverseaLock) == 0 || !model.IsOverseas(plat)) {
  216. main = map[int64]*archive.ArchiveWithPlayer{a.Aid: a}
  217. // op.Tid = a.Aid
  218. r.HideButton = true
  219. if (plat == model.PlatIPhone && build > 8290 || plat == model.PlatAndroid && build > 5365000) && cardType == cdm.SmallCoverV5 {
  220. op.Switch = cdm.SwitchCooperationShow
  221. } else {
  222. op.Switch = cdm.SwitchCooperationHide
  223. }
  224. }
  225. case model.GotoRank:
  226. ams := map[int64]*archive.ArchiveWithPlayer{}
  227. for aid, a := range s.rankArchivesCache {
  228. ams[aid] = &archive.ArchiveWithPlayer{Archive3: archive.BuildArchive3(a)}
  229. }
  230. main = map[cdm.Gt]interface{}{cdm.GotoAv: ams}
  231. op = rank
  232. case model.GotoHotTopic:
  233. main = s.hottopicsCache
  234. case model.GotoUpRcmdNew, model.GotoUpRcmdNewV2:
  235. main = am
  236. op = cardSet[r.ID]
  237. case model.GotoHotDynamic:
  238. main = s.dynamicHotCache
  239. case model.GotoEventTopic:
  240. op = eventTopic[r.ID]
  241. }
  242. h := cardm.Handle(plat, cdm.CardGt(r.Goto), cardType, cdm.ColumnSvrSingle, r, nil, isAtten, statm, accountm)
  243. if h == nil {
  244. continue
  245. }
  246. h.From(main, op)
  247. h.Get().FromType = ca.FromType
  248. h.Get().Idx = ca.Idx
  249. if h.Get().Right {
  250. h.Get().ThreePointWatchLater()
  251. is = append(is, h)
  252. }
  253. // infoc
  254. tinfo := &feed.Item{
  255. Goto: ca.Type,
  256. Param: strconv.FormatInt(ca.Value, 10),
  257. URI: h.Get().URI,
  258. FromType: ca.FromType,
  259. Idx: h.Get().Idx,
  260. CornerMark: ca.CornerMark,
  261. CardStyle: r.Style,
  262. }
  263. if r.RcmdReason != nil {
  264. tinfo.RcmdContent = r.RcmdReason.Content
  265. }
  266. if op != nil {
  267. switch r.Goto {
  268. case model.GotoEventTopic:
  269. tinfo.Item = append(tinfo.Item, &feed.Item{Param: op.URI, Goto: string(op.Goto)})
  270. default:
  271. for _, tmp := range op.Items {
  272. tinfo.Item = append(tinfo.Item, &feed.Item{Param: strconv.FormatInt(tmp.ID, 10), Goto: string(tmp.Goto)})
  273. }
  274. }
  275. }
  276. infocs = append(infocs, tinfo)
  277. if len(is) == ps {
  278. break
  279. }
  280. }
  281. rl := len(is)
  282. if rl == 0 {
  283. is = _emptyList2
  284. return
  285. }
  286. return
  287. }
  288. func (s *Service) RankCard() (ranks []*rank.Rank, aids []int64) {
  289. const _limit = 3
  290. ranks = make([]*rank.Rank, 0, _limit)
  291. aids = make([]int64, 0, _limit)
  292. for _, rank := range s.rankCache2 {
  293. ranks = append(ranks, rank)
  294. aids = append(aids, rank.Aid)
  295. if len(ranks) == _limit {
  296. break
  297. }
  298. }
  299. return
  300. }