Pay.php
10.4 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
<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2020/1/13
* Time: 11:31
*/
namespace app\api\controller;
use app\common\controller\Api;
use EasyWeChat\Foundation\Application;
use RongCloud\RongCloud;
use think\Db;
use EasyWeChat\Payment\Order;
use think\Log;
/**
* 支付回调(无需调用)
*/
class Pay extends Api
{
protected $options;
function _initialize()
{
parent::_initialize();
$this->options = [
'app_id' => config('app_id'),
'secret' => config('app_secrets'),
'payment' => [
'merchant_id' => config('wx_mch_id'),
'key' => config('wx_pay_key'),
'cert_path' => config('cert_path'),
'key_path' => config('key_path'),
],
];
}
/**
* 支付回调
* @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;
$order = Db::name('order')->where(['num'=>$out_trade_no])->find();
if (!$order) { // 如果订单不存在
return 'Order not exist.'; // 告诉微信,我已经处理完了,订单没找到,别再通知我了
}
// 如果订单存在
// 检查订单是否已经更新过支付状态
if ($order['status'] != 1) { // 判断是否已经支付
return true; // 已经支付成功了就不再更新了
}
//判断用户是否有邀请人
$invite = Db::name('user')->where('id',$order['user_id'])->find();
if(empty($invite['invite_id'])){
// 用户是否支付成功
if ($successful) {
Db::startTrans();
$update['status'] = 2;
$update['paytime'] = time();
$update['expirationtime'] = $update['paytime'] + 86400*7;
$update['finish_status'] = 1;
Db::name('teacher')->where('id',$order['teacher_id'])->setInc('help_num');
// 创建融云用户、群组
$teacher_id = Db::name('teacher')->where('id',$order['teacher_id'])->value('user_id');
$rongyun_chat = $this->rongyun_handle($order['user_id'].','.$teacher_id);
if($rongyun_chat) {
$update['chat_id'] = $rongyun_chat['chat_id'];
$update['chat_name'] = $rongyun_chat['chat_name'];
}
} else { // 用户支付失败
$update['status']=1;
}
Db::name('order')->where('num',$out_trade_no)->update($update);
Db::commit();
return true; // 返回处理完成
}else{
//判断邀请的用户是否第一次购买
$is_one = Db::name('order')->where('user_id',$order['user_id'])->where('status',2)->find();
if(empty($is_one)){
// 用户是否支付成功
if ($successful) {
Db::startTrans();
$update['status'] = 2;
$update['paytime'] = time();
$update['expirationtime'] = $update['paytime'] + 86400*7;
$update['finish_status'] = 1;
//查询优惠劵金额
$you = Db::name('setvalid')->where('id',1)->find();
$coupon['user_id'] = $invite['invite_id'];
$coupon['money'] = $you['money'];
$coupon['createtime'] = time();
$coupon['expirationtime'] = $coupon['createtime']+7*86400;
Db::name('coupon')->insertGetId($coupon);
Db::name('teacher')->where('id',$order['teacher_id'])->setInc('help_num');
// 创建融云用户、群组
$teacher_id = Db::name('teacher')->where('id',$order['teacher_id'])->value('user_id');
$rongyun_chat = $this->rongyun_handle($order['user_id'].','.$teacher_id);
if($rongyun_chat) {
$update['chat_id'] = $rongyun_chat['chat_id'];
$update['chat_name'] = $rongyun_chat['chat_name'];
}
} else { // 用户支付失败
$update['status']=1;
}
Db::name('order')->where('num',$out_trade_no)->update($update);
Db::commit();
return true; // 返回处理完成
}else{
// 用户是否支付成功
if ($successful) {
Db::startTrans();
$update['status'] = 2;
$update['paytime'] = time();
$update['expirationtime'] = $update['paytime'] + 86400*7;
$update['finish_status'] = 1;
Db::name('teacher')->where('id',$order['teacher_id'])->setInc('help_num');
// 创建融云用户、群组
$teacher_id = Db::name('teacher')->where('id',$order['teacher_id'])->value('user_id');
$rongyun_chat = $this->rongyun_handle($order['user_id'].','.$teacher_id);
if($rongyun_chat) {
$update['chat_id'] = $rongyun_chat['chat_id'];
$update['chat_name'] = $rongyun_chat['chat_name'];
}
} else { // 用户支付失败
$update['status']=1;
}
Db::name('order')->where('num',$out_trade_no)->update($update);
Db::commit();
return true; // 返回处理完成
}
}
});
$response->send();
}
/**
* 子订单支付回调
* @throws \EasyWeChat\Core\Exceptions\FaultException
*/
public function sonnotify(){
$app = new Application($this->options);
$response = $app->payment->handleNotify(function($notify, $successful){
// 使用通知里的 "微信支付订单号" 或者 "商户订单号" 去自己的数据库找到订单
$out_trade_no=$notify->out_trade_no;
$order = Db::name('sonorder')->where(['num'=>$out_trade_no])->find();
if (!$order) { // 如果订单不存在
return 'Order not exist.'; // 告诉微信,我已经处理完了,订单没找到,别再通知我了
}
// 如果订单存在
// 检查订单是否已经更新过支付状态
if ($order['status'] != 1) { // 判断是否已经支付
return true; // 已经支付成功了就不再更新了
}
// 用户是否支付成功
if ($successful) {
Db::startTrans();
$update['status'] = 2;
$update['paytime'] = time();
//查出父订单信息
$info = Db::name('order')
->where('id',$order['order_id'])
->find();
if($info['expirationtime'] > time()){
//未到过期时间
Db::name('order')
->where('id',$order['order_id'])
->update(['expirationtime'=>$info['expirationtime']+86400*7,'finish_status'=>1]);
}else{
Db::name('order')
->where('id',$order['order_id'])
->update(['expirationtime'=>$update['paytime'] + 86400*7,'finish_status'=>1]);
}
} else { // 用户支付失败
$update['status']=1;
}
Db::name('sonorder')->where('num',$out_trade_no)->update($update);
Db::commit();
return true; // 返回处理完成
});
$response->send();
}
// 融云创建用户、群组
public function rongyun_handle($user_ids) {
$config = config('rongyun.config'); // 应用配置参数
$RongSDK = new RongCloud($config['appkey'],$config['appsecret']);
$users = Db::name('user')->whereIn('id',$user_ids)->column('id,nickname,avatar,rongyun_id,is_create'); // 获取用户信息
if($users) {
$user_rongyun_ids = [];
$User = $RongSDK->getUser();
foreach ($users as $k=>$v) {
$user_rongyun_ids[] = [
'id' => $v['rongyun_id']
];
if($v['is_create'] == 0) {
// 创建新用户
$portrait = $v['avatar']; // 头像
$user_params = [
'id'=> $v['rongyun_id'],//用户id
'name'=> $v['nickname'],//用户名称
'portrait'=> $portrait //用户头像
];
$user_return = $User->register($user_params);
if($user_return['code'] == 200) {
Db::name('user')->where('id',$v['id'])->update(['is_create'=>1,'rongyun_token'=>$user_return['token']]); // 融云账号状态更新为已创建
}
Log::write(date('Y-m-d H:i') . '用户注册成功,返回结果:' . json_encode($user_return, JSON_UNESCAPED_UNICODE), 'rongyun_log');
}
}
// 创建群组
$chat_id = '';
$chat_name = '';
$Group = $RongSDK->getGroup();
$group_params = [
'id'=> $chat_id,//群组 id
'name'=> $chat_name,//群组名称
'members'=> $user_rongyun_ids //群成员 列表
];
$group_return = $Group->create($group_params);
Log::write(date('Y-m-d H:i') . '创建群组成功,返回结果:' . json_encode($group_return, JSON_UNESCAPED_UNICODE), 'rongyun_log');
return [
'chat_id' => $chat_id,
'chat_name' => $chat_name
];
}
return [];
}
}