lottery.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package like
  2. import (
  3. "context"
  4. "net/url"
  5. "strconv"
  6. l "go-common/app/interface/main/activity/model/like"
  7. "go-common/library/ecode"
  8. "go-common/library/net/metadata"
  9. "github.com/pkg/errors"
  10. )
  11. // AddLotteryTimes .
  12. func (d *Dao) AddLotteryTimes(c context.Context, sid, mid int64) (err error) {
  13. params := url.Values{}
  14. params.Set("act_id", strconv.FormatInt(sid, 10))
  15. params.Set("mid", strconv.FormatInt(mid, 10))
  16. var res struct {
  17. Code int `json:"code"`
  18. }
  19. if err = d.client.Get(c, d.addLotteryTimesURL, metadata.String(c, metadata.RemoteIP), params, &res); err != nil {
  20. err = errors.Wrapf(err, "d.client.Get(%s)", d.addLotteryTimesURL+"?"+params.Encode())
  21. return
  22. }
  23. if res.Code != ecode.OK.Code() {
  24. err = ecode.Int(res.Code)
  25. }
  26. return
  27. }
  28. // LotteryIndex .
  29. func (d *Dao) LotteryIndex(c context.Context, actID, platform, source, mid int64) (res *l.Lottery, err error) {
  30. params := url.Values{}
  31. params.Set("act_id", strconv.FormatInt(actID, 10))
  32. params.Set("platform", strconv.FormatInt(platform, 10))
  33. params.Set("source", strconv.FormatInt(source, 10))
  34. params.Set("mid", strconv.FormatInt(mid, 10))
  35. res = new(l.Lottery)
  36. if err = d.client.Get(c, d.lotteryIndexURL, metadata.String(c, metadata.RemoteIP), params, &res); err != nil {
  37. err = errors.Wrapf(err, "d.client.NewRequest(%s)", d.lotteryIndexURL)
  38. }
  39. return
  40. }