123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381 |
- <?php
- namespace addons\shopro\controller;
- use Psr\Http\Message\ResponseInterface;
- use think\exception\HttpResponseException;
- use app\admin\model\shopro\Pay as PayModel;
- use addons\shopro\service\pay\PayOper;
- use addons\shopro\library\pay\PayService;
- use app\admin\model\shopro\order\Order;
- use app\admin\model\shopro\trade\Order as TradeOrderModel;
- use think\Log;
- use think\Db;
- use addons\shopro\service\pay\PayRefund;
- use Yansongda\Pay\Pay as YansongdaPay;
- use addons\epay\library\Service;
- class Pay extends Common
- {
- protected $noNeedLogin = ['alipay', 'notify', 'notifyRefund'];
- protected $noNeedRight = ['*'];
- //支付订单
- public function prepay()
- {
- $this->repeatFilter(); // 防止连点
- check_env(['yansongda']);
- $user = auth_user();
- $order_sn = $this->request->post('order_sn');
- $payment = $this->request->post('payment');
- $openid = $this->request->post('openid', '');
- /*$money = $this->request->post('money', 0);
- $money = $money > 0 ? $money : 0;*/
- $platform = $this->request->post('platform');
- list($order, $order_type) = $this->getOrderInstance($order_sn);
- $order = $order->where('user_id', $user->id)->where('order_sn', $order_sn)->find();
- if (!$order) {
- $this->error(__('No Results were found'));
- }
- if (in_array($order->status, [$order::STATUS_CLOSED, $order::STATUS_CANCEL])) {
- $this->error('订单已失效');
- }
- if (in_array($order->status, [$order::STATUS_PAID, $order::STATUS_COMPLETED])) {
- $this->error('订单已支付');
- }
- if ($order_type == 'order' && $order->isOffline($order)) {
- // 已经货到付款
- $this->error('已下单成功');
- }
- if (!$payment || !in_array($payment, ['wechat', 'alipay', 'money', 'offline'])) {
- $this->error('支付类型不能为空');
- }
- // pay 实例
- $payOper = new PayOper();
- $money = false;
- if ($money && $order_type == 'order') {
- // 余额混合支付
- $order = Db::transaction(function () use ($payOper, $order, $order_type, $money) {
- // 加锁读订单
- $order = $order->lock(true)->find($order->id);
- // 余额支付
- $order = $payOper->money($order, $money, $order_type);
- return $order;
- });
- if (in_array($order->status, [$order::STATUS_PAID, $order::STATUS_COMPLETED])) {
- $this->success('订单支付成功', $order);
- }
- }
- if ($payment == 'money' && $order_type == 'order') {
- // 余额支付
- $order = Db::transaction(function () use ($payOper, $order, $order_type) {
- // 加锁读订单
- $order = $order->lock(true)->find($order->id);
- $order = $payOper->money($order, $order->remain_pay_fee, $order_type);
- return $order;
- });
- if ($order->status != $order::STATUS_PAID) {
- $this->error('订单支付失败');
- }
- // $this->success('订单支付成功', $order);
- $this->success('订单支付成功');
- }
- if ($payment == 'offline' && $order_type == 'order') {
- if (!isset($order->ext['offline_status']) || $order->ext['offline_status'] != 'enable') {
- $this->error('订单不支持货到付款');
- }
- // 货到付款
- $order = Db::transaction(function () use ($payOper, $order, $order_type) {
- // 加锁读订单
- $order = $order->lock(true)->find($order->id);
- $order = $payOper->offline($order, 0, $order_type); // 增加 0 记录
- return $order;
- });
- if ($order->status != $order::STATUS_PAID) {
- $this->success('下单成功', $order); // 货到付款
- }
- $this->success('订单支付成功', $order);
- }
- // 微信支付宝(第三方)付款, 在这里执行了addPay
- $payModel = $payOper->{$payment}($order, $order->remain_pay_fee, $order_type);
- $order_data = [
- 'order_id' => $order->id,
- 'out_trade_no' => $payModel->pay_sn,
- 'total_amount' => $payModel->pay_fee, // 剩余支付金额
- ];
- // 微信公众号,小程序支付,必须有 openid
- if ($payment == 'wechat') {
- if (in_array($platform, ['WechatOfficialAccount', 'WechatMiniProgram'])) {
- $openid = $user->mini_openid;
- if (isset($openid) && $openid) {
- // 如果传的有 openid
- $order_data['payer']['openid'] = $openid;
- } else {
- // 没有 openid 默认拿下单人的 openid
- $oauth = \app\admin\model\shopro\ThirdOauth::where([
- 'user_id' => $order->user_id,
- 'provider' => 'Wechat',
- 'platform' => lcfirst(str_replace('Wechat', '', $platform))
- ])->find();
- $order_data['payer']['openid'] = $oauth ? $oauth->openid : '';
- }
- if (empty($order_data['payer']['openid'])) {
- // 缺少 openid
- $this->error('miss_openid', -1);
- }
- }
- $order_data['description'] = '商城订单支付';
- } else {
- $order_data['subject'] = '商城订单支付';
- }
- //加这个主要是因为退款时,找不到值
- $order->platform = $platform;
- $order->save();
- //下单
- $params = [
- 'type' => $payment,
- 'orderid' => $payModel->pay_sn,
- 'title' => '商城订单支付',
- 'amount' => $payModel->pay_fee,
- 'method' => strtolower($platform),
- // 'openid' => $openid,
- 'notifyurl' => config('pay_notify_url').'/api/notify/shopro_notify_base/paytype/'.$payment,
- 'returnurl' => '',
- ];
- if ($payment == 'wechat') {
- if (in_array($platform, ['WechatOfficialAccount', 'WechatMiniProgram'])) {
- $params['openid'] = $user->mini_openid;
- }
- }
- $res = Service::submitOrder($params);
- if($payment == 'wechat'){
- $this->success('success',json_decode($res,true));
- }else{
- $this->success('success',$res);
- }
- //原带支付
- $payService = new PayService($payment,$platform);
- try {
- $result = $payService->pay($order_data);
- } catch (\Yansongda\Pay\Exception\Exception $e) {
- $this->error('支付失败' . (config('app_debug') ? ":" . $e->getMessage() : ',请重试'));
- } catch (HttpResponseException $e) {
- $data = $e->getResponse()->getData();
- $message = $data ? ($data['msg'] ?? '') : $e->getMessage();
- $this->error('支付失败' . (config('app_debug') ? ":" . $message : ',请重试'));
- }
- if ($platform == 'App') {
- if ($payment == 'wechat') {
- // Yansongda\Supports\Collection,可当数组,可当字符串,这里不用处理
- } else {
- // Guzzle
- $result = $result->getBody()->getContents();
- }
- }
- $this->success('', [
- 'pay_data' => $result,
- ]);
- }
- /**
- * 支付宝网页支付,一般用不到
- */
- public function alipay()
- {
- $pay_sn = $this->request->get('pay_sn');
- $platform = $this->request->get('platform');
- $payModel = PayModel::where('pay_sn', $pay_sn)->find();
- if (!$payModel || $payModel->status != PayModel::PAY_STATUS_UNPAID) {
- $this->error("支付单不存在或已支付");
- }
- try {
- $order_data = [
- 'order_id' => $payModel->order_id,
- 'out_trade_no' => $payModel->pay_sn,
- 'total_amount' => $payModel->pay_fee,
- 'subject' => '商城订单支付',
- ];
- $payService = new PayService('alipay', $platform);
- $result = $payService->pay($order_data, [], 'url');
- $result = $result->getBody()->getContents();
- echo $result;
- } catch (\Exception $e) {
- echo $e->getMessage();
- } catch (HttpResponseException $e) {
- $data = $e->getResponse()->getData();
- $message = $data ? ($data['msg'] ?? '') : $e->getMessage();
- echo '支付失败' . (config('app_debug') ? ":" . $message : ',请重试');
- }
- }
- /**
- * 支付成功回调
- */
- public function notify()
- {
- Log::write('pay-notify-comein:');
- $payment = $this->request->param('payment');
- $platform = $this->request->param('platform');
- $payService = new PayService($payment, $platform);
- $result = $payService->notify(function ($data, $originData = []) use ($payment) {
- Log::write('pay-notify-data:' . json_encode($data));
- $out_trade_no = $data['out_trade_no'];
- // 查询 pay 交易记录
- $payModel = PayModel::where('pay_sn', $out_trade_no)->find();
- if (!$payModel || $payModel->status != PayModel::PAY_STATUS_UNPAID) {
- // 订单不存在,或者订单已支付
- return YansongdaPay::$payment()->success();
- }
- Db::transaction(function () use ($payModel, $data, $originData, $payment) {
- $notify = [
- 'pay_sn' => $data['out_trade_no'],
- 'transaction_id' => $data['transaction_id'],
- 'notify_time' => $data['notify_time'],
- 'buyer_info' => $data['buyer_info'],
- 'payment_json' => $originData ? json_encode($originData) : json_encode($data),
- 'pay_fee' => $data['pay_fee'], // 微信的已经*100处理过了
- 'pay_type' => $payment // 支付方式
- ];
- // pay 实例
- $payOper = new PayOper($payModel->user_id);
- $payOper->notify($payModel, $notify);
- });
- return YansongdaPay::$payment()->success();
- });
- return $this->payResponse($result, $payment);
- }
- /**
- * 微信退款回调 (仅微信用,支付宝走支付回调 notify 方法)
- *
- * @return void
- */
- public function notifyRefund()
- {
- Log::write('pay-notify-refund-comein:');
- $payment = $this->request->param('payment');
- $platform = $this->request->param('platform');
- $payService = new PayService($payment, $platform);
- $result = $payService->notifyRefund(function ($data, $originData) use ($payment, $platform) {
- Log::write('pay-notify-refund-result:' . json_encode($data));
- Db::transaction(function () use ($data, $originData, $payment) {
- $out_refund_no = $data['out_refund_no'];
- $out_trade_no = $data['out_trade_no'];
- // 交给退款实例处理
- $refund = new PayRefund();
- $refund->notify([
- 'out_trade_no' => $out_trade_no,
- 'out_refund_no' => $out_refund_no,
- 'payment_json' => json_encode($originData),
- ]);
- });
- return YansongdaPay::$payment()->success();
- });
- return $this->payResponse($result, $payment);
- }
- /**
- * 处理返回结果 tp5 不能直接 return YansongdaPay::$payment()->success()
- *
- * @param object|string $result
- * @param string|null $payment
- * @return void
- */
- private function payResponse($result = null, $payment = null)
- {
- if ($result instanceof ResponseInterface) {
- $content = $result->getBody()->getContents();
- $content = $payment == 'wechat' ? json_decode($content, true) : $content;
- return response($content, 200, [], ($payment == 'wechat' ? 'json' : ''));
- }
- return $result;
- }
- /**
- * 根据订单号获取订单实例
- *
- * @param [type] $order_sn
- * @return void
- */
- private function getOrderInstance($order_sn)
- {
- if (strpos($order_sn, 'TO') === 0) {
- // 交易订单
- $order_type = 'trade_order';
- $order = new TradeOrderModel();
- } else {
- // 订单
- $order_type = 'order';
- $order = new Order();
- }
- return [$order, $order_type];
- }
- }
|