fans.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package fans
  2. import (
  3. "context"
  4. "net/url"
  5. "strconv"
  6. "time"
  7. "go-common/app/interface/main/reply/conf"
  8. "go-common/app/interface/main/reply/model/reply"
  9. "go-common/library/log"
  10. httpx "go-common/library/net/http/blademaster"
  11. )
  12. // Dao Dao
  13. type Dao struct {
  14. fansReceivedListURL string
  15. fansReceivedListHTTPClient *httpx.Client
  16. }
  17. // New New
  18. func New(c *conf.Config) *Dao {
  19. d := &Dao{
  20. fansReceivedListURL: c.Reply.FansReceivedListURL,
  21. fansReceivedListHTTPClient: httpx.NewClient(c.HTTPClient),
  22. }
  23. return d
  24. }
  25. // Fetch Fetch
  26. func (dao *Dao) Fetch(c context.Context, uids []int64, mid int64, now time.Time) (map[int64]*reply.FansDetail, error) {
  27. fansMap := make(map[int64]*reply.FansDetail)
  28. if len(uids) == 0 {
  29. return fansMap, nil
  30. }
  31. params := url.Values{}
  32. params.Set("target_id", strconv.FormatInt(mid, 10))
  33. params.Set("source", strconv.FormatInt(2, 10))
  34. for index := range uids {
  35. params.Add("uid[]", strconv.FormatInt(uids[index], 10))
  36. }
  37. var res struct {
  38. Code int `json:"code"`
  39. Message string `json:"msg"`
  40. Data []*reply.FansDetail `json:"data"`
  41. }
  42. if err := dao.fansReceivedListHTTPClient.Get(c, dao.fansReceivedListURL, "", params, &res); err != nil {
  43. log.Error("fansFetch url(%v),err (%v)", dao.fansReceivedListURL+"?"+params.Encode(), err)
  44. return fansMap, err
  45. }
  46. if res.Code != 0 {
  47. return fansMap, nil
  48. }
  49. for _, d := range res.Data {
  50. fansMap[d.UID] = d
  51. }
  52. return fansMap, nil
  53. }