截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Pay.php 6.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\logic\PayLogic;
  4. use app\common\basics\Api;
  5. use app\common\enum\OrderEnum;
  6. use app\common\enum\PayEnum;
  7. use app\common\model\Client_;
  8. use app\common\model\order\OrderTrade;
  9. use app\common\model\order\Order;
  10. use app\common\model\order\OrderLog;
  11. use app\common\model\RechargeOrder;
  12. use app\common\server\AliPayServer;
  13. use app\common\server\DouGong\BaseAsync;
  14. use app\common\server\DouGong\pay\PayZhengSao;
  15. use app\common\server\JsonServer;
  16. use app\common\model\Test;
  17. use app\common\server\WeChatPayServer;
  18. use app\common\server\WeChatServer;
  19. use app\common\model\integral\IntegralOrder;
  20. use think\facade\Log;
  21. /**
  22. * Class Pay
  23. * @package app\api\controller
  24. */
  25. class Pay extends Api
  26. {
  27. public $like_not_need_login = [ 'notifyMnp', 'notifyOa', 'notifyApp', 'aliNotify', 'hfdgPayWechatNotify', 'hfdgPayAlipayNotify' ];
  28. /**
  29. * @notes 支付入口
  30. * @return \think\response\Json
  31. * @throws \think\db\exception\DataNotFoundException
  32. * @throws \think\db\exception\DbException
  33. * @throws \think\db\exception\ModelNotFoundException
  34. * @author suny
  35. * @date 2021/7/13 6:13 下午
  36. */
  37. public function unifiedpay()
  38. {
  39. $post = $this->request->post();
  40. if(!isset($post['pay_way'])) {
  41. return JsonServer::error('请选择支付方式');
  42. }
  43. $pay_way = $post['pay_way'];
  44. // 订单
  45. if ($post['from'] == 'order') {
  46. // 更新支付方式
  47. $order = Order::findOrEmpty($post['order_id']);
  48. Order::where('id', $post['order_id'])->update([ 'pay_way' => $pay_way ]);
  49. }
  50. // 总订单
  51. if ($post['from'] == 'trade') {
  52. $order = OrderTrade::findOrEmpty($post['order_id']);
  53. // 更新支付方式
  54. Order::where('trade_id', $post['order_id'])->update([ 'pay_way' => $pay_way ]);
  55. }
  56. // 充值订单
  57. if ($post['from'] == 'recharge') {
  58. $order = RechargeOrder::findOrEmpty($post['order_id']);
  59. // 更新支付方式
  60. RechargeOrder::where('id', $post['order_id'])->update([ 'pay_way' => $pay_way ]);
  61. }
  62. // 积分订单
  63. if ($post['from'] == 'integral') {
  64. $order = IntegralOrder::findOrEmpty($post['order_id']);
  65. // 更新支付方式
  66. IntegralOrder::where('id', $post['order_id'])->update([ 'pay_way' => $pay_way ]);
  67. }
  68. // order,trade方式金额为0直接走余额支付
  69. if (isset($order) && $order['order_amount'] == 0) {
  70. return PayLogic::balancePay($post['order_id'], $post['from']);
  71. }
  72. switch ($pay_way) {
  73. case PayEnum::BALANCE_PAY://余额支付
  74. $result = PayLogic::balancePay($post['order_id'], $post['from']);
  75. break;
  76. case PayEnum::WECHAT_PAY://微信支付
  77. $result = PayLogic::wechatPay($post['order_id'], $post['from'], $this->client);
  78. break;
  79. case PayEnum::ALI_PAY://支付宝支付
  80. $result = PayLogic::aliPay($post['order_id'], $post['from'],$this->client);
  81. if (app()->isDebug()) {
  82. Log::write($result, 'unifiedpay');
  83. }
  84. $data = [
  85. 'code' => 10001,
  86. 'msg' => '发起成功',
  87. 'data' => $result,
  88. 'show' => 0,
  89. ];
  90. return json($data);
  91. // 汇付斗拱 微信 支付宝
  92. case PayEnum::HFDG_WECHAT:
  93. case PayEnum::HFDG_ALIPAY:
  94. $result = (new PayZhengSao([
  95. 'pay_way' => $pay_way,
  96. 'client' => $this->client,
  97. 'from' => $post['from'],
  98. 'order_id' => $post['order_id'],
  99. 'user_id' => $this->user_id,
  100. 'order' => $order,
  101. ]))->request()->getPayResult();
  102. if (app()->isDebug()) {
  103. Log::write($result, 'unifiedpay');
  104. }
  105. return json($result);
  106. //线下支付
  107. case PayEnum::OFFLINE_PAY:
  108. $data = [
  109. 'code' => 30001,
  110. 'msg' => '下单成功',
  111. 'data' => [],
  112. 'show' => 0,
  113. ];
  114. return json($data);
  115. }
  116. return $result;
  117. }
  118. /**
  119. * @notes 小程序回调
  120. * @throws \EasyWeChat\Kernel\Exceptions\Exception
  121. * @author suny
  122. * @date 2021/7/13 6:13 下午
  123. */
  124. public function notifyMnp()
  125. {
  126. $config = WeChatServer::getPayConfig(Client_::mnp);
  127. return WeChatPayServer::notify($config);
  128. }
  129. /**
  130. * @notes 公众号回调
  131. * @throws \EasyWeChat\Kernel\Exceptions\Exception
  132. * @author suny
  133. * @date 2021/7/13 6:13 下午
  134. */
  135. public function notifyOa()
  136. {
  137. $config = WeChatServer::getPayConfig(Client_::oa);
  138. return WeChatPayServer::notify($config);
  139. }
  140. /**
  141. * @notes APP回调
  142. * @throws \EasyWeChat\Kernel\Exceptions\Exception
  143. * @author suny
  144. * @date 2021/7/13 6:14 下午
  145. */
  146. public function notifyApp()
  147. {
  148. $config = WeChatServer::getPayConfig(Client_::ios);
  149. return WeChatPayServer::notify($config);
  150. }
  151. /**
  152. * @notes 支付宝回调
  153. * @return bool
  154. * @author suny
  155. * @date 2021/7/13 6:14 下午
  156. */
  157. public function aliNotify()
  158. {
  159. $data = $this->request->post();
  160. $result = (new AliPayServer())->verifyNotify($data);
  161. if (true === $result) {
  162. echo 'success';
  163. } else {
  164. echo 'fail';
  165. }
  166. }
  167. function hfdgPayWechatNotify()
  168. {
  169. $data = input();
  170. $async = new BaseAsync($data);
  171. $async->checkAsync();
  172. if ($async->getCheckSuccess()) {
  173. PayZhengSao::asyncSuccessDeal($data);
  174. }
  175. return $async->getCheckSuccess() ? 'success' : 'failed';
  176. }
  177. function hfdgPayAlipayNotify()
  178. {
  179. $data = input();
  180. $async = new BaseAsync($data);
  181. $async->checkAsync();
  182. if ($async->getCheckSuccess()) {
  183. PayZhengSao::asyncSuccessDeal($data);
  184. }
  185. return $async->getCheckSuccess() ? 'success' : 'failed';
  186. }
  187. }