activity.go 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package activity
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "strconv"
  7. "go-common/app/interface/main/app-show/conf"
  8. "go-common/app/interface/main/app-show/model/activity"
  9. "go-common/library/log"
  10. httpx "go-common/library/net/http/blademaster"
  11. "go-common/library/xstr"
  12. "net/url"
  13. )
  14. const (
  15. _activitys = "/activity/pages"
  16. )
  17. // Dao is activity dao.
  18. type Dao struct {
  19. // http client
  20. client *httpx.Client
  21. // activitys
  22. activitys string
  23. }
  24. // New new a activity dao.
  25. func New(c *conf.Config) (d *Dao) {
  26. d = &Dao{
  27. // http client
  28. client: httpx.NewClient(c.HTTPClientAsyn),
  29. activitys: c.Host.Activity + _activitys,
  30. }
  31. return d
  32. }
  33. func (d *Dao) Activitys(c context.Context, ids []int64, mold int, ip string) (actm map[int64]*activity.Activity, err error) {
  34. params := url.Values{}
  35. params.Set("pids", xstr.JoinInts(ids))
  36. params.Set("http", "2")
  37. params.Set("platform", "pegasus")
  38. params.Set("mold", strconv.Itoa(mold))
  39. var res struct {
  40. Code int `json:"code"`
  41. Data struct {
  42. List []*activity.Activity `json:"list"`
  43. } `json:"data"`
  44. }
  45. if err = d.client.Get(c, d.activitys, ip, params, &res); err != nil {
  46. log.Error("activitys url(%s) error(%v)", d.activitys+"?"+params.Encode(), err)
  47. return
  48. }
  49. b, _ := json.Marshal(&res)
  50. log.Info("activitys url(%s) response(%s)", d.activitys+"?"+params.Encode(), b)
  51. if res.Code != 0 {
  52. err = fmt.Errorf("activitys api failed(%d)", res.Code)
  53. log.Error("url(%s) res code(%d)", d.activitys+"?"+params.Encode(), res.Code)
  54. return
  55. }
  56. actm = make(map[int64]*activity.Activity, len(res.Data.List))
  57. for _, act := range res.Data.List {
  58. actm[act.ID] = act
  59. }
  60. return
  61. }