wild.go 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. package search
  2. import (
  3. "context"
  4. "go-common/library/sync/errgroup"
  5. "go-common/library/xstr"
  6. "net/http"
  7. "net/url"
  8. "strconv"
  9. mdlSearch "go-common/app/interface/main/tv/model/search"
  10. "go-common/library/ecode"
  11. "go-common/library/log"
  12. "go-common/library/net/metadata"
  13. )
  14. // UserSearch search user .
  15. func (d *Dao) UserSearch(ctx context.Context, arg *mdlSearch.UserSearch) (user []*mdlSearch.User, err error) {
  16. var (
  17. params = url.Values{}
  18. req *http.Request
  19. ip = metadata.String(ctx, metadata.RemoteIP)
  20. )
  21. params.Set("platform", arg.Platform)
  22. params.Set("mobi_app", arg.MobiAPP)
  23. params.Set("build", arg.Build)
  24. params.Set("keyword", arg.Keyword)
  25. params.Set("page", strconv.Itoa(arg.Page))
  26. params.Set("pagesize", strconv.Itoa(arg.Pagesize))
  27. params.Set("userid", strconv.FormatInt(arg.MID, 10))
  28. params.Set("order", arg.Order)
  29. params.Set("main_ver", "v3") // 支持赛事搜索
  30. params.Set("search_type", "bili_user")
  31. params.Set("user_type", strconv.Itoa(arg.UserType)) // 用户类型
  32. params.Set("highlight", strconv.Itoa(arg.Highlight))
  33. params.Set("order_sort", strconv.Itoa(arg.OrderSort))
  34. params.Set("from_source", arg.FromSource)
  35. params.Set("bili_user_vl", strconv.Itoa(d.cfgWild.BiliUserVl))
  36. // new request
  37. if req, err = d.client.NewRequest("GET", d.userSearch, ip, params); err != nil {
  38. log.Error("[wild.UserSearch] d.client.NewRequest url(%s) error(%v)", d.userSearch, err)
  39. return
  40. }
  41. req.Header.Set("Buvid", arg.Buvid)
  42. var res struct {
  43. Code int `json:"code"`
  44. SeID string `json:"seid"`
  45. Pages int `json:"numPages"`
  46. List []*mdlSearch.User `json:"result"`
  47. }
  48. if err = d.client.Do(ctx, req, &res); err != nil {
  49. log.Error("[wild.UserSearch] d.client.Do url(%s) error(%v)", d.userSearch, err)
  50. return
  51. }
  52. if res.Code != ecode.OK.Code() {
  53. err = ecode.Int(res.Code)
  54. log.Error("[wild.UserSearch] url(%s) error(%v)", d.userSearch, err)
  55. return
  56. }
  57. user = res.List
  58. return
  59. }
  60. // SearchAllWild wild search all .
  61. func (d *Dao) SearchAllWild(ctx context.Context, arg *mdlSearch.UserSearch) (user *mdlSearch.Search, err error) {
  62. var (
  63. req *http.Request
  64. ip = metadata.String(ctx, metadata.RemoteIP)
  65. )
  66. params := url.Values{}
  67. user = &mdlSearch.Search{}
  68. params.Set("build", arg.Build)
  69. params.Set("keyword", arg.Keyword)
  70. params.Set("main_ver", "v3")
  71. params.Set("mobi_app", arg.MobiAPP)
  72. params.Set("device", arg.Device)
  73. params.Set("userid", strconv.FormatInt(arg.MID, 10))
  74. params.Set("tids", strconv.Itoa(arg.RID))
  75. params.Set("highlight", strconv.Itoa(arg.Highlight))
  76. params.Set("page", strconv.Itoa(arg.Page))
  77. params.Set("pagesize", strconv.Itoa(arg.Pagesize))
  78. params.Set("bili_user_num", strconv.Itoa(d.cfgWild.BiliUserNum))
  79. params.Set("bili_user_vl", strconv.Itoa(d.cfgWild.BiliUserVl))
  80. params.Set("user_num", strconv.Itoa(d.cfgWild.UserNum))
  81. params.Set("user_video_limit", strconv.Itoa(d.cfgWild.UserVideoLimit))
  82. params.Set("platform", arg.Platform)
  83. // params.Set("duration", strconv.Itoa(arg.Duration)) // 视频时长筛选,默认是0
  84. params.Set("order", arg.Order)
  85. params.Set("search_type", "all")
  86. params.Set("from_source", arg.FromSource)
  87. params.Set("media_bangumi_num", strconv.Itoa(arg.SeasonNum))
  88. params.Set("movie_num", strconv.Itoa(arg.MovieNum))
  89. params.Set("is_new_pgc", "1") // 新番剧
  90. params.Set("media_ft_num", strconv.Itoa(arg.MovieNum))
  91. // params.Set("flow_need", "1") // 混排
  92. // params.Set("query_rec_need", "1") // 搜索结果推荐
  93. // new request
  94. if req, err = d.client.NewRequest("GET", d.userSearch, ip, params); err != nil {
  95. log.Error("d.client.NewRequest URI(%s) error(%v)", d.userSearch, err)
  96. return
  97. }
  98. req.Header.Set("Buvid", arg.Buvid)
  99. if err = d.client.Do(ctx, req, user); err != nil {
  100. log.Error("[wild.SearchAllWild] d.client.Do() url(%s) error(%v)", d.userSearch, err)
  101. }
  102. return
  103. }
  104. // card bangumi card .
  105. func (d *Dao) cardInfo(c context.Context, mid int64, sids []int64) (s map[string]*mdlSearch.Card, err error) {
  106. ip := metadata.String(c, metadata.RemoteIP)
  107. params := url.Values{}
  108. params.Set("mid", strconv.FormatInt(mid, 10))
  109. params.Set("season_ids", xstr.JoinInts(sids))
  110. var res struct {
  111. Code int `json:"code"`
  112. Result map[string]*mdlSearch.Card `json:"result"`
  113. }
  114. if err = d.client.Get(c, d.card, ip, params, &res); err != nil {
  115. log.Error("d.client.NewRequest url(%s) error(%v)", d.resultURL, err)
  116. return
  117. }
  118. if res.Code != ecode.OK.Code() {
  119. err = ecode.Int(res.Code)
  120. log.Error("[wild] cardInfo error(%v)", err)
  121. return
  122. }
  123. s = res.Result
  124. return
  125. }
  126. // PgcSearch .
  127. func (d *Dao) PgcSearch(c context.Context, arg *mdlSearch.UserSearch) (st *mdlSearch.TypeSearch, err error) {
  128. var (
  129. req *http.Request
  130. ip = metadata.String(c, metadata.RemoteIP)
  131. seasonIDs []int64
  132. bangumis map[string]*mdlSearch.Card
  133. items1, items2 []*mdlSearch.Item
  134. )
  135. params := url.Values{}
  136. params.Set("build", arg.Build)
  137. params.Set("keyword", arg.Keyword)
  138. params.Set("main_ver", "v3")
  139. params.Set("mobi_app", arg.MobiAPP)
  140. params.Set("device", arg.Device)
  141. params.Set("userid", strconv.FormatInt(arg.MID, 10))
  142. params.Set("highlight", strconv.Itoa(arg.Highlight))
  143. params.Set("page", strconv.Itoa(arg.Page))
  144. params.Set("pagesize", strconv.Itoa(arg.Pagesize))
  145. params.Set("platform", arg.Platform)
  146. params.Set("order", arg.Order)
  147. params.Set("search_type", "all")
  148. params.Set("from_source", arg.FromSource)
  149. params.Set("media_bangumi_num", strconv.Itoa(arg.SeasonNum))
  150. params.Set("media_ft_num", strconv.Itoa(arg.MovieNum))
  151. params.Set("is_new_pgc", "1")
  152. if req, err = d.client.NewRequest("GET", d.userSearch, ip, params); err != nil {
  153. log.Error("d.client.NewRequest url(%s) error(%v)", d.userSearch, err)
  154. return
  155. }
  156. req.Header.Set("Buvid", arg.Buvid)
  157. res := &mdlSearch.Search{}
  158. if err = d.client.Do(c, req, res); err != nil {
  159. log.Error("[wild.PgcSearch] d.client.Do url(%s) error(%v)", d.userSearch, err)
  160. return
  161. }
  162. if res.Code != ecode.OK.Code() {
  163. err = ecode.Int(res.Code)
  164. log.Error("[wild.PgcSearch] code(%d) error(%v)", res.Code, err)
  165. return
  166. }
  167. for _, v := range res.Result.MediaBangumi {
  168. seasonIDs = append(seasonIDs, v.SeasonID)
  169. }
  170. for _, v := range res.Result.MediaFt {
  171. seasonIDs = append(seasonIDs, v.SeasonID)
  172. }
  173. if len(seasonIDs) > 0 {
  174. if bangumis, err = d.cardInfo(c, arg.MID, seasonIDs); err != nil {
  175. log.Error("[wild.PgcSearch] MovieByType2 %+v", err)
  176. return
  177. }
  178. }
  179. if len(bangumis) > 0 {
  180. group := new(errgroup.Group)
  181. group.Go(func() error {
  182. items1 = make([]*mdlSearch.Item, 0, len(res.Result.MediaBangumi))
  183. for _, v := range res.Result.MediaBangumi {
  184. si := &mdlSearch.Item{}
  185. si.FromMedia(v, "", mdlSearch.GotoMovie, bangumis)
  186. items1 = append(items1, si)
  187. }
  188. return nil
  189. })
  190. group.Go(func() error {
  191. items2 = make([]*mdlSearch.Item, 0, len(res.Result.MediaFt))
  192. for _, v := range res.Result.MediaFt {
  193. si := &mdlSearch.Item{}
  194. si.FromMedia(v, "", mdlSearch.GotoMovie, bangumis)
  195. items2 = append(items2, si)
  196. }
  197. return nil
  198. })
  199. if err = group.Wait(); err != nil {
  200. log.Error("[wild.PgcSearch] group.Wait() is error(%v)", err)
  201. return
  202. }
  203. }
  204. items1 = append(items1, items2...)
  205. st = &mdlSearch.TypeSearch{TrackID: res.Trackid, Pages: res.Page, Total: res.Total, Items: items1}
  206. return
  207. }