relation.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. package relation
  2. import (
  3. "context"
  4. "net/url"
  5. "strconv"
  6. "go-common/app/interface/main/account/conf"
  7. "go-common/app/interface/main/account/model"
  8. "go-common/library/ecode"
  9. "go-common/library/log"
  10. bm "go-common/library/net/http/blademaster"
  11. )
  12. // Dao is
  13. type Dao struct {
  14. conf *conf.Config
  15. httpClient *bm.Client
  16. recommendURL string
  17. }
  18. const (
  19. _recommendURI = "/main/recommend"
  20. )
  21. // New is
  22. func New(conf *conf.Config) *Dao {
  23. return &Dao{
  24. conf: conf,
  25. httpClient: bm.NewClient(conf.HTTPClient.Normal),
  26. recommendURL: conf.Host.Search + _recommendURI,
  27. }
  28. }
  29. func paltform(device *bm.Device) string {
  30. if device.RawMobiApp == "" {
  31. return "web"
  32. }
  33. if device.IsAndroid() {
  34. return "android"
  35. }
  36. if device.IsIOS() {
  37. return "ios"
  38. }
  39. return "web"
  40. }
  41. func buvid(device *bm.Device) string {
  42. if device.RawMobiApp == "" {
  43. return device.Buvid3
  44. }
  45. return device.Buvid
  46. }
  47. // Recommend is
  48. func (d *Dao) Recommend(ctx context.Context, mid int64, serviceArea string, mainTids string, subTids string, device *bm.Device, pagesize int64, ip string) (*model.RecommendResponse, error) {
  49. params := url.Values{}
  50. params.Set("platform", paltform(device))
  51. params.Set("mobi_app", device.MobiApp())
  52. params.Set("device", device.Device)
  53. params.Set("build", strconv.FormatInt(device.Build, 10))
  54. params.Set("clientip", ip)
  55. params.Set("userid", strconv.FormatInt(mid, 10))
  56. params.Set("buvid", buvid(device))
  57. params.Set("pagesize", strconv.FormatInt(pagesize, 10))
  58. params.Set("rec_type", "up_rec")
  59. params.Set("service_area", serviceArea)
  60. if mainTids != "" {
  61. params.Set("main_tids", mainTids)
  62. }
  63. if subTids != "" {
  64. params.Set("sub_tids", subTids)
  65. }
  66. resp := &model.RecommendResponse{}
  67. if err := d.httpClient.Get(ctx, d.recommendURL, ip, params, resp); err != nil {
  68. return nil, err
  69. }
  70. if resp.Code != 0 {
  71. log.Error("Failed to call recommendation service with error code: %d, params: %+v, trackid(%s)", resp.Code, params, resp.TrackID)
  72. return nil, ecode.Int(int(resp.Code))
  73. }
  74. return resp, nil
  75. }
  76. // TagSuggestRecommend is
  77. func (d *Dao) TagSuggestRecommend(ctx context.Context, mid int64, contextID string, tagname string, device *bm.Device, pagesize int64, ip string) (*model.TagSuggestRecommendResponse, error) {
  78. params := url.Values{}
  79. params.Set("platform", paltform(device))
  80. params.Set("mobi_app", device.MobiApp())
  81. params.Set("device", device.Device)
  82. params.Set("build", strconv.FormatInt(device.Build, 10))
  83. params.Set("clientip", ip)
  84. params.Set("userid", strconv.FormatInt(mid, 10))
  85. params.Set("buvid", buvid(device))
  86. params.Set("pagesize", strconv.FormatInt(pagesize, 10))
  87. params.Set("rec_type", "tagup_rec")
  88. params.Set("service_area", "tag_suggest")
  89. params.Set("context_id", contextID)
  90. if tagname != "" {
  91. params.Set("tagname", tagname)
  92. }
  93. resp := &model.TagSuggestRecommendResponse{}
  94. if err := d.httpClient.Get(ctx, d.recommendURL, ip, params, resp); err != nil {
  95. return nil, err
  96. }
  97. if resp.Code != 0 {
  98. log.Error("Failed to call recommendation service with error code: %d, params: %+v, trackid(%s)", resp.Code, params, resp.TrackID)
  99. return nil, ecode.Int(int(resp.Code))
  100. }
  101. return resp, nil
  102. }