forked from zhangrenyang/wechatpay-nodejs-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
151 lines (147 loc) · 5.06 KB
/
index.js
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
const { Certificate } = require("@fidm/x509");
const axios = require("axios");
const crypto = require("crypto");
const DEFAULT_AUTH_TYPE = "WECHATPAY2-SHA256-RSA2048";
const weixinPayAPI = axios.create({
baseURL: "https://api.mch.weixin.qq.com",
headers: { Accept: "application/json", "Content-Type": "application/json" },
});
function getSerialNo(publicKey) {
return Certificate.fromPEM(publicKey).serialNumber;
}
const CACHED_CERTIFICATES = {};
class WechatPay {
constructor({ appid, mchid, publicKey, privateKey, secretKey, authType }) {
this.appid = appid;
this.mchid = mchid;
this.publicKey = publicKey;
this.privateKey = privateKey;
this.secretKey = secretKey;
this.authType = authType || DEFAULT_AUTH_TYPE;
this.serial_no = getSerialNo(this.publicKey);
}
getHeaders(extraHeaders = {}) {
const nonce_str = Math.random().toString(36).substring(2, 17);
const timestamp = Math.floor(Date.now() / 1000).toString();
const signature = this.sign(method, url, nonce_str, timestamp, body);
const headers = {
Authorization: `${this.authType} mchid="${this.mchid}",nonce_str="${nonce_str}",timestamp="${timestamp}",serial_no="${this.serial_no}",signature="${signature}"`,
...extraHeaders,
};
return headers;
}
async request(method, url, body = {}, extraHeaders = {}) {
const headers = this.getHeaders(extraHeaders);
const responseData = await weixinPayAPI.request({
method,
url,
data: body,
headers,
});
return responseData.data;
}
sign(method, url, nonce_str, timestamp, body) {
let data = `${method}\n${url}\n${timestamp}\n${nonce_str}\n`;
data += method !== "GET" && body ? `${JSON.stringify(body)}\n` : "\n";
const sign = crypto.createSign("RSA-SHA256");
sign.update(data);
return sign.sign(this.privateKey, "base64");
}
async nativePayment(params) {
const url = "/v3/pay/transactions/native";
const requestParams = {
appid: this.appid,
mchid: this.mchid,
...params,
};
return await this.request("POST", url, requestParams);
}
async h5Payment(params) {
const url = "/v3/pay/transactions/h5";
const requestParams = {
appid: this.appid,
mchid: this.mchid,
...params,
};
return await this.request("POST", url, requestParams);
}
async fetchWechatPayPublicKey(serial) {
const publicKey = CACHED_CERTIFICATES[serial];
if (publicKey) {
return publicKey;
}
const url = "/v3/certificates";
const data = await this.request("GET", url);
data.data.forEach((item) => {
const certificate = this.decrypt(item.encrypt_certificate);
CACHED_CERTIFICATES[item.serial_no] =
Certificate.fromPEM(certificate).publicKey.toPEM();
});
return CACHED_CERTIFICATES[serial];
}
async verifySignature(params) {
const { timestamp, nonce, body, serial, signature } = params;
let publicKey = await this.fetchWechatPayPublicKey(serial);
const bodyStr = JSON.stringify(body);
const data = `${timestamp}\n${nonce}\n${bodyStr}\n`;
const verify = crypto.createVerify("RSA-SHA256");
verify.update(data);
return verify.verify(publicKey, signature, "base64");
}
decrypt(encrypted) {
const { ciphertext, associated_data, nonce } = encrypted;
const encryptedBuffer = Buffer.from(ciphertext, "base64");
const authTag = encryptedBuffer.subarray(encryptedBuffer.length - 16);
const encryptedData = encryptedBuffer.subarray(
0,
encryptedBuffer.length - 16
);
const decipher = crypto.createDecipheriv(
"aes-256-gcm",
this.secretKey,
nonce
);
decipher.setAuthTag(authTag);
decipher.setAAD(Buffer.from(associated_data));
const decrypted = Buffer.concat([
decipher.update(encryptedData),
decipher.final(),
]);
const decryptedString = decrypted.toString("utf8");
return decryptedString;
}
async queryOrder(params) {
const { out_trade_no } = params;
const url = `/v3/pay/transactions/out-trade-no/${out_trade_no}?mchid=${this.mchid}`;
return await this.request("GET", url);
}
async closeOrder(params) {
const { out_trade_no } = params;
const url = `/v3/pay/transactions/out-trade-no/${out_trade_no}/close`;
await this.request("POST", url, { mchid: this.mchid });
}
async combineH5Payment(params) {
const url = `/v3/combine-transactions/h5`;
return await this.request("POST", url, params);
}
async transferToWallet(params) {
const url = `/v3/transfer/batches`;
const serial_no = params?.wx_serial_no;
delete params.wx_serial_no;
return await this.request("POST", url, params, {
"Wechatpay-Serial": serial_no || this.serial_no,
});
}
async requestFundFlowBill(params) {
const { bill_date } = params;
const url = `/v3/bill/fundflowbill?bill_date=${bill_date}`;
return await this.request('GET', url);
}
// 查询退款
async queryRefund(params) {
const { out_refund_no } = params;
const url = `/v3/refund/domestic/refunds/${out_refund_no}`;
return await this.request("GET", url);
}
}
module.exports = WechatPay;