dao.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package community
  2. import (
  3. "context"
  4. "net/url"
  5. "strconv"
  6. "go-common/app/interface/main/app-interface/conf"
  7. "go-common/app/interface/main/app-interface/model/community"
  8. "go-common/library/ecode"
  9. httpx "go-common/library/net/http/blademaster"
  10. "go-common/library/net/metadata"
  11. "github.com/pkg/errors"
  12. )
  13. const (
  14. _comm = "/api/query.my.community.list.do"
  15. )
  16. // Dao is community dao
  17. type Dao struct {
  18. client *httpx.Client
  19. community string
  20. }
  21. // New initial community dao
  22. func New(c *conf.Config) (d *Dao) {
  23. d = &Dao{
  24. client: httpx.NewClient(c.HTTPIm9),
  25. community: c.Host.Im9 + _comm,
  26. }
  27. return
  28. }
  29. // Community get community data from api.
  30. func (d *Dao) Community(c context.Context, mid int64, ak, platform string, pn, ps int) (co []*community.Community, count int, err error) {
  31. ip := metadata.String(c, metadata.RemoteIP)
  32. params := url.Values{}
  33. params.Set("actionKey", "appkey")
  34. params.Set("data_type", "2")
  35. params.Set("access_key", ak)
  36. params.Set("mid", strconv.FormatInt(mid, 10))
  37. params.Set("page_no", strconv.Itoa(pn))
  38. params.Set("page_size", strconv.Itoa(ps))
  39. params.Set("platform", platform)
  40. var res struct {
  41. Code int `json:"code"`
  42. Data *struct {
  43. Count int `json:"total_count"`
  44. Result []*community.Community `json:"result"`
  45. } `json:"data"`
  46. }
  47. if err = d.client.Get(c, d.community, ip, params, &res); err != nil {
  48. return
  49. }
  50. if res.Code != ecode.OK.Code() {
  51. err = errors.Wrap(ecode.Int(res.Code), d.community+"?"+params.Encode())
  52. return
  53. }
  54. if res.Data != nil {
  55. co = res.Data.Result
  56. count = res.Data.Count
  57. }
  58. return
  59. }