api.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package music
  2. import (
  3. "context"
  4. "net/http"
  5. "net/url"
  6. "strconv"
  7. "time"
  8. "go-common/app/interface/main/creative/conf"
  9. "go-common/app/interface/main/creative/dao/tool"
  10. "go-common/app/interface/main/creative/model/music"
  11. "go-common/library/ecode"
  12. "go-common/library/log"
  13. "go-common/library/xstr"
  14. )
  15. const (
  16. _audioListURI = "/x/internal/v1/audio/songs/batch"
  17. )
  18. // Audio fn
  19. func (d *Dao) Audio(c context.Context, ids []int64, level int, ip string) (au map[int64]*music.Audio, err error) {
  20. params := url.Values{}
  21. params.Set("ids", xstr.JoinInts(ids))
  22. params.Set("level", strconv.Itoa(level)) //0、只返回基本信息 1、会增加up主名称、播放数、评论数
  23. params.Set("appkey", conf.Conf.App.Key)
  24. params.Set("appsecret", conf.Conf.App.Secret)
  25. params.Set("ts", strconv.FormatInt(time.Now().Unix(), 10))
  26. var (
  27. res struct {
  28. Code int `json:"code"`
  29. Msg string `json:"msg"`
  30. Data map[int64]*music.Audio `json:"data"`
  31. }
  32. query, _ = tool.Sign(params)
  33. url string
  34. )
  35. url = d.audioListURL + "?" + query
  36. log.Info("music query url(%s)", url)
  37. // new requests
  38. req, err := http.NewRequest("GET", url, nil)
  39. if err != nil {
  40. log.Error("http.NewRequest(%s) error(%v)|ip(%s)", url, err, ip)
  41. err = ecode.CreativeElecErr
  42. return
  43. }
  44. req.Header.Set("X-BACKEND-BILI-REAL-IP", ip)
  45. if err = d.client.Do(c, req, &res); err != nil {
  46. log.Error("d.client.Do(%s)|error(%v)|ip(%s)", url, err, ip)
  47. err = ecode.CreativeMusicErr
  48. return
  49. }
  50. if res.Code != 0 {
  51. log.Error("music url(%s)|res(%v)|ip(%s)|code(%d)", url, res, ip, res.Code)
  52. err = ecode.CreativeMusicErr
  53. return
  54. }
  55. au = res.Data
  56. return
  57. }