-
Notifications
You must be signed in to change notification settings - Fork 424
/
alipay.go
610 lines (518 loc) · 14.6 KB
/
alipay.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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
package alipay
import (
"context"
"crypto"
"crypto/md5"
"crypto/rsa"
"crypto/x509"
"encoding/base64"
"encoding/hex"
"encoding/json"
"errors"
"io"
"net/http"
"net/url"
"os"
"strings"
"sync"
"time"
"github.com/smartwalle/ncrypto"
"github.com/smartwalle/ngx"
"github.com/smartwalle/nsign"
)
var (
ErrBadResponse = errors.New("alipay: bad response")
ErrSignNotFound = errors.New("alipay: sign content not found")
ErrAliPublicKeyNotFound = errors.New("alipay: alipay public key not found")
)
const (
kAliPayPublicKeySN = "alipay-public-key"
kAppAuthToken = "app_auth_token"
kReturnURL = "return_url"
kNotifyURL = "notify_url"
kEmptyBizContent = "{}"
)
type Client struct {
mu sync.Mutex
isProduction bool
appId string
host string
notifyVerifyHost string
Client *http.Client
location *time.Location
onReceivedData func(ctx context.Context, method string, data []byte)
// 内容加密
needEncrypt bool
encryptIV []byte
encryptType string
encryptKey []byte
encryptPadding ncrypto.Padding
appCertSN string
aliRootCertSN string
aliCertSN string
// 签名和验签
encoder nsign.Encoder
signer Signer
verifiers map[string]Verifier
}
type Signer interface {
SignValues(values url.Values, opts ...nsign.SignOption) ([]byte, error)
SignBytes(data []byte, opts ...nsign.SignOption) ([]byte, error)
}
type Verifier interface {
VerifyValues(values url.Values, signature []byte, opts ...nsign.SignOption) error
VerifyBytes(data []byte, signature []byte, opts ...nsign.SignOption) error
}
type OptionFunc func(c *Client)
func WithTimeLocation(location *time.Location) OptionFunc {
return func(c *Client) {
c.location = location
}
}
func WithHTTPClient(client *http.Client) OptionFunc {
return func(c *Client) {
if client != nil {
c.Client = client
}
}
}
func WithSandboxGateway(gateway string) OptionFunc {
return func(c *Client) {
if gateway == "" {
gateway = kNewSandboxGateway
}
if !c.isProduction {
c.host = gateway
}
}
}
func WithProductionGateway(gateway string) OptionFunc {
return func(c *Client) {
if gateway == "" {
gateway = kProductionGateway
}
if c.isProduction {
c.host = gateway
}
}
}
func WithNewSandboxGateway() OptionFunc {
return WithSandboxGateway(kNewSandboxGateway)
}
func WithPastSandboxGateway() OptionFunc {
return WithSandboxGateway(kPastSandboxGateway)
}
// New 初始化支付宝客户端
//
// appId - 支付宝应用 id
//
// privateKey - 应用私钥,开发者自己生成
//
// isProduction - 是否为生产环境,传 false 的时候为沙箱环境,用于开发测试,正式上线的时候需要改为 true
func New(appId, privateKey string, isProduction bool, opts ...OptionFunc) (nClient *Client, err error) {
priKey, err := ncrypto.DecodePrivateKey([]byte(privateKey)).PKCS1().RSAPrivateKey()
if err != nil {
priKey, err = ncrypto.DecodePrivateKey([]byte(privateKey)).PKCS8().RSAPrivateKey()
if err != nil {
return nil, err
}
}
nClient = &Client{}
nClient.isProduction = isProduction
nClient.appId = appId
if nClient.isProduction {
nClient.host = kProductionGateway
nClient.notifyVerifyHost = kProductionMAPIGateway
} else {
nClient.host = kNewSandboxGateway
nClient.notifyVerifyHost = kNewSandboxGateway
}
nClient.Client = http.DefaultClient
nClient.location = time.Local
nClient.encoder = &Encoder{}
nClient.signer = nsign.New(nsign.WithMethod(nsign.NewRSAMethod(crypto.SHA256, priKey, nil)), nsign.WithEncoder(nClient.encoder))
nClient.verifiers = make(map[string]Verifier)
for _, opt := range opts {
if opt != nil {
opt(nClient)
}
}
return nClient, nil
}
func (c *Client) IsProduction() bool {
return c.isProduction
}
// SetEncryptKey 接口内容加密密钥 https://opendocs.alipay.com/common/02mse3
func (c *Client) SetEncryptKey(key string) error {
if key == "" {
c.needEncrypt = false
return nil
}
var data, err = base64.StdEncoding.DecodeString(key)
if err != nil {
return err
}
c.needEncrypt = true
c.encryptIV = []byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
c.encryptType = "AES"
c.encryptKey = data
c.encryptPadding = ncrypto.PKCS7Padding{}
return nil
}
func (c *Client) loadVerifier(sn string, pub *rsa.PublicKey) Verifier {
c.aliCertSN = sn
var verifier = nsign.New(nsign.WithMethod(nsign.NewRSAMethod(crypto.SHA256, nil, pub)), nsign.WithEncoder(c.encoder))
c.verifiers[c.aliCertSN] = verifier
return verifier
}
// LoadAliPayPublicKey 加载支付宝公钥
func (c *Client) LoadAliPayPublicKey(s string) error {
var pub *rsa.PublicKey
var err error
if len(s) < 0 {
return ErrAliPublicKeyNotFound
}
pub, err = ncrypto.DecodePublicKey([]byte(s)).PKIX().RSAPublicKey()
if err != nil {
return err
}
c.mu.Lock()
c.loadVerifier(kAliPayPublicKeySN, pub)
c.mu.Unlock()
return nil
}
// LoadAppPublicCert 加载应用公钥证书
//
// Deprecated: use LoadAppCertPublicKey instead.
func (c *Client) LoadAppPublicCert(s string) error {
return c.LoadAppCertPublicKey(s)
}
// LoadAppPublicCertFromFile 加载应用公钥证书
//
// Deprecated: use LoadAppCertPublicKeyFromFile instead.
func (c *Client) LoadAppPublicCertFromFile(filename string) error {
return c.LoadAppCertPublicKeyFromFile(filename)
}
func (c *Client) loadAppCertPublicKey(b []byte) error {
cert, err := ncrypto.DecodeCertificate(b)
if err != nil {
return err
}
c.appCertSN = getCertSN(cert)
return nil
}
// LoadAppCertPublicKey 加载应用公钥证书
func (c *Client) LoadAppCertPublicKey(s string) error {
return c.loadAppCertPublicKey([]byte(s))
}
// LoadAppCertPublicKeyFromFile 从文件加载应用公钥证书
func (c *Client) LoadAppCertPublicKeyFromFile(filename string) error {
b, err := os.ReadFile(filename)
if err != nil {
return err
}
return c.loadAppCertPublicKey(b)
}
// LoadAliPayPublicCert 加载支付宝公钥证书
//
// Deprecated: use LoadAlipayCertPublicKey instead.
func (c *Client) LoadAliPayPublicCert(s string) error {
return c.LoadAlipayCertPublicKey(s)
}
// LoadAliPayPublicCertFromFile 加载支付宝公钥证书
//
// Deprecated: use LoadAlipayCertPublicKeyFromFile instead.
func (c *Client) LoadAliPayPublicCertFromFile(filename string) error {
return c.LoadAlipayCertPublicKeyFromFile(filename)
}
// loadAlipayCertPublicKey 加载支付宝公钥证书
func (c *Client) loadAlipayCertPublicKey(b []byte) error {
cert, err := ncrypto.DecodeCertificate(b)
if err != nil {
return err
}
pub, ok := cert.PublicKey.(*rsa.PublicKey)
if ok == false {
return nil
}
c.mu.Lock()
c.loadVerifier(getCertSN(cert), pub)
c.mu.Unlock()
return nil
}
// LoadAlipayCertPublicKey 支付宝公钥证书
func (c *Client) LoadAlipayCertPublicKey(s string) error {
return c.loadAlipayCertPublicKey([]byte(s))
}
// LoadAlipayCertPublicKeyFromFile 从文件支付宝公钥证书
func (c *Client) LoadAlipayCertPublicKeyFromFile(filename string) error {
b, err := os.ReadFile(filename)
if err != nil {
return err
}
return c.loadAlipayCertPublicKey(b)
}
// LoadAliPayRootCert 加载支付宝根证书
func (c *Client) LoadAliPayRootCert(s string) error {
var certStrList = strings.Split(s, kCertificateEnd)
var certSNList = make([]string, 0, len(certStrList))
for _, certStr := range certStrList {
certStr = strings.Replace(certStr, kCertificateBegin, "", 1)
var cert, _ = ncrypto.DecodeCertificate([]byte(certStr))
if cert != nil && (cert.SignatureAlgorithm == x509.SHA256WithRSA || cert.SignatureAlgorithm == x509.SHA1WithRSA) {
certSNList = append(certSNList, getCertSN(cert))
}
}
c.aliRootCertSN = strings.Join(certSNList, "_")
return nil
}
// LoadAliPayRootCertFromFile 加载支付宝根证书
func (c *Client) LoadAliPayRootCertFromFile(filename string) error {
b, err := os.ReadFile(filename)
if err != nil {
return err
}
return c.LoadAliPayRootCert(string(b))
}
func (c *Client) URLValues(param Param) (value url.Values, err error) {
var values = url.Values{}
values.Add(kFieldAppId, c.appId)
values.Add(kFieldMethod, param.APIName())
values.Add(kFieldFormat, kFormat)
values.Add(kFieldCharset, kCharset)
values.Add(kFieldSignType, kSignTypeRSA2)
values.Add(kFieldTimestamp, time.Now().In(c.location).Format(kTimeFormat))
values.Add(kFieldVersion, kVersion)
if c.appCertSN != "" {
values.Add(kFieldAppCertSN, c.appCertSN)
}
if c.aliRootCertSN != "" {
values.Add(kFieldAliPayRootCertSN, c.aliRootCertSN)
}
jsonBytes, err := json.Marshal(param)
if err != nil {
return nil, err
}
var content = string(jsonBytes)
if content != kEmptyBizContent {
if c.needEncrypt && param.NeedEncrypt() {
jsonBytes, err = ncrypto.AESCBCEncrypt(jsonBytes, c.encryptKey, c.encryptIV, c.encryptPadding)
if err != nil {
return nil, err
}
content = base64.StdEncoding.EncodeToString(jsonBytes)
values.Add(kFieldEncryptType, c.encryptType)
}
values.Add(kFieldBizContent, content)
}
var params = param.Params()
for k, v := range params {
if v == "" {
continue
}
values.Add(k, v)
}
signature, err := c.sign(values)
if err != nil {
return nil, err
}
values.Add(kFieldSign, signature)
return values, nil
}
func (c *Client) doRequest(ctx context.Context, method string, param Param, result interface{}) (err error) {
var req = ngx.NewRequest(method, c.host, ngx.WithClient(c.Client))
req.SetContentType(kContentType)
if param != nil {
var values url.Values
values, err = c.URLValues(param)
if err != nil {
return err
}
req.SetForm(values)
req.SetFileForm(param.FileParams())
}
rsp, err := req.Do(ctx)
if err != nil {
return err
}
defer rsp.Body.Close()
bodyBytes, err := io.ReadAll(rsp.Body)
if err != nil {
return err
}
var apiName = param.APIName()
var bizFieldName = strings.Replace(apiName, ".", "_", -1) + kResponseSuffix
return c.decode(ctx, bodyBytes, bizFieldName, param.NeedVerify(), result)
}
func (c *Client) decode(ctx context.Context, data []byte, bizFieldName string, needVerifySign bool, result interface{}) (err error) {
var raw = make(map[string]json.RawMessage)
if err = json.Unmarshal(data, &raw); err != nil {
return err
}
var signBytes = raw[kFieldSign]
var certBytes = raw[kFieldAlyPayCertSN]
var bizBytes = raw[bizFieldName]
var errBytes = raw[kErrorResponse]
if len(certBytes) > 1 {
certBytes = certBytes[1 : len(certBytes)-1]
}
if len(signBytes) > 1 {
signBytes = signBytes[1 : len(signBytes)-1]
}
if len(bizBytes) == 0 {
if len(errBytes) > 0 {
var rErr *Error
if err = json.Unmarshal(errBytes, &rErr); err != nil {
return err
}
return rErr
}
return ErrBadResponse
}
// 数据解密
var plaintext []byte
if plaintext, err = c.decrypt(bizBytes); err != nil {
return err
}
// 验证签名
if needVerifySign {
if c.onReceivedData != nil {
c.onReceivedData(ctx, bizFieldName, plaintext)
}
if len(signBytes) == 0 {
// 没有签名数据,返回的内容一般为错误信息
var rErr *Error
if err = json.Unmarshal(plaintext, &rErr); err != nil {
return err
}
return rErr
}
// 验证签名
if err = c.verify(string(certBytes), bizBytes, signBytes); err != nil {
return err
}
}
if err = json.Unmarshal(plaintext, result); err != nil {
return err
}
return nil
}
func (c *Client) decrypt(data []byte) ([]byte, error) {
var plaintext = data
if len(data) > 1 && data[0] == '"' {
var ciphertext, err = base64decode(data[1 : len(data)-1])
if err != nil {
return nil, err
}
plaintext, err = ncrypto.AESCBCDecrypt(ciphertext, c.encryptKey, c.encryptIV, c.encryptPadding)
if err != nil {
return nil, err
}
}
return plaintext, nil
}
func (c *Client) VerifySign(values url.Values) (err error) {
var verifier Verifier
if verifier, err = c.getVerifier(values.Get(kFieldAlyPayCertSN)); err != nil {
return err
}
var signBytes []byte
if signBytes, err = base64.StdEncoding.DecodeString(values.Get(kFieldSign)); err != nil {
return err
}
return verifier.VerifyValues(values, signBytes, nsign.WithIgnore(kFieldSign, kFieldSignType, kFieldAlyPayCertSN))
}
func (c *Client) getVerifier(certSN string) (verifier Verifier, err error) {
c.mu.Lock()
defer c.mu.Unlock()
if certSN == "" {
certSN = c.aliCertSN
}
verifier = c.verifiers[certSN]
if verifier == nil {
if !c.isProduction {
return nil, ErrAliPublicKeyNotFound
}
cert, err := c.downloadAliPayCert(certSN)
if err != nil {
return nil, err
}
pub, ok := cert.PublicKey.(*rsa.PublicKey)
if !ok {
return nil, ErrAliPublicKeyNotFound
}
verifier = c.loadVerifier(getCertSN(cert), pub)
}
return verifier, nil
}
func (c *Client) CertDownload(ctx context.Context, param CertDownload) (result *CertDownloadRsp, err error) {
err = c.doRequest(ctx, http.MethodPost, param, &result)
return result, err
}
func (c *Client) downloadAliPayCert(certSN string) (cert *x509.Certificate, err error) {
var param = CertDownload{}
param.AliPayCertSN = certSN
rsp, err := c.CertDownload(context.Background(), param)
if err != nil {
return nil, err
}
certBytes, err := base64.StdEncoding.DecodeString(rsp.AliPayCertContent)
if err != nil {
return nil, err
}
cert, err = ncrypto.DecodeCertificate(certBytes)
if err != nil {
return nil, err
}
return cert, nil
}
func (c *Client) sign(values url.Values) (signature string, err error) {
sBytes, err := c.signer.SignValues(values)
if err != nil {
return "", err
}
signature = base64.StdEncoding.EncodeToString(sBytes)
return signature, nil
}
func (c *Client) verify(certSN string, data, signature []byte) (err error) {
var verifier Verifier
if verifier, err = c.getVerifier(certSN); err != nil {
return err
}
if signature, err = base64decode(signature); err != nil {
return err
}
if err = verifier.VerifyBytes(data, signature); err != nil {
return err
}
return nil
}
func (c *Client) Request(ctx context.Context, param Param, result interface{}) (err error) {
return c.doRequest(ctx, http.MethodPost, param, result)
}
func (c *Client) BuildURL(param Param) (*url.URL, error) {
p, err := c.URLValues(param)
if err != nil {
return nil, err
}
return url.Parse(c.host + "?" + p.Encode())
}
func (c *Client) EncodeParam(param Param) (string, error) {
p, err := c.URLValues(param)
if err != nil {
return "", err
}
return p.Encode(), nil
}
func (c *Client) OnReceivedData(fn func(ctx context.Context, method string, data []byte)) {
c.onReceivedData = fn
}
func base64decode(data []byte) ([]byte, error) {
var dBuf = make([]byte, base64.StdEncoding.DecodedLen(len(data)))
n, err := base64.StdEncoding.Decode(dBuf, data)
return dBuf[:n], err
}
func getCertSN(cert *x509.Certificate) string {
var value = md5.Sum([]byte(cert.Issuer.String() + cert.SerialNumber.String()))
return hex.EncodeToString(value[:])
}