WeChatPay.php 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\api\controller;
  15. use app\common\model\GiftOrder;
  16. use app\common\model\GoodsOrder;
  17. use app\common\model\ExchangeOrder;
  18. use app\common\service\OrderCallback;
  19. use EasyWeChat\Factory;
  20. use think\Controller;
  21. use think\Db;
  22. use think\Exception;
  23. use app\api\controller\Evaluate;
  24. use AlibabaCloud\Client\AlibabaCloud;
  25. use AlibabaCloud\Client\Exception\ClientException;
  26. use AlibabaCloud\Client\Exception\ServerException;
  27. /**
  28. * 微信支付管理类
  29. * Class WeChatPay
  30. * @package app\api\controller\WeChatPay
  31. */
  32. class WeChatPay extends Controller
  33. {
  34. //小程序微信支付(type为1时是货主端微信配置,type为2时是接单端微信配置)
  35. public static function wxPay($name='订单支付',$out_trade_no,$total_fee,$notify_url,$trade_type = 'JSAPI',$openid = ''){
  36. try{
  37. if(empty($out_trade_no) || empty($total_fee) || empty($notify_url)) return false;
  38. $parameter = [
  39. 'body' => $name,
  40. 'out_trade_no' => $out_trade_no,
  41. 'total_fee' => $total_fee*100,
  42. 'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
  43. 'trade_type' => $trade_type, // 请对应换成你的支付方式对应的值类型
  44. ];
  45. switch ($trade_type){
  46. case 'JSAPI':
  47. $app = Factory::payment(config('app.wx_pay'));
  48. break;
  49. case 'NATIVE':
  50. $app = Factory::payment(config('app.wx_pay'));
  51. break;
  52. case 'APP':
  53. $app = Factory::payment(config('app.app_wx'));
  54. break;
  55. }
  56. if($trade_type != 'APP') $parameter['openid'] = $openid;
  57. $result = $app->order->unify($parameter);
  58. $jssdk = $app->jssdk;
  59. if($trade_type == 'APP') {
  60. $config = $jssdk->appConfig($result['prepay_id']);
  61. }else{
  62. $config = $jssdk->sdkConfig($result['prepay_id']);
  63. }
  64. return ['code'=> $config ? 200 : 201 , 'config'=>$config,'msg'=>'ok'];
  65. }catch (\Exception $e){
  66. return ['code'=> 201,'config'=>[],'msg'=>$e->getMessage()];
  67. }
  68. }
  69. /**
  70. * 商城订单支付回调
  71. */
  72. public function goodsOrderNotify()
  73. {
  74. $app = Factory::payment(config('app.wx_pay'));
  75. $response = $app->handlePaidNotify(function ($message, $fail) {
  76. $this->payResultLog($message,'dd_goods_order');
  77. // 使用通知里的 "微信支付订单号" 或者 "商户订单号" 去自己的数据库找到订单
  78. $pay_no = $message['out_trade_no'];
  79. // 如果订单不存在 或者 订单已经支付过了 告诉微信,我已经处理完了,订单没找到,别再通知我了
  80. if ($message['result_code'] == 'SUCCESS') { // return_code 表示通信状态,不代表支付状态
  81. $order_info = GoodsOrder::with('orderItem')->where('pay_no',$pay_no)->find();
  82. if(!$order_info) return false;
  83. $order_info = $order_info->toArray();
  84. if($order_info['status'] != 0) return true;
  85. $back_res = OrderCallback::goodsOrderCallBack($order_info,1);// 支付完成后回调
  86. return $back_res['ret_val'];
  87. } else if ($message['return_code'] != 'SUCCESS'){
  88. return $fail('通信失败,请稍后再通知我');
  89. }
  90. });
  91. $response->send();
  92. }
  93. /**
  94. * 礼品定制订单回调
  95. */
  96. public function customOrderNotify()
  97. {
  98. $app = Factory::payment(config('app.wx_pay'));
  99. $response = $app->handlePaidNotify(function ($message, $fail) {
  100. $this->payResultLog($message,'dd_gift_order');
  101. // 使用通知里的 "微信支付订单号" 或者 "商户订单号" 去自己的数据库找到订单
  102. $pay_no = $message['out_trade_no'];
  103. // 如果订单不存在 或者 订单已经支付过了 告诉微信,我已经处理完了,订单没找到,别再通知我了
  104. if ($message['result_code'] == 'SUCCESS') { // return_code 表示通信状态,不代表支付状态
  105. $order_info = GiftOrder::where('pay_no',$pay_no)->find();
  106. if(!$order_info) return false;
  107. $order_info = $order_info->toArray();
  108. if($order_info['status'] != 0) return true;
  109. $back_res = OrderCallback::customOrderCallBack($order_info,1);// 支付完成后回调
  110. return $back_res['ret_val'];
  111. } else if ($message['return_code'] != 'SUCCESS'){
  112. return $fail('通信失败,请稍后再通知我');
  113. }
  114. });
  115. $response->send();
  116. }
  117. /**
  118. * 兑换商品订单支付回调
  119. */
  120. public function exchangeOrderNotify()
  121. {
  122. $app = Factory::payment(config('app.wx_pay'));
  123. $response = $app->handlePaidNotify(function ($message, $fail) {
  124. $this->payResultLog($message,'dd_exchange_order');
  125. // 使用通知里的 "微信支付订单号" 或者 "商户订单号" 去自己的数据库找到订单
  126. $pay_no = $message['out_trade_no'];
  127. // 如果订单不存在 或者 订单已经支付过了 告诉微信,我已经处理完了,订单没找到,别再通知我了
  128. if ($message['result_code'] == 'SUCCESS') { // return_code 表示通信状态,不代表支付状态
  129. $order_info = ExchangeOrder::where('pay_no',$pay_no)->find();
  130. if(!$order_info) return false;
  131. $order_info = $order_info->toArray();
  132. if($order_info['status'] != 0) return true;
  133. return OrderCallback::exchangeOrderCallBack($order_info,1);
  134. } else if ($message['return_code'] != 'SUCCESS'){
  135. return $fail('通信失败,请稍后再通知我');
  136. }
  137. });
  138. $response->send();
  139. }
  140. /**
  141. * 记录支付日志
  142. * @param $message
  143. * @param $table_name
  144. */
  145. public function payResultLog($message,$table_name)
  146. {
  147. // 回调记录
  148. $ret_arr = [];
  149. $ret_arr['transaction_id'] = isset($message['transaction_id']) ?$message['transaction_id']: '';
  150. $ret_arr['trade_no'] = isset($message['out_trade_no']) ?$message['out_trade_no']: '';
  151. $ret_arr['return_code'] = isset($message['return_code']) ?$message['return_code']: '';
  152. $ret_arr['result_code'] = isset($message['result_code']) ?$message['result_code']: '';
  153. $ret_arr['create_at'] = date('Y-m-d H:i:s');
  154. $ret_arr['order_table'] = $table_name;
  155. $ret_arr['result'] = json_encode($message);
  156. Db::name('order_pay_result')->insert($ret_arr);
  157. }
  158. }