erp/app/api/controller/PayController.php

92 lines
2.9 KiB
PHP

<?php
namespace app\api\controller;
use app\common\enum\PayEnum;
use app\common\logic\PayNotifyLogic;
use app\common\model\retail\Cashierclass;
use app\common\service\pay\PayService;
use support\Log;
/**
* 支付
* Class PayController
* @package app\api\controller
*/
class PayController extends BaseApiController
{
public $notNeedLogin = ['notifyMnp','alipay_return','alipay_notify'];
/**
* @notes 小程序支付回调
*/
public function notifyMnp()
{
$app=new PayService(1);
$result = $app->wechat->callback(Request()->post());
if($result && $result->event_type=='TRANSACTION.SUCCESS'){
$ciphertext=$result->resource['ciphertext'];
if ($ciphertext['trade_state'] === 'SUCCESS') {
$extra['transaction_id'] = $ciphertext['transaction_id'];
$attach = $ciphertext['attach'];
switch ($attach) {
case 'cashierclass':
PayNotifyLogic::handle('cashierclass', $ciphertext['out_trade_no'], $ciphertext);
$app->wechat->success();
break;
}
}
}
}
/**
* @notes 查询订单支付状态
*/
public function wechatQuery(){
$order_no=$this->request->get('order_no');
$order = [
'out_trade_no' => $order_no,
];
$app=new PayService(0);
$res = $app->wechat->query($order);
if ($res['trade_state'] == 'SUCCESS' && $res['trade_state_desc'] == '支付成功') {
PayNotifyLogic::handle('cashierclass', $res['out_trade_no'], $res);
return $this->success('支付成功');
}else{
return $this->fail('订单支付中');
}
}
/**
* 支付宝同步回调地址
*/
public function alipay_return(){
$app=new PayService();
$result = $app->alipay->callback(Request()->post());
Log::error('支付宝同步回调',$result->toArray());
// if($result && $result->event_type=='TRANSACTION.SUCCESS'){
// $ciphertext=$result->resource['ciphertext'];
// if ($ciphertext['trade_state'] === 'SUCCESS') {
// $extra['transaction_id'] = $ciphertext['transaction_id'];
// $attach = $ciphertext['attach'];
// switch ($attach) {
// case 'cashierclass':
// PayNotifyLogic::handle('cashierclass', $ciphertext['out_trade_no'], $ciphertext);
// $app->wechat->success();
// break;
// }
// }
// }
}
/**
* 支付宝异步回调地址
*/
public function alipay_notify(){
$app=new PayService();
$result = $app->alipay->callback(Request()->post());
Log::error('支付宝异步回调',$result->toArray());
}
}