Notify.php
9.1 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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
<?php
namespace app\mobile\controller;
use think\Db;
use app\common\controller\Api;
use app\mobile\model\CourseOrder;
use app\mobile\model\SecretOrder;
use app\mobile\model\ScoreOrder;
use app\mobile\model\PackageOrder;
use addons\qiniu\library\Auth;
use app\common\model\Attachment;
/**
* 异步接口
* @ApiInternal
*/
class Notify extends Api
{
protected $noNeedLogin = ['*'];
protected $noNeedRight = ['*'];
public function _initialize()
{
parent::_initialize();
}
/**
* 课程---------------------------------------------------------------------
*/
public function notifyCourse()
{
$paytype = $this->request->param('paytype');
$pay = \addons\epay\library\Service::checkNotify($paytype);
if (!$pay) {
echo '签名错误';
return;
}
$data = $pay->verify();
try {
$payamount = $paytype == 'alipay' ? $data['total_amount'] : $data['total_fee'] / 100;
$out_trade_no = $data['out_trade_no'];
// 处理订单
$this->handleCourseOrder($out_trade_no,$payamount,$paytype);
} catch (Exception $e) {
}
echo $pay->success();
}
/**
* 课程-零元支付
*/
public function notifyCourseZero($out_trade_no,$payamount,$paytype)
{
Db::startTrans();
try {
$this->handleCourseOrder($out_trade_no,$payamount,$paytype);
Db::commit();
} catch (\think\exception\PDOException $e) {
Db::rollback();
$this->error($e->getMessage());
return false;
} catch (\think\Exception $e) {
Db::rollback();
$this->error($e->getMessage());
return false;
}
return true;
}
/**
* 课程-处理订单
*/
private function handleCourseOrder($out_trade_no,$payamount,$paytype){
// 处理订单逻辑
$order = CourseOrder::get(['order_sn'=>$out_trade_no,'pay_price'=>$payamount,'pay_type'=>$paytype]);
if($order && $order['pay_status'] != '1'){
$order->save(['pay_status'=>'1','pay_time'=>time()]);
// 学习人数加1
Db::name('mobile_course')->where('id',$order['course_id'])->setInc('study_num_real');
}
return true;
}
/**
* 密卷-----------------------------------------------------------------------
*/
public function notifySecret()
{
$paytype = $this->request->param('paytype');
$pay = \addons\epay\library\Service::checkNotify($paytype);
if (!$pay) {
echo '签名错误';
return;
}
$data = $pay->verify();
try {
$payamount = $paytype == 'alipay' ? $data['total_amount'] : $data['total_fee'] / 100;
$out_trade_no = $data['out_trade_no'];
//处理订单
$this->handleSecretOrder($out_trade_no,$payamount,$paytype);
} catch (Exception $e) {
}
echo $pay->success();
}
/**
* 密卷-零元支付
*/
public function notifySecretZero($out_trade_no,$payamount,$paytype)
{
Db::startTrans();
try {
$this->handleSecretOrder($out_trade_no,$payamount,$paytype);
Db::commit();
} catch (\think\exception\PDOException $e) {
Db::rollback();
$this->error($e->getMessage());
return false;
} catch (\think\Exception $e) {
Db::rollback();
$this->error($e->getMessage());
return false;
}
return true;
}
/**
* 密卷-处理订单
*/
private function handleSecretOrder($out_trade_no,$payamount,$paytype){
// 处理订单逻辑
$order = SecretOrder::get(['order_sn'=>$out_trade_no,'pay_price'=>$payamount,'pay_type'=>$paytype]);
if($order && $order['pay_status'] != '1'){
$order->save(['pay_status'=>'1','pay_time'=>time()]);
// 购买量加1
Db::name('mobile_secret')->where('id',$order['course_id'])->setInc('buy_num_real');
}
return true;
}
/**
* 积分----------------------------------------------------------------------
*/
public function notifyScore()
{
$paytype = $this->request->param('paytype');
$pay = \addons\epay\library\Service::checkNotify($paytype);
if (!$pay) {
echo '签名错误';
return;
}
$data = $pay->verify();
try {
$payamount = $paytype == 'alipay' ? $data['total_amount'] : $data['total_fee'] / 100;
$out_trade_no = $data['out_trade_no'];
// 处理订单
$this->handleScoreOrder($out_trade_no,$payamount,$paytype);
} catch (Exception $e) {
}
echo $pay->success();
}
/**
* 积分-零元支付
*/
public function notifyScoreZero($out_trade_no,$payamount,$paytype)
{
Db::startTrans();
try {
$this->handleScoreOrder($out_trade_no,$payamount,$paytype);
Db::commit();
} catch (\think\exception\PDOException $e) {
Db::rollback();
$this->error($e->getMessage());
return false;
} catch (\think\Exception $e) {
Db::rollback();
$this->error($e->getMessage());
return false;
}
return true;
}
/**
* 积分-处理订单
*/
private function handleScoreOrder($out_trade_no,$payamount,$paytype){
// 处理订单逻辑
$order = ScoreOrder::get(['order_sn'=>$out_trade_no,'pay_price'=>$payamount,'pay_type'=>$paytype]);
if($order && $order['pay_status'] != '1'){
$order->save(['pay_status'=>'1','pay_time'=>time()]);
// 增加积分
\app\common\model\User::score($order['score'],$order['user_id'],'充值积分');
}
return true;
}
/**
* 企业套餐---------------------------------------------------------------------
*/
public function notifyPackage()
{
$paytype = $this->request->param('paytype');
$pay = \addons\epay\library\Service::checkNotify($paytype);
if (!$pay) {
echo '签名错误';
return;
}
$data = $pay->verify();
try {
$payamount = $paytype == 'alipay' ? $data['total_amount'] : $data['total_fee'] / 100;
$out_trade_no = $data['out_trade_no'];
// 处理订单逻辑
$this->handlePackageOrder($out_trade_no,$payamount,$paytype);
} catch (Exception $e) {
}
echo $pay->success();
}
/**
* 企业套餐-零元支付
*/
public function notifyPackageZero($out_trade_no,$payamount,$paytype)
{
Db::startTrans();
try {
$this->handlePackageOrder($out_trade_no,$payamount,$paytype);
Db::commit();
} catch (\think\exception\PDOException $e) {
Db::rollback();
$this->error($e->getMessage());
return false;
} catch (\think\Exception $e) {
Db::rollback();
$this->error($e->getMessage());
return false;
}
return true;
}
/**
* 企业套餐-处理订单
*/
private function handlePackageOrder($out_trade_no,$payamount,$paytype){
// 处理订单逻辑
$order = PackageOrder::get(['order_sn'=>$out_trade_no,'pay_price'=>$payamount,'pay_type'=>$paytype]);
if($order && $order['pay_status'] != '1'){
$order->save(['pay_status'=>'1','pay_time'=>time()]);
foreach ($order['package'] as $v){
// 购买量加1
Db::name('mobile_package')->where('id',$v['package_id'])->setInc('buy_num_real');
}
}
return true;
}
/**
* 七牛云音频转码通知回调
* @ApiInternal
*/
public function notifyQiniuAvthumb()
{
if($this->request->isPost()) {
$arr = $this->request->param();
// 判断七牛云回调code是否为完成
if(isset($arr['code']) && $arr['code'] == 0) {
$url = '/' . $arr['items'][0]['key'];
$info = Attachment::get(['url'=>$url]);
if(!$info){
$params = array(
'admin_id' => 0,
'user_id' => 0,
'filesize' => 0,
'imagewidth' => 0,
'imageheight' => 0,
'imagetype' => 'pcm',
'imageframes' => 0,
'mimetype' => 'application/octet-stream',
'extparam' => '',
'url' => $url,
'uploadtime' => time(),
'storage' => 'qiniu'
);
Attachment::create($params);
}
return json(['ret' => 'success', 'code' => 1, 'data' => ['url' => $url]]);
}
return json(['ret' => 'failed']);
}
}
}