wechatPay.go 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. package bus
  2. import (
  3. "context"
  4. "encoding/json"
  5. "errors"
  6. "fmt"
  7. "pay/conf"
  8. "pay/db/model"
  9. "pay/log"
  10. "pay/pay"
  11. "pay/utils"
  12. "strconv"
  13. "time"
  14. "github.com/go-pay/gopay"
  15. cpay "infish.cn/comm/pay"
  16. )
  17. type SingleWechatPay struct {
  18. }
  19. func NewSingleWechatPay() PayInf {
  20. return &SingleWechatPay{}
  21. }
  22. func (a *SingleWechatPay) Pay(ctx context.Context, orderMsg *cpay.OrderMsg) (interface{}, error) {
  23. fmt.Println("====================single-wechat二维码获取=====================")
  24. // 初始化 BodyMap
  25. orderId := orderMsg.Id.Hex()
  26. bm := make(gopay.BodyMap)
  27. singlePayCnf := utils.GetSinglePayConfig(conf.AppConfig)
  28. bm.Set("appid", singlePayCnf.WechatPay.AppId).
  29. Set("mchid", singlePayCnf.WechatPay.MchId).
  30. Set("description", orderMsg.Name).
  31. Set("out_trade_no", fmt.Sprintf("%s_%s", orderMsg.Project, orderId)).
  32. Set("time_expire", time.Now().Add(10*time.Minute).Format(time.RFC3339)).
  33. Set("notify_url", singlePayCnf.WechatPay.NotifyUrl).
  34. SetBodyMap("amount", func(bm gopay.BodyMap) {
  35. bm.Set("total", *orderMsg.Amount*100).
  36. Set("currency", "CNY")
  37. })
  38. res, err := pay.SingleWechatpayClient.V3TransactionNative(context.Background(), bm)
  39. if err != nil {
  40. fmt.Println(err)
  41. return false, err
  42. }
  43. if res.Code != 0 {
  44. fmt.Println("wxRsp:", res.Error)
  45. errMap := map[string]string{}
  46. msg := res.Error
  47. err = json.Unmarshal([]byte(res.Error), &errMap)
  48. if err == nil && len(errMap["message"]) > 0 {
  49. msg = errMap["message"]
  50. }
  51. return nil, errors.New(msg)
  52. }
  53. log.Debugf("wxRsp: %#v", res.Response)
  54. return res.Response.CodeUrl, nil
  55. }
  56. func (a *SingleWechatPay) Close(ctx context.Context, orderMsg *cpay.OrderMsg) (bool, error) {
  57. orderId := orderMsg.Project + "_" + orderMsg.Id.Hex()
  58. res, err := pay.SingleWechatpayClient.V3TransactionCloseOrder(ctx, orderId)
  59. if err != nil {
  60. return false, err
  61. }
  62. if res.Code != 0 {
  63. return false, errors.New(res.Error)
  64. }
  65. return true, nil
  66. }
  67. // https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_1_9.shtml
  68. // 客户端对应必要参数 out_trade_no out_refund_no total refund payMode
  69. func (s *SingleWechatPay) ReFundPay(ctx context.Context, refund *cpay.ReFund) (interface{}, error) {
  70. bm := make(gopay.BodyMap)
  71. singlePayCnf := utils.GetSinglePayConfig(conf.AppConfig)
  72. amount, err := strconv.ParseFloat(fmt.Sprintf("%.2f", *refund.Amount), 64)
  73. if err != nil {
  74. return nil, errors.New("价格parse错误!")
  75. }
  76. // 商品
  77. goods := make([]gopay.BodyMap, 0)
  78. gd := make(gopay.BodyMap)
  79. gd.Set("merchant_goods_id", refund.PointId.Hex()).
  80. Set("goods_name", refund.PointName).
  81. Set("unit_price", refund.PointPrice).
  82. Set("refund_amount", refund.PointAmount).
  83. Set("refund_quantity", refund.Quantity)
  84. goods = append(goods, gd)
  85. bm.Set("out_trade_no", refund.TradeNo).
  86. Set("out_refund_no", refund.Id.Hex()).
  87. Set("reason", refund.Reason).
  88. Set("notify_url", singlePayCnf.WechatPay.NotifyUrl).
  89. SetBodyMap("amount", func(bm gopay.BodyMap) {
  90. bm.Set("total", refund.Total).
  91. Set("currency", "CNY").
  92. Set("refund", amount*100)
  93. })
  94. // 商品相关
  95. if !refund.PointId.IsZero() {
  96. bm.Set("goods_detail", goods)
  97. }
  98. res, err := pay.SingleWechatpayClient.V3Refund(ctx, bm)
  99. if err != nil {
  100. return false, err
  101. }
  102. if res.Code != 0 {
  103. return false, errors.New(res.Error)
  104. }
  105. return true, nil
  106. }
  107. // 退款状态查询
  108. func (s *SingleWechatPay) ReFundQuery(ctx context.Context, refund *model.ReFund) (interface{}, error) {
  109. res, err := pay.SingleWechatpayClient.V3RefundQuery(ctx, refund.Id.Hex(), nil)
  110. if err != nil {
  111. return nil, err
  112. }
  113. if res.Code != 0 {
  114. return nil, errors.New(res.Error)
  115. }
  116. return res.Response.Status, nil
  117. // return res.Response, nil
  118. }