live.go 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. package live
  2. import (
  3. "context"
  4. "net/http"
  5. "net/url"
  6. "strconv"
  7. cardlive "go-common/app/interface/main/app-card/model/card/live"
  8. "go-common/app/interface/main/app-channel/conf"
  9. "go-common/app/interface/main/app-channel/model/live"
  10. "go-common/library/ecode"
  11. httpx "go-common/library/net/http/blademaster"
  12. "go-common/library/net/metadata"
  13. "go-common/library/xstr"
  14. "github.com/pkg/errors"
  15. )
  16. const (
  17. _appMRoom = "/room/v1/Room/rooms_for_app_index"
  18. _feedList = "/feed/v1/feed/getList"
  19. _card = "/room/v1/RoomRecommend/getInfoByCardId"
  20. )
  21. // Dao is show dao.
  22. type Dao struct {
  23. // http client
  24. client *httpx.Client
  25. // live
  26. appMRoom string
  27. feedList string
  28. card string
  29. }
  30. // New new a bangumi dao.
  31. func New(c *conf.Config) (d *Dao) {
  32. d = &Dao{
  33. // http client
  34. client: httpx.NewClient(c.HTTPClient),
  35. appMRoom: c.Host.LiveAPI + _appMRoom,
  36. feedList: c.Host.LiveAPI + _feedList,
  37. card: c.Host.LiveAPI + _card,
  38. }
  39. return
  40. }
  41. func (d *Dao) AppMRoom(c context.Context, roomids []int64) (rs map[int64]*cardlive.Room, err error) {
  42. ip := metadata.String(c, metadata.RemoteIP)
  43. params := url.Values{}
  44. params.Set("room_ids", xstr.JoinInts(roomids))
  45. var res struct {
  46. Code int `json:"code"`
  47. Data []*cardlive.Room `json:"data"`
  48. }
  49. if err = d.client.Get(c, d.appMRoom, ip, params, &res); err != nil {
  50. return
  51. }
  52. if res.Code != ecode.OK.Code() {
  53. err = errors.Wrap(err, d.appMRoom+"?"+params.Encode())
  54. return
  55. }
  56. rs = make(map[int64]*cardlive.Room, len(res.Data))
  57. for _, r := range res.Data {
  58. rs[r.RoomID] = r
  59. }
  60. return
  61. }
  62. func (d *Dao) FeedList(c context.Context, mid int64, pn, ps int) (fs []*live.Feed, count int, err error) {
  63. var req *http.Request
  64. params := url.Values{}
  65. params.Set("page", strconv.Itoa(pn))
  66. params.Set("pagesize", strconv.Itoa(ps))
  67. if req, err = d.client.NewRequest("GET", d.feedList, "", params); err != nil {
  68. return
  69. }
  70. req.Header.Set("X-BiliLive-UID", strconv.FormatInt(mid, 10))
  71. var res struct {
  72. Code int `json:"code"`
  73. Data struct {
  74. Rooms []*live.Feed `json:"rooms"`
  75. Count int `json:"count"`
  76. } `json:"data"`
  77. }
  78. if err = d.client.Do(c, req, &res); err != nil {
  79. return
  80. }
  81. if res.Code != ecode.OK.Code() {
  82. err = errors.Wrap(err, d.feedList+"?"+params.Encode())
  83. return
  84. }
  85. fs = res.Data.Rooms
  86. count = res.Data.Count
  87. return
  88. }
  89. func (d *Dao) Card(c context.Context) (csm map[int64][]*cardlive.Card, err error) {
  90. var res struct {
  91. Code int `json:"code"`
  92. Data map[int64][]*cardlive.Card `json:"data"`
  93. }
  94. if err = d.client.Get(c, d.card, "", nil, &res); err != nil {
  95. return
  96. }
  97. if res.Code != ecode.OK.Code() {
  98. err = errors.Wrap(err, d.card)
  99. return
  100. }
  101. csm = res.Data
  102. return
  103. }