Pay.php
10.5 KB
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
<?php
namespace app\api\controller;
use app\api\model\OrderInfo;
use app\api\model\OrderMoney;
use EasyWeChat\Foundation\Application;
use EasyWeChat\Payment\Order;
use app\common\controller\Api;
use think\Db;
/**
* 微信支付,回调接口
* @ApiInternal
*/
class Pay extends Api
{
protected $options;
function _initialize()
{
parent::_initialize();
$this->options = [
'app_id' => config('app_id'),
'secret' => config('app_secret'),
'payment' => [
'merchant_id' => config('wx_mch_id'),
'key' => config('wx_pay_key'),
'cert_path' => 'wechat/cert/apiclient_cert.pem',
'key_path' => 'wechat/cert/apiclient_key.pem',
],
];
}
/**
* 微信支付
*/
public function wx_pay($out_trade_no,$body,$total,$notify_url,$openid){
$attributes = [
'trade_type' => 'JSAPI',
'body' => $body,
'out_trade_no' => $out_trade_no,
'total_fee' => $total*100, // 单位:分
'notify_url' => url($notify_url,'','',true), // 支付结果通知网址,如果不设置则会使用配置里的默认地址
'openid' => $openid, // trade_type=JSAPI,此参数必传,用户在商户appid下的唯一标识,
];
$order = new Order($attributes);
$app = new Application($this->options);
$payment = $app->payment;
$result = $payment->prepare($order);
if($result['return_code'] == 'SUCCESS') {
if ($result['result_code'] == 'SUCCESS') {
$prepayId = $result->prepay_id;
$config = $payment->configForJSSDKPayment($prepayId);
$arr = array(
'timeStamp'=>$config['timestamp'],
'nonceStr'=>$config['nonceStr'],
'package'=>$config['package'],
'signType'=>'MD5',
'paySign'=>$config['paySign'],
);
return json_encode($arr);
}else{
return $result['err_code_des'];
}
}else{
return $result['return_msg'];
}
}
/**
* 支付回调
* @throws \EasyWeChat\Core\Exceptions\FaultException
*/
public function notify(){
$app = new Application($this->options);
$response = $app->payment->handleNotify(function($notify, $successful){
// 使用通知里的 "微信支付订单号" 或者 "商户订单号" 去自己的数据库找到订单
$out_trade_no=$notify->out_trade_no;
// $out_trade_no=2020042997514852;
$orderModel = new \app\api\model\Order();
$order = $orderModel->findData(['order_num'=>$out_trade_no]);
if (!$order) { // 如果订单不存在
return 'Order not exist.'; // 告诉微信,我已经处理完了,订单没找到,别再通知我了
}
// 如果订单存在
// 检查订单是否已经更新过支付状态
if ($order['status'] != 1) { // 判断是否已经支付
return true; // 已经支付成功了就不再更新了
}
// 用户是否支付成功
if ($successful) {
$orderInfoModel = new OrderInfo();
$goodsList = $orderInfoModel->where('order_id', $order['id'])->field('goods_id,number,ch_goods_name,type,score')->select();
$orderModel->notify($order['id'],$order['user_id'],$order['pay_total'],$goodsList);
}
return true; // 返回处理完成
});
$response->send();
}
/**
* 充值回调
* @throws \EasyWeChat\Core\Exceptions\FaultException
*/
public function recharge_notify(){
$app = new Application($this->options);
$response = $app->payment->handleNotify(function($notify, $successful){
// 使用通知里的 "微信支付订单号" 或者 "商户订单号" 去自己的数据库找到订单
$out_trade_no=$notify->out_trade_no;
$orderMoneyModel = new OrderMoney();
$order = $orderMoneyModel->where(['order_num'=>$out_trade_no])->find();
if (!$order) { // 如果订单不存在
return 'Order not exist.'; // 告诉微信,我已经处理完了,订单没找到,别再通知我了
}
// 如果订单存在
// 检查订单是否已经更新过支付状态
if ($order['status'] != 1) { // 判断是否已经支付
return true; // 已经支付成功了就不再更新了
}
// 用户是否支付成功
if ($successful) {
$userModel = new \app\api\model\User();
$userModel->recharge($out_trade_no);
}
return true; // 返回处理完成
});
$response->send();
}
/**
* 购买会员回调
* @throws \EasyWeChat\Core\Exceptions\FaultException
*/
public function buy_vip_notify(){
$app = new Application($this->options);
$response = $app->payment->handleNotify(function($notify, $successful){
// 使用通知里的 "微信支付订单号" 或者 "商户订单号" 去自己的数据库找到订单
$out_trade_no=$notify->out_trade_no;
$orderMoneyModel = new OrderMoney();
$order = $orderMoneyModel->where(['order_num'=>$out_trade_no])->find();
if (!$order) { // 如果订单不存在
return 'Order not exist.'; // 告诉微信,我已经处理完了,订单没找到,别再通知我了
}
// 如果订单存在
// 检查订单是否已经更新过支付状态
if ($order['status'] != 1) { // 判断是否已经支付
return true; // 已经支付成功了就不再更新了
}
// 用户是否支付成功
if ($successful) {
$userModel = new \app\api\model\User();
$userModel->buyVip($out_trade_no);
}
return true; // 返回处理完成
});
$response->send();
}
/**
* 续费会员回调
* @throws \EasyWeChat\Core\Exceptions\FaultException
*/
public function renew_vip_notify(){
$app = new Application($this->options);
// $response = $app->payment->handleNotify(function($notify, $successful){
// 使用通知里的 "微信支付订单号" 或者 "商户订单号" 去自己的数据库找到订单
// $out_trade_no=$notify->out_trade_no;
$out_trade_no=20200511515410295;
$orderMoneyModel = new OrderMoney();
$order = $orderMoneyModel->where(['order_num'=>$out_trade_no])->find();
if (!$order) { // 如果订单不存在
return 'Order not exist.'; // 告诉微信,我已经处理完了,订单没找到,别再通知我了
}
// 如果订单存在
// 检查订单是否已经更新过支付状态
if ($order['status'] != 1) { // 判断是否已经支付
return true; // 已经支付成功了就不再更新了
}
// 用户是否支付成功
// if ($successful) {
$userModel = new \app\api\model\User();
$userModel->renewVip($out_trade_no);
// }
return true; // 返回处理完成
// });
// $response->send();
}
/**
* 查询订单
*/
public function checkOrder(){
$app = new Application($this->options);
$payment = $app->payment;
$orderNo = "20200509101541001";//商户系统内部的订单号(out_trade_no)
$result=$payment->query($orderNo);
var_dump($result);
}
/**
* 退款
*/
public function refund($orderNo,$total){
$app = new Application($this->options);
$payment = $app->payment;
//使用商户订单号退款 PS.其他形式参考文档
// $orderNo = "2020060610056519";//商户系统内部的订单号(out_trade_no)
$refundNo = get_order_num().'3';//退款单号
$result = json_decode($payment->refund($orderNo, $refundNo, $total*100),true); // 总金额 100, 退款 80,refundFee可选(为空时全额退款)
if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS'){
$orderModel = new \app\api\model\Order();
$res = $orderModel->orderRefund($orderNo,$refundNo);
if ($res) return true;
else return false;
}
}
/**
* 查询退款
*/
public function checkRefund(){
$app = new Application($this->options);
$payment = $app->payment;
$outTradeNo="2018080210097519";//商户系统内部的订单号(out_trade_no)
$result = $payment->queryRefund($outTradeNo);
var_dump($result);
}
/**
* 退款结果回调
*/
public function refundNotify() {
cache('test',123123);
$app = new Application($this->options);
$response = $app->payment->handleRefundNotify(function ($message, $reqInfo) {
cache('message',$message);
cache('reqInfo',$reqInfo);
// 其中 $message['req_info'] 获取到的是加密信息
// $reqInfo 为 message['req_info'] 解密后的信息
// 你的业务逻辑...
return true; // 返回 true 告诉微信“我已处理完成”
// 或返回错误原因 $fail('参数格式校验错误');
});
$response->send();
}
/**
* 提现
*/
public function merchantPay($openid,$user_name,$price,$desc){
$app = new Application($this->options);
$merchantPay = $app->merchant_pay;
$merchantPayData = [
'partner_trade_no' => get_order_num().'2', //随机字符串作为订单号
'openid' => $openid, //收款人的openid
'check_name' => 'NO_CHECK', //文档中有三种校验实名的方法 NO_CHECK OPTION_CHECK FORCE_CHECK
're_user_name'=>$user_name, //OPTION_CHECK FORCE_CHECK 校验实名的时候必须提交
'amount' => $price*100, //单位为分
'desc' => $desc,
'spbill_create_ip' => $this->request->ip(0,true), //发起交易的IP地址
];
$result = $merchantPay->send($merchantPayData);
return $result;
}
}