forked from go-pay/gopay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alipay_server_api.go
254 lines (238 loc) · 7.18 KB
/
alipay_server_api.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
//==================================
// * Name:Jerry
// * DateTime:2019/6/18 19:24
// * Desc:
//==================================
package gopay
import (
"bytes"
"crypto"
"crypto/rsa"
"crypto/x509"
"encoding/base64"
"encoding/json"
"encoding/pem"
"errors"
"fmt"
"hash"
"log"
"net/http"
)
//解析支付宝支付完成后的Notify信息
func ParseAliPayNotifyResult(req *http.Request) (notifyRsp *AliPayNotifyRequest, err error) {
notifyRsp = new(AliPayNotifyRequest)
notifyRsp.NotifyTime = req.FormValue("notify_time")
notifyRsp.NotifyType = req.FormValue("notify_type")
notifyRsp.NotifyId = req.FormValue("notify_id")
notifyRsp.AppId = req.FormValue("app_id")
notifyRsp.Charset = req.FormValue("charset")
notifyRsp.Version = req.FormValue("version")
notifyRsp.SignType = req.FormValue("sign_type")
notifyRsp.Sign = req.FormValue("sign")
notifyRsp.AuthAppId = req.FormValue("auth_app_id")
notifyRsp.TradeNo = req.FormValue("trade_no")
notifyRsp.OutTradeNo = req.FormValue("out_trade_no")
notifyRsp.OutBizNo = req.FormValue("out_biz_no")
notifyRsp.BuyerId = req.FormValue("buyer_id")
notifyRsp.BuyerLogonId = req.FormValue("buyer_logon_id")
notifyRsp.SellerId = req.FormValue("seller_id")
notifyRsp.SellerEmail = req.FormValue("seller_email")
notifyRsp.TradeStatus = req.FormValue("trade_status")
notifyRsp.TotalAmount = req.FormValue("total_amount")
notifyRsp.ReceiptAmount = req.FormValue("receipt_amount")
notifyRsp.InvoiceAmount = req.FormValue("invoice_amount")
notifyRsp.BuyerPayAmount = req.FormValue("buyer_pay_amount")
notifyRsp.PointAmount = req.FormValue("point_amount")
notifyRsp.RefundFee = req.FormValue("refund_fee")
notifyRsp.Subject = req.FormValue("subject")
notifyRsp.Body = req.FormValue("body")
notifyRsp.GmtCreate = req.FormValue("gmt_create")
notifyRsp.GmtPayment = req.FormValue("gmt_payment")
notifyRsp.GmtRefund = req.FormValue("gmt_refund")
notifyRsp.GmtClose = req.FormValue("gmt_close")
billList := req.FormValue("fund_bill_list")
//log.Println("billList:", billList)
if billList != null {
bills := make([]FundBillListInfo, 0)
err = json.Unmarshal([]byte(billList), &bills)
if err != nil {
return nil, err
}
notifyRsp.FundBillList = bills
} else {
notifyRsp.FundBillList = nil
}
notifyRsp.PassbackParams = req.FormValue("passback_params")
detailList := req.FormValue("voucher_detail_list")
//log.Println("detailList:", detailList)
if detailList != null {
details := make([]VoucherDetailListInfo, 0)
err = json.Unmarshal([]byte(detailList), &details)
if err != nil {
return nil, err
}
notifyRsp.VoucherDetailList = details
} else {
notifyRsp.VoucherDetailList = nil
}
return notifyRsp, err
}
//支付通知的签名验证和参数签名后的Sign
// aliPayPublicKey:支付宝公钥
// notifyRsp:利用 gopay.ParseAliPayNotifyResult() 得到的结构体
// 返回参数ok:是否验证通过
// 返回参数err:错误信息
func VerifyAliPayResultSign(aliPayPublicKey string, notifyRsp *AliPayNotifyRequest) (ok bool, err error) {
body := make(BodyMap)
body.Set("notify_time", notifyRsp.NotifyTime)
body.Set("notify_type", notifyRsp.NotifyType)
body.Set("notify_id", notifyRsp.NotifyId)
body.Set("app_id", notifyRsp.AppId)
body.Set("charset", notifyRsp.Charset)
body.Set("version", notifyRsp.Version)
//body.Set("sign", notifyRsp.Sign) //验签时去掉
//body.Set("sign_type", notifyRsp.SignType) //验签时去掉
body.Set("auth_app_id", notifyRsp.AuthAppId)
body.Set("trade_no", notifyRsp.TradeNo)
body.Set("out_trade_no", notifyRsp.OutTradeNo)
body.Set("out_biz_no", notifyRsp.OutBizNo)
body.Set("buyer_id", notifyRsp.BuyerId)
body.Set("buyer_logon_id", notifyRsp.BuyerLogonId)
body.Set("seller_id", notifyRsp.SellerId)
body.Set("seller_email", notifyRsp.SellerEmail)
body.Set("trade_status", notifyRsp.TradeStatus)
body.Set("total_amount", notifyRsp.TotalAmount)
body.Set("receipt_amount", notifyRsp.ReceiptAmount)
body.Set("invoice_amount", notifyRsp.InvoiceAmount)
body.Set("buyer_pay_amount", notifyRsp.BuyerPayAmount)
body.Set("point_amount", notifyRsp.PointAmount)
body.Set("refund_fee", notifyRsp.RefundFee)
body.Set("subject", notifyRsp.Subject)
body.Set("body", notifyRsp.Body)
body.Set("gmt_create", notifyRsp.GmtCreate)
body.Set("gmt_payment", notifyRsp.GmtPayment)
body.Set("gmt_refund", notifyRsp.GmtRefund)
body.Set("gmt_close", notifyRsp.GmtClose)
body.Set("fund_bill_list", jsonToString(notifyRsp.FundBillList))
body.Set("passback_params", notifyRsp.PassbackParams)
body.Set("voucher_detail_list", jsonToString(notifyRsp.VoucherDetailList))
newBody := make(BodyMap)
for k, v := range body {
if v != null {
newBody.Set(k, v)
}
}
pKey := FormatAliPayPublicKey(aliPayPublicKey)
signData := sortAliPaySignParams(newBody)
//log.Println("签名字符串:", signData)
err = verifyAliPaySign(signData, notifyRsp.Sign, notifyRsp.SignType, pKey)
if err != nil {
return false, err
}
return true, nil
}
func jsonToString(v interface{}) (str string) {
if v == nil {
return ""
}
bs, err := json.Marshal(v)
if err != nil {
fmt.Println("err:", err)
return ""
}
s := string(bs)
if s == "null" {
return ""
}
return s
}
//格式化秘钥
func FormatPrivateKey(privateKey string) (pKey string) {
buffer := new(bytes.Buffer)
buffer.WriteString("-----BEGIN RSA PRIVATE KEY-----\n")
rawLen := 64
keyLen := len(privateKey)
raws := keyLen / rawLen
temp := keyLen % rawLen
if temp > 0 {
raws++
}
start := 0
end := start + rawLen
for i := 0; i < raws; i++ {
if i == raws-1 {
buffer.WriteString(privateKey[start:])
} else {
buffer.WriteString(privateKey[start:end])
}
buffer.WriteString("\n")
start += rawLen
end = start + rawLen
}
buffer.WriteString("-----END RSA PRIVATE KEY-----\n")
pKey = buffer.String()
return
}
//格式化秘钥
func FormatAliPayPublicKey(publicKey string) (pKey string) {
buffer := new(bytes.Buffer)
buffer.WriteString("-----BEGIN PUBLIC KEY-----\n")
rawLen := 64
keyLen := len(publicKey)
raws := keyLen / rawLen
temp := keyLen % rawLen
if temp > 0 {
raws++
}
start := 0
end := start + rawLen
for i := 0; i < raws; i++ {
if i == raws-1 {
buffer.WriteString(publicKey[start:])
} else {
buffer.WriteString(publicKey[start:end])
}
buffer.WriteString("\n")
start += rawLen
end = start + rawLen
}
buffer.WriteString("-----END PUBLIC KEY-----\n")
pKey = buffer.String()
return
}
func verifyAliPaySign(signData, sign, signType, aliPayPublicKey string) (err error) {
var (
h hash.Hash
hashs crypto.Hash
)
signBytes, err := base64.StdEncoding.DecodeString(sign)
if err != nil {
return err
}
//解析秘钥
block, _ := pem.Decode([]byte(aliPayPublicKey))
if block == nil {
return errors.New("支付宝公钥Decode错误")
}
key, err := x509.ParsePKIXPublicKey(block.Bytes)
if err != nil {
log.Println("x509.ParsePKIXPublicKey:", err)
return err
}
publicKey, ok := key.(*rsa.PublicKey)
if !ok {
return errors.New("支付宝公钥转换错误")
}
//判断签名方式
switch signType {
case "RSA":
hashs = crypto.SHA1
case "RSA2":
hashs = crypto.SHA256
default:
hashs = crypto.SHA256
}
h = hashs.New()
h.Write([]byte(signData))
return rsa.VerifyPKCS1v15(publicKey, hashs, h.Sum(nil), signBytes)
}