最近因为项目重构的原因,对百度支付重新进行了编写封装,本次重写,添加了对签名的处理、添加用户退款,方便之后开发的使用。
因为百度电商开放平台的升级,支付功能已移至智能小程序内部,具体申请流程:百度收银台低价接各类项目系统搭建点我wcqh.cn支付开通指引,(https://smartprogram.baidu.com/docs/operations/transform/pay/)
(注:在支付服务中,服务电话应填写银行预留手机号,如填写错误低价接各类项目系统搭建点我wcqh.cn报【银行预留手机号码格式校验不通过】)
百度支付文档:百度收银台接口2.0(https://smartprogram.baidu.com/docs/develop/function/tune_up_2.低价接各类项目系统搭建点我wcqh.cn0/)
一、申请通过后,填写百度支付相关配置:
1
2
3
4
5
6
7
$config = array(
'deal_id' => '', // 百度收银台的财务结算凭证
&低价接各类项目系统搭建点我wcqh.cn#39;app_key' => '', // 表示应用身份的唯一ID
'private_key' => '', // 私钥原始字符低价接各类项目系统搭建点我wcqh.cn串
'public_key' => '', // 平台公钥
'notify_url' => '', // 支付回调地址
);
二、调用封装的支付方法,将返回信息,传递到百度小程序
1
2
3
4
5
6
7
8
9
10
11
12
<?php
include './BaiduPay.php';
$baidupay = new \fe低价接各类项目系统搭建点我wcqh.cnng\BaiduPay($config);
$order_sn = time().rand(1000,9999);
$order = array(
'body' => &#低价接各类项目系统搭建点我wcqh.cn39;测试商品', // 产品描述
'total_amount' => '1', // 订单金额(分)
'order_sn' => $o低价接各类项目系统搭建点我wcqh.cnrder_sn, // 订单编号
);
$re = $baidupay->xcxPay($order);
die(json_encode($re)); // JSON化直接返回小程序客户端
PHP
小低价接各类项目系统搭建点我wcqh.cn程序支付类 xcxPay:
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
* [xcxPay 百度小程序支付]
* @param [type] $order [订单信息数组]
* @return [type] 低价接各类项目系统搭建点我wcqh.cn [description]
* $order = array(
* 'body' => '', // 产品描述
* 低价接各类项目系统搭建点我wcqh.cn9;total_amount' => '', // 订单金额(分)
* 'order_sn' => '', // 订单编号
*/
public static function xcxPay($order)
{
if(!is_array($order) || count($order) < 3)
die(“数组数据信息缺失!”低价接各类项目系统搭建点我wcqh.cn);
$config = self::$config;
$requestParamsArr = array(
'appKey' => $config['app_key'低价接各类项目系统搭建点我wcqh.cn],
'dealId' => $config['deal_id'],
'tpOrderId' => $order['order_sn'低价接各类项目系统搭建点我wcqh.cn],
'totalAmount' => $order['total_amount'],
);
$rsaSign = self::makeSign($requestParams低价接各类项目系统搭建点我wcqh.cnArr, $config['private_key']); // 声称百度支付签名
$bizInfo = array(
'tpData' => array(
“appKey低价接各类项目系统搭建点我wcqh.cn” => $config['app_key'],
“dealId” => $config['deal_id'],
“tpOrderId” 低价接各类项目系统搭建点我wcqh.cn => $order['order_sn'],
“rsaSign” => $rsaSign,
“totalAmount” => $order['total_amou低价接各类项目系统搭建点我wcqh.cnnt'],
“returnData” => '',
“displayData” => array(
“cashierTopBlock” => array(
array(
[ “低价接各类项目系统搭建点我wcqh.cnleftCol” => “订单名称”, “rightCol” => $order['body'] ],
[ “leftCol” => “数量”, “rightCol” => “1” 低价接各类项目系统搭建点我wcqh.cn],
[ “leftCol” => “订单金额”, “rightCol” => $order['total_amount'] ]
),
array(
[ “leftCol” => “服务地低价接各类项目系统搭建点我wcqh.cn址”, “rightCol” => “北京市海淀区上地十街10号百度大厦” ],
[ “leftCol” => “服务时间”, “rightCol” => “2018/10/29 14:51” ],
[ 低价接各类项目系统搭建点我wcqh.cn“leftCol” => “服务人员”, “rightCol” => “百度App” ]
)
)
),
“dealTitle” => $order['body'],
“dealSubTi低价接各类项目系统搭建点我wcqh.cntle” => $order['body'],
“dealThumbView” => “https://b.bdstatic.com/searchbox/icms/searchbox/低价接各类项目系统搭建点我wcqh.cnimg/swan-logo.png”,
),
“orderDetailData” => ''
);
$bdOrder = array(
'dealId' => 低价接各类项目系统搭建点我wcqh.cn$config['deal_id'],
'appKey' => $config['app_key'],
'totalAmount低价接各类项目系统搭建点我wcqh.cn9; => $order['total_amount'],
'tpOrderId' => $order['order_sn'],
'de低价接各类项目系统搭建点我wcqh.cnalTitle' => $order['body'],
'signFieldsRange' => 1,
'rsaSign' =>低价接各类项目系统搭建点我wcqh.cn $rsaSign,
'bizInfo' => json_encode($bizInfo),
);
return $bdOrder;
}
三、百度智能小程序端的使用
1
2
3
4
5
6
<view class=”wrap”>
<view class=”card-area”>
<button bind:tap=”requestPolymerPayment” type=”prim低价接各类项目系统搭建点我wcqh.cnary” hover-stop-propagation=”true”>支付0.01元</button>
</view>
</view>
HTML
JS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Page({
requestPolymerPayment(e) {
swan.request({
url: '低价接各类项目系统搭建点我wcqh.cn;https://mbd.baidu.com/xxx', // 仅为示例,并非真实的接口地址,开发者从真实接口获取orderInfo的值
success: res => {
res.data.da低价接各类项目系统搭建点我wcqh.cnta.dealTitle = '百度小程序Demo支付测试';
let data = res.data;
if (data.errno !== 0) {
console.log('c低价接各类项目系统搭建点我wcqh.cnreate order err', data);
return;
}
swan.requestPolymerPayment({
orderInfo: data.data,
success: res =>低价接各类项目系统搭建点我wcqh.cn {
swan.showToast({
title: '支付成功',
icon: 'success'
});
console.log('pay success',低价接各类项目系统搭建点我wcqh.cn res);
},
fail: err => {
swan.showToast({
title: err.errMsg,
icon: 'none'
});
console.log('pay 低价接各类项目系统搭建点我wcqh.cnfail', err);
}
});
},
fail: err => {
swan.showToast({
title: '订单创建失败',
icon: 'none'
});
c低价接各类项目系统搭建点我wcqh.cnonsole.log('create order fail', err);
}
});
}
});
四、支付回调
1
2
3
4
5
6
7
8
9
10
11
12
<?php
include './B低价接各类项目系统搭建点我wcqh.cnaiduPay.php';
$baidupay = new \feng\BaiduPay($config);
$re = $baidupay->notify();
if ($re) {
// 这里回调低价接各类项目系统搭建点我wcqh.cn处理订单操作
// 以验证返回支付成功后的信息,可直接对订单进行操作,已通知微信支付成功
$baidupay->success(); // 支付返还成功,通知结果
} else {
// 支付失败
$baidu低价接各类项目系统搭建点我wcqh.cnpay->error(); // 支付失败,返回状态(无论支付成功与否都需要通知百度)
}
百度完整支付类(BaiduPay.php),包含小程序支付、验签、回调、退款:
1
2
3
4
5
6
7
8
9
10
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
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
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
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
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
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
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
275
276
277
278
279
<?php
/**
* @Author: [FENG] <1161634940@qq.com>
* @Date: 2020-09-27T16:28:31+08:00
* 低价接各类项目系统搭建点我wcqh.cn@Last Modified by: [FENG] <1161634940@qq.com>
* @Last Modified time: 2020-10-15T10:23:07+08:00
*/
nam低价接各类项目系统搭建点我wcqh.cnespace feng;
class BaiduPay
{
private static $config = array(
'deal_id' => '', // 低价接各类项目系统搭建点我wcqh.cn百度收银台的财务结算凭证
'app_key' => '', // 表示应用身份的唯一ID
'private_key' => '低价接各类项目系统搭建点我wcqh.cn9;, // 私钥原始字符串
'public_key' => '', // 平台公钥
'notify_url' => '', /低价接各类项目系统搭建点我wcqh.cn/ 支付回调地址
);
/**
* [__construct 构造函数]
* @param [type] $config [传递支付相关配置]
*/
public function __construct($co低价接各类项目系统搭建点我wcqh.cnnfig=NULL){
$config && self::$config = $config;
}
/**
* [xcxPay 百度小程序支付]
* @param [type] $order [订单信息数组低价接各类项目系统搭建点我wcqh.cn]
* @return [type] [description]
* $order = array(
* 'body' => ''低价接各类项目系统搭建点我wcqh.cn, // 产品描述
* 'total_amount' => '', // 订单金额(分)
* 'order_sn' => &低价接各类项目系统搭建点我wcqh.cn#39;', // 订单编号
* );
*/
public static function xcxPay($order)
{
if(!is_array($order) || count($order) 低价接各类项目系统搭建点我wcqh.cn< 3)
die(“数组数据信息缺失!”);
$config = self::$config;
$requestParamsArr = array(
'appKey' => $confi低价接各类项目系统搭建点我wcqh.cng['app_key'],
'dealId' => $config['deal_id'],
'tpOrderId' => $order低价接各类项目系统搭建点我wcqh.cn['order_sn'],
'totalAmount' => $order['total_amount'],
);
$rsaSign = self::make低价接各类项目系统搭建点我wcqh.cnSign($requestParamsArr, $config['private_key']); // 声称百度支付签名
$bizInfo = array(
'tpData低价接各类项目系统搭建点我wcqh.cn9; => array(
“appKey” => $config['app_key'],
“dealId” => $config['deal_id低价接各类项目系统搭建点我wcqh.cn9;],
“tpOrderId” => $order['order_sn'],
“rsaSign” => $rsaSign,
“totalAmount” => $or低价接各类项目系统搭建点我wcqh.cnder['total_amount'],
“returnData” => '',
“displayData” => array(
“cashierTopBlock”低价接各类项目系统搭建点我wcqh.cn => array(
array(
[ “leftCol” => “订单名称”, “rightCol” => $order['body'] ],
[ “leftCol” => “数量”,低价接各类项目系统搭建点我wcqh.cn “rightCol” => “1” ],
[ “leftCol” => “订单金额”, “rightCol” => $order['total_amount'] ]
),
array(低价接各类项目系统搭建点我wcqh.cn
[ “leftCol” => “服务地址”, “rightCol” => “北京市海淀区上地十街10号百度大厦” ],
[ “leftCol” => “服务时间”, “rightCol” => “201低价接各类项目系统搭建点我wcqh.cn8/10/29 14:51″ ],
[ “leftCol” => “服务人员”, “rightCol” => “百度App” ]
)
)
),
“dealTitle” => $order['bo低价接各类项目系统搭建点我wcqh.cndy'],
“dealSubTitle” => $order['body'],
“dealThumbView” => “https://b.bdstatic.com/search低价接各类项目系统搭建点我wcqh.cnbox/icms/searchbox/img/swan-logo.png”,
),
“orderDetailData” => ''
);
$bdOrder = array(
'dea低价接各类项目系统搭建点我wcqh.cnlId' => $config['deal_id'],
'appKey' => $config['app_key'],低价接各类项目系统搭建点我wcqh.cn
'totalAmount' => $order['total_amount'],
'tpOrderId' => $order['ord低价接各类项目系统搭建点我wcqh.cner_sn'],
'dealTitle' => $order['body'],
'signFieldsRange' => 1,
'rs低价接各类项目系统搭建点我wcqh.cnaSign' => $rsaSign,
'bizInfo' => json_encode($bizInfo),
);
return $bdOrder;
}
* [refund baidu支付退款]
* @param [type] $order [订单信息]
* @param [type] $type [退款类型]
* $order = array(
* 低价接各类项目系统搭建点我wcqh.cn 'body' => '', // 退款原因
* 'total_amount' => '', // 退低价接各类项目系统搭建点我wcqh.cn款金额(分)
* 'order_sn' => '', // 订单编号
* 'access_token' => '&#低价接各类项目系统搭建点我wcqh.cn39;, // 获取开发者服务权限说明
* 'order_id' => '', // 百度收银台订单 ID
* 'user_id低价接各类项目系统搭建点我wcqh.cn9; => '', // 百度收银台用户 id
* );
*/
public static function refund($order=[], $type=1)
{
$config低价接各类项目系统搭建点我wcqh.cn = self::$config;
$data = array(
'access_token' => $order['access_token'], // 获取开低价接各类项目系统搭建点我wcqh.cn发者服务权限说明
'applyRefundMoney' => $order['total_amount'], // 退款金额,单位:分。
'bizRefundBa低价接各类项目系统搭建点我wcqh.cntchId' => $order['order_sn'], // 开发者退款批次
'isSkipAudit' => 1, // 是否跳过审核,不需要低价接各类项目系统搭建点我wcqh.cn百度请求开发者退款审核请传 1,默认为0; 0:不跳过开发者业务方审核;1:跳过开发者业务方审核。
'orderId' => $order['order_id低价接各类项目系统搭建点我wcqh.cn'], // 百度收银台订单 ID
'refundReason' => $order['body'], // 退款原因
'refundType&#低价接各类项目系统搭建点我wcqh.cn39; => $type, // 退款类型 1:用户发起退款;2:开发者业务方客服退款;3:开发者服务异常退款。
'tpOrderId' => $order低价接各类项目系统搭建点我wcqh.cn['order_sn'], // 开发者订单 ID
'userId' => $order['user_id'], // 百度收银台用低价接各类项目系统搭建点我wcqh.cn户 id
);
$array = ['errno'=>0, 'msg'=>'success', 'data'=> ['isConsu低价接各类项目系统搭建点我wcqh.cnmed'=>2] ];
$url = 'https://openapi.baidu.com/rest/2.0/smartapp/pay/paymentservice/applyOrder低价接各类项目系统搭建点我wcqh.cnRefund';
$response = self::post_curl($url, $data);
$result = json_decode($response, true);
// // 显示低价接各类项目系统搭建点我wcqh.cn错误信息
// if ($result['msg']!='success') {
// return false;
// // die($result[低价接各类项目系统搭建点我wcqh.cn9;msg']);
// }
return $result;
}
/**
* [notify 回调验证]
* @return [array] [返回数组格式的notify数据]
*/
public stati低价接各类项目系统搭建点我wcqh.cnc function notify()
{
$data = $_POST; // 获取xml
$config = self::$config;
if (!$data || empty($data['r低价接各类项目系统搭建点我wcqh.cnsaSign']))
die('暂无回调信息');
$result = self::checkSign($data, $config['public_key']);低价接各类项目系统搭建点我wcqh.cn // 进行签名验证
// 判断签名是否正确 判断支付状态
if ($result && $data['status']==2) {
return $data;
} else {
return低价接各类项目系统搭建点我wcqh.cn false;
}
}
/**
* [success 通知支付状态]
*/
public static function success()
{
$array = ['errno'=>0, '低价接各类项目系统搭建点我wcqh.cnmsg'=>'success', 'data'=> ['isConsumed'=>2] ];
die(json_encode($array));
/**
* [error 通知支付状态]
*/
public static function error()
{
$array = ['errno'=>0, 'msg'=>低价接各类项目系统搭建点我wcqh.cn9;success', 'data'=> ['isErrorOrder'=>1, 'isConsumed'=>2] ];
die(json_enc低价接各类项目系统搭建点我wcqh.cnode($array));
}
/**
* [makeSign 使用私钥生成签名字符串]
* @param array $assocArr [入参数组]
* @param [type] $rsaP低价接各类项目系统搭建点我wcqh.cnriKeyStr [私钥原始字符串,不含PEM格式前后缀]
* @return [type] [签名结果字符串]
*/
public static function makeSi低价接各类项目系统搭建点我wcqh.cngn(array $assocArr, $rsaPriKeyStr)
{
$sign = '';
if (empty($rsaPriKeyStr) || empty($assocArr)) 低价接各类项目系统搭建点我wcqh.cn{
return $sign;
}
if (!function_exists('openssl_pkey_get_private') || !function_exists('ope低价接各类项目系统搭建点我wcqh.cnnssl_sign')) {
throw new Exception(“openssl扩展不存在”);
}
$rsaPriKeyPem = self::convertRSAKeyStr2Pem($r低价接各类项目系统搭建点我wcqh.cnsaPriKeyStr, 1);
$priKey = openssl_pkey_get_private($rsaPriKeyPem);
if (isset($assocArr['sign'低价接各类项目系统搭建点我wcqh.cn])) {
unset($assocArr['sign']);
}
ksort($assocArr); // 参数按字典顺序排序
$parts = array();
foreach ($asso低价接各类项目系统搭建点我wcqh.cncArr as $k => $v) {
$parts[] = $k . '=' . $v;
}
$str = implode('&', $parts);
openssl_sig低价接各类项目系统搭建点我wcqh.cnn($str, $sign, $priKey);
openssl_free_key($priKey);
return base64_encode($sign);
}
/**
* [checkSign 使用公钥校低价接各类项目系统搭建点我wcqh.cn验签名]
* @param array $assocArr [入参数据,签名属性名固定为rsaSign]
* @param [type] $rsaPubKeyStr [公钥原始字符串,不含P低价接各类项目系统搭建点我wcqh.cnEM格式前后缀]
* @return [type] [验签通过|false 验签不通过]
*/
public static function checkSign(array $a低价接各类项目系统搭建点我wcqh.cnssocArr, $rsaPubKeyStr)
{
if (!isset($assocArr['rsaSign']) || empty($assocArr) || empty($rsaPu低价接各类项目系统搭建点我wcqh.cnbKeyStr)) {
return false;
}
if (!function_exists('openssl_pkey_get_public') || !function_exists低价接各类项目系统搭建点我wcqh.cn('openssl_verify')) {
throw new Exception(“openssl扩展不存在”);
}
$sign = $assocArr['rsaSign'低价接各类项目系统搭建点我wcqh.cn;];
unset($assocArr['rsaSign']);
if (empty($assocArr)) {
return false;
}
ksort($assocArr); // 参数按低价接各类项目系统搭建点我wcqh.cn字典顺序排序
$parts = array();
foreach ($assocArr as $k => $v) {
$parts[] = $k . '=' . $v;
}
$str = imp低价接各类项目系统搭建点我wcqh.cnlode('&', $parts);
$sign = base64_decode($sign);
$rsaPubKeyPem = self::convertRSAKeyStr2Pem($r低价接各类项目系统搭建点我wcqh.cnsaPubKeyStr);
$pubKey = openssl_pkey_get_public($rsaPubKeyPem);
$result = (bool)openssl_verify($str, $低价接各类项目系统搭建点我wcqh.cnsign, $pubKey);
openssl_free_key($pubKey);
return $result;
}
/**
* [convertRSAKeyStr2Pem 将密钥由字符串(不换行)转为PE低价接各类项目系统搭建点我wcqh.cnM格式]
* @param [type] $rsaKeyStr [原始密钥字符串]
* @param integer $keyType [0 公钥|1 私钥,默认0]
* @return [typ低价接各类项目系统搭建点我wcqh.cne] [PEM格式密钥]
*/
public static function convertRSAKeyStr2Pem($rsaKeyStr, $keyType = 0)
{
$pem低价接各类项目系统搭建点我wcqh.cnWidth = 64;
$rsaKeyPem = '';
$begin = '—–BEGIN ';
$end = '—–END ';
$key = 低价接各类项目系统搭建点我wcqh.cn' KEY—–';
$type = $keyType ? 'RSA PRIVATE' : 'PUBLIC';
$keyPrefix = $begin 低价接各类项目系统搭建点我wcqh.cn. $type . $key;
$keySuffix = $end . $type . $key;
$rsaKeyPem .= $keyPrefix . “\n”;
$rsaKeyPem .= wordwr低价接各类项目系统搭建点我wcqh.cnap($rsaKeyStr, $pemWidth, “\n”, true) . “\n”;
$rsaKeyPem .= $keySuffix;
if (!function_exists('open低价接各类项目系统搭建点我wcqh.cnssl_pkey_get_public') || !function_exists('openssl_pkey_get_private')) {
return false;
}
if低价接各类项目系统搭建点我wcqh.cn ($keyType == 0 && false == openssl_pkey_get_public($rsaKeyPem)) {
return false;
}
if ($keyType == 1 &&低价接各类项目系统搭建点我wcqh.cn false == openssl_pkey_get_private($rsaKeyPem)) {
return false;
}
return $rsaKeyPem;
}
/**
* curl post请求
* 低价接各类项目系统搭建点我wcqh.cn@param string $url 地址
* @param string $postData 数据
* @param array $header 头部
* @return bool|string
* @Da低价接各类项目系统搭建点我wcqh.cnte 2020/9/17 17:12
* @Author wzb
*/
public static function post_curl($url='',$postData='低价接各类项目系统搭建点我wcqh.cn9;,$header=[]){
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch低价接各类项目系统搭建点我wcqh.cn, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 低价接各类项目系统搭建点我wcqh.cntrue);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5000);
curl_setopt($ch, CURLOPT_TIMEOUT, 5000);
if($hea低价接各类项目系统搭建点我wcqh.cnder){
curl_setopt($ch, CURLOPT_HTTPHEADER,$header);
}
curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
$低价接各类项目系统搭建点我wcqh.cnresult = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
$curlErrNo = curl_errno($c低价接各类项目系统搭建点我wcqh.cnh);
$curlErr = curl_error($ch);
curl_close($ch);
return $result;
}
}
以上就是重新对百度支付进行编写封装(百度智能小程序支付)的详细内低价接各类项目系统搭建点我wcqh.cn容,更多请关注php中文网其它相关文章!
暂无评论内容