bigdata.go 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package dao
  2. import (
  3. "context"
  4. "net/url"
  5. "strconv"
  6. "go-common/app/service/main/dynamic/model"
  7. "go-common/library/ecode"
  8. "go-common/library/log"
  9. )
  10. // RegionArcs get new dynamic by bigData API.
  11. func (d *Dao) RegionArcs(c context.Context, rid int32, remoteIP string) (aids []int64, total int, err error) {
  12. params := url.Values{}
  13. params.Set("rid", strconv.FormatInt(int64(rid), 10))
  14. var res struct {
  15. Code int `json:"code"`
  16. Data model.AvidData `json:"data"`
  17. }
  18. if err = d.httpR.Get(c, d.regionURI, remoteIP, params, &res); err != nil {
  19. PromError("大数据分区接口", "d.httpR.Get(%s) error(%+v)", d.regionURI+"?"+params.Encode(), err)
  20. return
  21. }
  22. if res.Code != ecode.OK.Code() {
  23. PromError("大数据分区接口", "dynamic url(%s) res code(%d) or res.data(%v)", d.regionURI+"?"+params.Encode(), res.Code, res.Data)
  24. err = ecode.Int(res.Code)
  25. return
  26. }
  27. if len(res.Data.Avid) == 0 {
  28. log.Error("dynamic url(%s) res(%v)", d.regionURI+"?"+params.Encode(), res)
  29. }
  30. aids = res.Data.Avid
  31. total = res.Data.Count
  32. return
  33. }
  34. // RegionTagArcs get new dynamic by bigData API.
  35. func (d *Dao) RegionTagArcs(c context.Context, rid int32, tagID int64, remoteIP string) (aids []int64, err error) {
  36. params := url.Values{}
  37. params.Set("rid", strconv.FormatInt(int64(rid), 10))
  38. params.Set("tag_id", strconv.FormatInt(tagID, 10))
  39. var res struct {
  40. Code int `json:"code"`
  41. Data model.AvidData `json:"data"`
  42. }
  43. if err = d.httpR.Get(c, d.regionTagURI, remoteIP, params, &res); err != nil {
  44. PromError("大数据Tag接口", "d.httpR.Get(%s) error(%+v)", d.regionTagURI+"?"+params.Encode(), err)
  45. return
  46. }
  47. if res.Code != ecode.OK.Code() {
  48. PromError("大数据Tag接口", "dynamic url(%s) res code(%d) or res.data(%v)", d.regionTagURI+"?"+params.Encode(), res.Code, res.Data)
  49. err = ecode.Int(res.Code)
  50. return
  51. }
  52. if len(res.Data.Avid) == 0 {
  53. log.Error("dynamic url(%s) res(%v)", d.regionTagURI+"?"+params.Encode(), res)
  54. }
  55. aids = res.Data.Avid
  56. return
  57. }