api.go 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. package recommend
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "net/url"
  7. "strconv"
  8. "time"
  9. "go-common/app/interface/main/app-card/model"
  10. "go-common/app/interface/main/app-card/model/card/ai"
  11. "go-common/library/ecode"
  12. "go-common/library/net/metadata"
  13. "github.com/pkg/errors"
  14. )
  15. const (
  16. _rcmd = "/pegasus/feed/%d"
  17. _hot = "/data/rank/reco-tmzb.json"
  18. _group = "/group_changes/pegasus.json"
  19. _top = "/feed/tag/top"
  20. )
  21. // Recommend is.
  22. func (d *Dao) Recommend(c context.Context, plat int8, buvid string, mid int64, build, loginEvent int, zoneID int64, group int, interest, network string, style int, column model.ColumnStatus, flush int, autoplay string, now time.Time) (rs []*ai.Item, userFeature json.RawMessage, respCode int, newUser bool, err error) {
  23. if mid == 0 && buvid == "" {
  24. return
  25. }
  26. ip := metadata.String(c, metadata.RemoteIP)
  27. uri := fmt.Sprintf(d.rcmd, group)
  28. params := url.Values{}
  29. params.Set("mid", strconv.FormatInt(mid, 10))
  30. params.Set("buvid", buvid)
  31. params.Set("plat", strconv.Itoa(int(plat)))
  32. params.Set("build", strconv.Itoa(build))
  33. params.Set("login_event", strconv.Itoa(loginEvent))
  34. params.Set("zone_id", strconv.FormatInt(zoneID, 10))
  35. params.Set("interest", interest)
  36. params.Set("network", network)
  37. if column > -1 {
  38. params.Set("column", strconv.Itoa(int(column)))
  39. }
  40. params.Set("style", strconv.Itoa(style))
  41. params.Set("flush", strconv.Itoa(flush))
  42. params.Set("autoplay_card", autoplay)
  43. var res struct {
  44. Code int `json:"code"`
  45. NewUser bool `json:"new_user"`
  46. UserFeature json.RawMessage `json:"user_feature"`
  47. Data []*ai.Item `json:"data"`
  48. }
  49. if err = d.client.Get(c, uri, ip, params, &res); err != nil {
  50. respCode = ecode.ServerErr.Code()
  51. return
  52. }
  53. code := ecode.Int(res.Code)
  54. if !code.Equal(ecode.OK) {
  55. respCode = res.Code
  56. err = errors.Wrapf(code, "%s", uri+"?"+params.Encode())
  57. return
  58. }
  59. rs = res.Data
  60. userFeature = res.UserFeature
  61. newUser = res.NewUser
  62. return
  63. }
  64. // Hots is.
  65. func (d *Dao) Hots(c context.Context) (aids []int64, err error) {
  66. ip := metadata.String(c, metadata.RemoteIP)
  67. var res struct {
  68. Code int `json:"code"`
  69. List []struct {
  70. Aid int64 `json:"aid"`
  71. } `json:"list"`
  72. }
  73. if err = d.clientAsyn.Get(c, d.hot, ip, nil, &res); err != nil {
  74. return
  75. }
  76. code := ecode.Int(res.Code)
  77. if !code.Equal(ecode.OK) {
  78. err = errors.Wrapf(code, "%s", d.hot)
  79. return
  80. }
  81. for _, list := range res.List {
  82. if list.Aid != 0 {
  83. aids = append(aids, list.Aid)
  84. }
  85. }
  86. return
  87. }
  88. // TagTop is.
  89. func (d *Dao) TagTop(c context.Context, mid, tid int64, rn int) (aids []int64, err error) {
  90. params := url.Values{}
  91. params.Set("src", "2")
  92. params.Set("pn", "1")
  93. params.Set("mid", strconv.FormatInt(mid, 10))
  94. params.Set("tag", strconv.FormatInt(tid, 10))
  95. params.Set("rn", strconv.Itoa(rn))
  96. var res struct {
  97. Code int `json:"code"`
  98. Data []int64 `json:"data"`
  99. }
  100. if err = d.client.Get(c, d.top, "", params, &res); err != nil {
  101. return
  102. }
  103. code := ecode.Int(res.Code)
  104. if !code.Equal(ecode.OK) {
  105. err = errors.Wrapf(code, "%s", d.top+"?"+params.Encode())
  106. return
  107. }
  108. aids = res.Data
  109. return
  110. }
  111. // Group is.
  112. func (d *Dao) Group(c context.Context) (gm map[int64]int, err error) {
  113. ip := metadata.String(c, metadata.RemoteIP)
  114. err = d.clientAsyn.Get(c, d.group, ip, nil, &gm)
  115. return
  116. }