singleWechatPay.go 3.4 KB

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