Pay.php 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  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 EasyWeChat\Factory;
  16. use think\Controller;
  17. use think\Db;
  18. use think\Exception;
  19. use app\api\controller\Evaluate;
  20. use AlibabaCloud\Client\AlibabaCloud;
  21. use AlibabaCloud\Client\Exception\ClientException;
  22. use AlibabaCloud\Client\Exception\ServerException;
  23. use function AlibabaCloud\Client\value;
  24. /**
  25. * 支付管理类
  26. * Class Refund
  27. * @package app\api\controller\Refund
  28. */
  29. class Pay extends Controller
  30. {
  31. //小程序微信支付(type为1时是货主端微信配置,type为2时是接单端微信配置)
  32. public static function wxPay($name='订单支付',$out_trade_no,$total_fee,$notify_url,$trade_type = 'JSAPI',$openid,$type = 1){
  33. try{
  34. if(empty($out_trade_no) || empty($total_fee) || empty($notify_url)) return false;
  35. if($type == 1){
  36. $app = Factory::payment(config('app.wx_pay'));
  37. }else{
  38. $app = Factory::payment(config('app.worker_wx_pay'));
  39. }
  40. $parameter = array(
  41. 'body' => $name,
  42. 'out_trade_no' => $out_trade_no,
  43. 'total_fee' => $total_fee*100,
  44. 'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
  45. 'trade_type' => $trade_type, // 请对应换成你的支付方式对应的值类型
  46. );
  47. if($trade_type != 'APP'){
  48. $parameter['openid'] = $openid;
  49. }
  50. $result = $app->order->unify($parameter);
  51. $jssdk = $app->jssdk;
  52. $config = $jssdk->sdkConfig($result['prepay_id']);
  53. return $config;
  54. }catch (Exception $e){
  55. return false;
  56. }
  57. }
  58. /**
  59. * 商品订单支付回调
  60. */
  61. public function goodsOrderNotify()
  62. {
  63. $app = Factory::payment(config('app.wx_pay'));
  64. $response = $app->handlePaidNotify(function ($message, $fail) {
  65. $this->payResultLog($message,'goods_order');
  66. // 使用通知里的 "微信支付订单号" 或者 "商户订单号" 去自己的数据库找到订单
  67. $pay_no = $message['out_trade_no'];
  68. $order_info = Db::name('goods_order')->where('pay_no',$pay_no)->find();
  69. // 如果订单不存在 或者 订单已经支付过了 告诉微信,我已经处理完了,订单没找到,别再通知我了
  70. if ($message['result_code'] == 'SUCCESS') { // return_code 表示通信状态,不代表支付状态
  71. Db::startTrans();
  72. $goods_info = Db::table('store_goods')->find($order_info['goods_id']);
  73. $collect_num = Db::table('goods_collect')
  74. ->where(['goods_id'=>$goods_info['id']])
  75. ->where('status','in',[1,3])->count();
  76. $serial = intval($collect_num) + 1;
  77. $user_info =Db::table('store_member')->find( $order_info['uid']);
  78. $collect_info = [
  79. 'user_id'=> $order_info['uid'],
  80. 'goods_id'=> $order_info['goods_id'],
  81. 'goods_cover'=> $order_info['goods_cover'],
  82. 'goods_name'=> $order_info['goods_name'],
  83. 'serial' => $serial,
  84. 'from_id' => $order_info['id'],
  85. 'sc_name' =>$user_info['name'],//收藏者
  86. 'issuer' =>$goods_info['issuer'],//发行方
  87. 'framer' =>$goods_info['goods_auth'],//framer
  88. 'coll_intro'=>$goods_info['coll_intro'],//作品介绍
  89. ];
  90. $collect_info = array_merge($collect_info,get_goods_hash($order_info['uid'],$goods_info['id'],$serial));
  91. Db::table('goods_collect')->insert($collect_info);
  92. goods_sell_info($goods_info,$order_info['uid'],$order_info['id']);
  93. $res = Db::table('goods_order')->where('id',$order_info['id'])->update(['pay_time'=>date('Y-m-d H:i:s'),'pay_state'=>1,'pay_type'=>1,'status'=>1]);
  94. if(!$res){
  95. Db::rollback();
  96. }else{
  97. Db::commit();
  98. }
  99. return true; // 返回处理完成
  100. } else if ($message['return_code'] != 'SUCCESS'){
  101. return $fail('通信失败,请稍后再通知我');
  102. }
  103. });
  104. $response->send();
  105. }
  106. /**
  107. *元石充值
  108. */
  109. public function crystalRecharge()
  110. {
  111. $app = Factory::payment(config('app.wx_pay'));
  112. $response = $app->handlePaidNotify(function ($message, $fail) {
  113. $this->payResultLog($message,'crystal_order');
  114. // 使用通知里的 "微信支付订单号" 或者 "商户订单号" 去自己的数据库找到订单
  115. $pay_no = $message['out_trade_no'];
  116. $order_info = Db::name('crystal_order')->where('pay_no',$pay_no)->find();
  117. // 如果订单不存在 或者 订单已经支付过了 告诉微信,我已经处理完了,订单没找到,别再通知我了
  118. if ($message['result_code'] == 'SUCCESS') { // return_code 表示通信状态,不代表支付状态
  119. Db::startTrans();
  120. $user_info = Db::table('store_member')->find($order_info['uid']);
  121. // 更新会员余额
  122. Db::table('store_member')->where('id',$order_info['uid'])->update(['crystal'=>bcadd($user_info['crystal'],$order_info['crystal'],2)]);
  123. // 元石明细
  124. crystal_log($order_info['uid'],$order_info['crystal'],'元石充值',1,$order_info['id']);
  125. // 更新订单状态
  126. $res = Db::table('crystal_order')->where('id',$order_info['id'])
  127. ->update(['pay_at'=>date('Y-m-d H:i:s'),'pay_state'=>1,'pay_type'=>1,'status'=>1]);
  128. if(!$res){
  129. Db::rollback();
  130. }else{
  131. Db::commit();
  132. }
  133. return true; // 返回处理完成
  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::table('order_pay_result')->insert($ret_arr);
  157. }
  158. }