coupon.go 989 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package bnj
  2. import (
  3. "context"
  4. "encoding/json"
  5. "net/http"
  6. "strings"
  7. "go-common/library/ecode"
  8. "github.com/pkg/errors"
  9. )
  10. const _grantCouponURL = "/mall-marketing/coupon_code/create"
  11. // GrantCoupon grant coupon to mid.
  12. func (d *Dao) GrantCoupon(c context.Context, mid int64, couponID string) (err error) {
  13. var (
  14. bs []byte
  15. req *http.Request
  16. )
  17. param := &struct {
  18. Mid int64 `json:"mid"`
  19. CouponID string `json:"couponId"`
  20. }{
  21. Mid: mid,
  22. CouponID: couponID,
  23. }
  24. if bs, err = json.Marshal(param); err != nil {
  25. return
  26. }
  27. if req, err = http.NewRequest(http.MethodPost, d.grantCouponURL, strings.NewReader(string(bs))); err != nil {
  28. return
  29. }
  30. req.Header.Set("Content-Type", "application/json")
  31. var res struct {
  32. Code int `json:"code"`
  33. Msg string `json:"message"`
  34. }
  35. if err = d.client.Do(c, req, &res); err != nil {
  36. return
  37. }
  38. if res.Code != ecode.OK.Code() {
  39. err = errors.Wrap(ecode.Int(res.Code), d.grantCouponURL+"msg:"+res.Msg)
  40. }
  41. return
  42. }