Notify.php 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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\store\controller\api;
  15. use app\store\service\OrderService;
  16. use think\Db;
  17. /**
  18. * 支付通知处理
  19. * Class Notify
  20. * @package app\store\controller\api
  21. */
  22. class Notify
  23. {
  24. /**
  25. * 微信支付通知处理
  26. * @return string
  27. * @throws \WeChat\Exceptions\InvalidResponseException
  28. * @throws \think\Exception
  29. * @throws \think\exception\PDOException
  30. */
  31. public function wxpay()
  32. {
  33. $wechat = \We::WePayOrder(config('wechat.miniapp'));
  34. $notify = $wechat->getNotify();
  35. if ($notify['result_code'] == 'SUCCESS' && $notify['return_code'] == 'SUCCESS') {
  36. if ($this->update($notify['out_trade_no'], $notify['transaction_id'], $notify['cash_fee'] / 100, 'wechat')) {
  37. return $wechat->getNotifySuccessReply();
  38. }
  39. } else {
  40. return $wechat->getNotifySuccessReply();
  41. }
  42. }
  43. /**
  44. * 订单状态更新
  45. * @param string $order_no 订单号
  46. * @param string $pay_no 交易号
  47. * @param string $pay_price 交易金额
  48. * @param string $type 支付类型
  49. * @return boolean
  50. * @throws \think\Exception
  51. * @throws \think\exception\PDOException
  52. */
  53. private function update($order_no, $pay_no, $pay_price, $type = 'wechat')
  54. {
  55. // 检查订单支付状态
  56. $where = ['order_no' => $order_no, 'pay_state' => '0', 'status' => '2'];
  57. $order = Db::name('StoreOrder')->where($where)->find();
  58. if (empty($order)) return false;
  59. // 更新订单支付状态
  60. $result = Db::name('StoreOrder')->where($where)->update([
  61. 'pay_type' => $type, 'pay_no' => $pay_no, 'status' => '3',
  62. 'pay_price' => $pay_price, 'pay_state' => '1', 'pay_at' => date('Y-m-d H:i:s'),
  63. ]);
  64. // 调用会员升级机制
  65. OrderService::update($order['order_no']);
  66. return $result !== false;
  67. }
  68. }