feed.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package http
  2. import (
  3. "time"
  4. cdm "go-common/app/interface/main/app-card/model"
  5. "go-common/app/interface/main/app-card/model/card"
  6. "go-common/app/interface/main/app-card/model/card/ai"
  7. "go-common/app/interface/main/app-intl/model"
  8. "go-common/app/interface/main/app-intl/model/feed"
  9. "go-common/library/ecode"
  10. bm "go-common/library/net/http/blademaster"
  11. )
  12. const (
  13. _headerBuvid = "Buvid"
  14. _headerDisplayID = "Display-ID"
  15. _headerDeviceID = "Device-ID"
  16. )
  17. func feedIndex(c *bm.Context) {
  18. var mid int64
  19. if midInter, ok := c.Get("mid"); ok {
  20. mid = midInter.(int64)
  21. }
  22. header := c.Request.Header
  23. buvid := header.Get(_headerBuvid)
  24. disid := header.Get(_headerDisplayID)
  25. dvcid := header.Get(_headerDeviceID)
  26. param := &feed.IndexParam{}
  27. // get params
  28. if err := c.Bind(param); err != nil {
  29. c.JSON(nil, ecode.RequestErr)
  30. return
  31. }
  32. column, ok := cdm.Columnm[param.Column]
  33. if !ok {
  34. c.JSON(nil, ecode.RequestErr)
  35. return
  36. }
  37. // 兼容老的style逻辑,3为新单列
  38. style := int(cdm.Columnm[param.Column])
  39. if style == 1 {
  40. style = 3
  41. }
  42. // check params
  43. plat := model.Plat(param.MobiApp, param.Device)
  44. now := time.Now()
  45. // index
  46. data, userFeature, isRcmd, newUser, code, autoPlay, feedclean, autoPlayInfoc, err := feedSvc.Index(c, buvid, mid, plat, param, now, style)
  47. autoplayCard := struct {
  48. Column cdm.ColumnStatus `json:"column"`
  49. AutoplayCard int8 `json:"autoplay_card"`
  50. FeedCleanAbtest int8 `json:"feed_clean_abtest"`
  51. }{Column: column, AutoplayCard: autoPlay, FeedCleanAbtest: feedclean}
  52. c.JSON(struct {
  53. Item []card.Handler `json:"items"`
  54. Config interface{} `json:"config"`
  55. }{Item: data, Config: autoplayCard}, err)
  56. if err != nil {
  57. return
  58. }
  59. // infoc
  60. items := make([]*ai.Item, 0, len(data))
  61. for _, item := range data {
  62. items = append(items, item.Get().Rcmd)
  63. }
  64. feedSvc.IndexInfoc(c, mid, plat, param.Build, buvid, disid, "/x/intl/feed/index", userFeature, style, code, items, isRcmd, param.Pull, newUser, now, "", dvcid, param.Network, param.Flush, autoPlayInfoc, param.DeviceType)
  65. }