Skip to content

Commit f038108

Browse files
author
Jerry
committed
fix
1 parent 9e4e426 commit f038108

File tree

2 files changed

+57
-10
lines changed

2 files changed

+57
-10
lines changed

alipay_client_test.go

+6-5
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@ func TestAliPayClient_AliPayTradeWapPay(t *testing.T) {
1818
client.SetCharset("utf-8").
1919
SetSignType("RSA2").
2020
//SetReturnUrl("https://www.igoogle.ink").
21-
SetNotifyUrl("https://api.iguiyu.com/gy_pay/alipay/notify")
21+
//SetNotifyUrl("https://api.iguiyu.com/gy_pay/alipay/notify").
22+
SetNotifyUrl("https://gytmp.iguiyu.com/park-api/pay/alipay/notify")
2223
//请求参数
2324
body := make(BodyMap)
2425
body.Set("subject", "手机网站测试支付")
25-
body.Set("out_trade_no", "GYWX201901301040355706100410")
26+
body.Set("out_trade_no", "GYWX201901301040355706100423")
2627
body.Set("quit_url", "https://www.igoogle.ink")
2728
body.Set("total_amount", "100.00")
2829
body.Set("product_code", "QUICK_WAP_WAY")
@@ -46,7 +47,7 @@ func TestAliPayClient_AliPayTradeAppPay(t *testing.T) {
4647
//配置公共参数
4748
client.SetCharset("utf-8").
4849
SetSignType("RSA2").
49-
SetNotifyUrl("https://www.igoogle.ink")
50+
SetNotifyUrl("https://gytmp.iguiyu.com/park-api/pay/alipay/notify")
5051
//请求参数
5152
body := make(BodyMap)
5253
body.Set("subject", "测试APP支付")
@@ -72,11 +73,11 @@ func TestAliPayClient_AliPayTradePagePay(t *testing.T) {
7273
//配置公共参数
7374
client.SetCharset("utf-8").
7475
SetSignType("RSA2").
75-
SetNotifyUrl("https://gytmp.iguiyu.com/park-api/pay/wechat/notify")
76+
SetNotifyUrl("https://gytmp.iguiyu.com/park-api/pay/alipay/notify")
7677
//请求参数
7778
body := make(BodyMap)
7879
body.Set("subject", "网站测试支付")
79-
body.Set("out_trade_no", "GYWX201901301040355706100418")
80+
body.Set("out_trade_no", "GYWX201901301040355706100425")
8081
body.Set("quit_url", "https://www.igoogle.ink")
8182
body.Set("total_amount", "88.88")
8283
body.Set("product_code", "FAST_INSTANT_TRADE_PAY")

alipay_server_api.go

+51-5
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,58 @@ import (
1515
//解析支付宝支付完成后的Notify信息
1616
func ParseAliPayNotifyResult(req *http.Request) (notifyRsp *AliPayNotifyRequest, err error) {
1717
notifyRsp = new(AliPayNotifyRequest)
18-
defer req.Body.Close()
19-
err = json.NewDecoder(req.Body).Decode(notifyRsp)
20-
if err != nil {
21-
return nil, err
18+
notifyRsp.NotifyTime = req.FormValue("notify_time")
19+
notifyRsp.NotifyType = req.FormValue("notify_type")
20+
notifyRsp.NotifyId = req.FormValue("notify_id")
21+
notifyRsp.AppId = req.FormValue("app_id")
22+
notifyRsp.Charset = req.FormValue("charset")
23+
notifyRsp.Version = req.FormValue("version")
24+
notifyRsp.SignType = req.FormValue("sign_type")
25+
notifyRsp.Sign = req.FormValue("sign")
26+
notifyRsp.TradeNo = req.FormValue("trade_no")
27+
notifyRsp.OutTradeNo = req.FormValue("out_trade_no")
28+
notifyRsp.OutBizNo = req.FormValue("out_biz_no")
29+
notifyRsp.BuyerId = req.FormValue("buyer_id")
30+
notifyRsp.BuyerLogonId = req.FormValue("buyer_logon_id")
31+
notifyRsp.SellerId = req.FormValue("seller_id")
32+
notifyRsp.SellerEmail = req.FormValue("seller_email")
33+
notifyRsp.TradeStatus = req.FormValue("trade_status")
34+
notifyRsp.TotalAmount = req.FormValue("total_amount")
35+
notifyRsp.ReceiptAmount = req.FormValue("receipt_amount")
36+
notifyRsp.InvoiceAmount = req.FormValue("invoice_amount")
37+
notifyRsp.BuyerPayAmount = req.FormValue("buyer_pay_amount")
38+
notifyRsp.PointAmount = req.FormValue("point_amount")
39+
notifyRsp.RefundFee = req.FormValue("refund_fee")
40+
notifyRsp.Subject = req.FormValue("subject")
41+
notifyRsp.Body = req.FormValue("body")
42+
notifyRsp.GmtCreate = req.FormValue("gmt_create")
43+
notifyRsp.GmtPayment = req.FormValue("gmt_payment")
44+
notifyRsp.GmtRefund = req.FormValue("gmt_refund")
45+
notifyRsp.GmtClose = req.FormValue("gmt_close")
46+
billList := req.FormValue("fund_bill_list")
47+
if billList != null {
48+
bills := make([]FundBillListInfo, 0)
49+
err = json.Unmarshal([]byte(billList), bills)
50+
if err != nil {
51+
return nil, err
52+
}
53+
notifyRsp.FundBillList = bills
54+
} else {
55+
notifyRsp.FundBillList = nil
2256
}
23-
return
57+
notifyRsp.PassbackParams = req.FormValue("passback_params")
58+
detailList := req.FormValue("voucher_detail_list")
59+
if detailList != null {
60+
details := make([]VoucherDetailListInfo, 0)
61+
err = json.Unmarshal([]byte(detailList), details)
62+
if err != nil {
63+
return nil, err
64+
}
65+
notifyRsp.VoucherDetailList = details
66+
} else {
67+
notifyRsp.VoucherDetailList = nil
68+
}
69+
return notifyRsp, err
2470
}
2571

2672
//支付通知的签名验证和参数签名后的Sign

0 commit comments

Comments
 (0)