Pay.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. /**
  24. * 支付管理类
  25. * Class Refund
  26. * @package app\api\controller\Refund
  27. */
  28. class Pay extends Controller
  29. {
  30. //小程序微信支付(type为1时是货主端微信配置,type为2时是接单端微信配置)
  31. public static function wxPay($name='订单支付',$out_trade_no,$total_fee,$notify_url,$trade_type = 'JSAPI',$openid,$type = 1){
  32. try{
  33. if(empty($out_trade_no) || empty($total_fee) || empty($notify_url)) return false;
  34. if($type == 1){
  35. $app = Factory::payment(config('app.wx_pay'));
  36. }else{
  37. $app = Factory::payment(config('app.worker_wx_pay'));
  38. }
  39. $parameter = array(
  40. 'body' => $name,
  41. 'out_trade_no' => $out_trade_no,
  42. 'total_fee' => $total_fee*100,
  43. 'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
  44. 'trade_type' => $trade_type, // 请对应换成你的支付方式对应的值类型
  45. );
  46. if($trade_type != 'APP'){
  47. $parameter['openid'] = $openid;
  48. }
  49. $result = $app->order->unify($parameter);
  50. $jssdk = $app->jssdk;
  51. $config = $jssdk->sdkConfig($result['prepay_id']);
  52. return $config;
  53. }catch (Exception $e){
  54. return false;
  55. }
  56. }
  57. //订单支付回调
  58. public function payNotify(){
  59. $app = Factory::payment(config('app.wx_pay'));
  60. $response = $app->handlePaidNotify(function ($message, $fail) {
  61. // 回调记录
  62. $ret_arr = [];
  63. $ret_arr['transaction_id'] = isset($message['transaction_id']) ?$message['transaction_id']: '';
  64. $ret_arr['trade_no'] = isset($message['out_trade_no']) ?$message['out_trade_no']: '';
  65. $ret_arr['return_code'] = isset($message['return_code']) ?$message['return_code']: '';
  66. $ret_arr['result_code'] = isset($message['result_code']) ?$message['result_code']: '';
  67. $ret_arr['create_at'] = date('Y-m-d H:i:s');
  68. $ret_arr['result'] = json_encode($message);
  69. Db::table('order_pay_result')->insert($ret_arr);
  70. //Db::table('ticket_order')->where('id',1)->update(['pay_result'=>json_encode($message)]);
  71. // 使用通知里的 "微信支付订单号" 或者 "商户订单号" 去自己的数据库找到订单
  72. $pay_no = $message['out_trade_no'];
  73. $order_info = Db::name('ticket_order')->where('pay_no',$pay_no)->find();
  74. // 如果订单不存在 或者 订单已经支付过了 告诉微信,我已经处理完了,订单没找到,别再通知我了
  75. if ($message['result_code'] == 'SUCCESS') { // return_code 表示通信状态,不代表支付状态
  76. // 生成核销码
  77. $qrCode=new \Endroid\QrCode\QrCode();
  78. $qrCode->setText($order_info['id']);
  79. $qrCode->setSize(200);
  80. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/code';
  81. $filename = $dir.'/'.$order_info['id'].'.png';
  82. $qrCode->writeFile($filename);
  83. $url='http://'.$_SERVER['SERVER_NAME']."/code/".$order_info['id'].'.png';
  84. Db::startTrans();
  85. $res = Db::table('ticket_order')->where('id',$order_info['id'])
  86. ->update(['pay_at'=>date('Y-m-d H:i:s'),'qrcode'=>$url,'pay_state'=>1,'status'=>1,'pay_result'=>json_encode($message)]);
  87. if(!$res){
  88. Db::rollback();
  89. }else{
  90. Db::commit();
  91. }
  92. return true; // 返回处理完成
  93. } else if ($message['return_code'] != 'SUCCESS'){
  94. return $fail('通信失败,请稍后再通知我');
  95. }
  96. });
  97. $response->send();
  98. }
  99. public function qrtest()
  100. {
  101. $qrCode=new \Endroid\QrCode\QrCode();
  102. $qrCode->setText(1);
  103. $qrCode->setSize(200);
  104. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/code';
  105. $filename = $dir.'/1.png';
  106. $qrCode->writeFile($filename);
  107. $url='http://'.$_SERVER['SERVER_NAME']."/code/1.png";
  108. $res = Db::table('ticket_order')->where('id',1)
  109. ->update(['pay_at'=>date('Y-m-d H:i:s'),'qrcode'=>$url,'pay_state'=>1,'status'=>1]);
  110. }
  111. public function sendMsg()
  112. {
  113. $tel = input('tel');
  114. if(!$tel || strlen($tel) != 11) return false;
  115. $result = AlibabaCloud::rpc()->product('Dysmsapi')->version('2017-05-25')
  116. ->action('SendSms')->method('POST')->host('dysmsapi.aliyuncs.com')
  117. ->options([
  118. 'query' => [
  119. 'RegionId' => "cn-hangzhou",
  120. 'PhoneNumbers' => $tel,
  121. 'SignName' => "慧雅",
  122. 'TemplateCode' => "SMS_223197414",
  123. 'TemplateParam' => json_encode(['film_name'=>'一剑霜寒','show_time'=>date("Y-m-d H:i:s")]),
  124. ],
  125. ])->request();
  126. $result = $result->toArray();
  127. var_dump($result);;
  128. }
  129. }