pgc.go 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package web
  2. import (
  3. "context"
  4. "net/url"
  5. "strconv"
  6. "go-common/library/ecode"
  7. "go-common/library/log"
  8. "go-common/library/net/metadata"
  9. )
  10. // PgcFull pgc full .
  11. func (d *Dao) PgcFull(ctx context.Context, tp int, pn, ps int64, source string) (res interface{}, err error) {
  12. var (
  13. param = url.Values{}
  14. ip = metadata.String(ctx, metadata.RemoteIP)
  15. rs struct {
  16. Code int `json:"code"`
  17. Data interface{} `json:"result"`
  18. }
  19. )
  20. param.Set("bsource", source)
  21. param.Set("season_type", strconv.Itoa(tp))
  22. param.Set("page_no", strconv.FormatInt(pn, 10))
  23. param.Set("page_size", strconv.FormatInt(ps, 10))
  24. if err = d.httpR.Get(ctx, d.pgcFullURL, ip, param, &rs); err != nil {
  25. log.Error("d.httpR.Get err(%v)", err)
  26. return
  27. }
  28. if rs.Code != ecode.OK.Code() {
  29. err = ecode.Int(rs.Code)
  30. return
  31. }
  32. res = rs.Data
  33. return
  34. }
  35. // PgcIncre pgc increment .
  36. func (d *Dao) PgcIncre(ctx context.Context, tp int, pn, ps, start, end int64, source string) (res interface{}, err error) {
  37. var (
  38. param = url.Values{}
  39. ip = metadata.String(ctx, metadata.RemoteIP)
  40. )
  41. var rs struct {
  42. Code int `json:"code"`
  43. Data interface{} `json:"result"`
  44. }
  45. param.Set("bsource", source)
  46. param.Set("season_type", strconv.Itoa(tp))
  47. param.Set("page_no", strconv.FormatInt(pn, 10))
  48. param.Set("page_size", strconv.FormatInt(ps, 10))
  49. param.Set("start_ts", strconv.FormatInt(start, 10))
  50. param.Set("end_ts", strconv.FormatInt(end, 10))
  51. if err = d.httpR.Get(ctx, d.pgcIncreURL, ip, param, &rs); err != nil {
  52. log.Error("d.httpR.Get url(%s) err(%s)", d.pgcIncreURL+"?"+param.Encode(), err)
  53. return
  54. }
  55. if rs.Code != ecode.OK.Code() {
  56. err = ecode.Int(rs.Code)
  57. return
  58. }
  59. res = rs.Data
  60. return
  61. }