@@ -15,12 +15,58 @@ import (
15
15
//解析支付宝支付完成后的Notify信息
16
16
func ParseAliPayNotifyResult (req * http.Request ) (notifyRsp * AliPayNotifyRequest , err error ) {
17
17
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
22
56
}
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
24
70
}
25
71
26
72
//支付通知的签名验证和参数签名后的Sign
0 commit comments