截流自动化的商城平台
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 955B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /*
  3. * @Author: xiaohai zmhwork@qq.com
  4. * @Date: 2025-03-17 14:27:51
  5. * @LastEditors: xiaohai zmhwork@qq.com
  6. * @LastEditTime: 2025-03-17 18:02:17
  7. * @FilePath: \opkpm\app\shop\controller\order\Pay.php
  8. * @Description: 支付回调
  9. */
  10. namespace app\shop\controller\order;
  11. use app\common\basics\ShopBase;
  12. use app\common\server\JsonServer;
  13. use app\shop\logic\order\OrderRenewLogic;
  14. use think\facade\Log;
  15. class Pay extends ShopBase
  16. {
  17. public $like_not_need_login = ['notifyMnp', 'notifyOa', 'notifyApp', 'aliNotify'];
  18. public function aliNotify()
  19. {
  20. $post = $this->request->post();
  21. Log::info('aliNotify 支付宝回调:' . json_encode($post));
  22. $data = OrderRenewLogic::aliNotify($post);
  23. if (!$data) {
  24. Log::error('aliNotify 支付宝回调错误:' . OrderRenewLogic::getError());
  25. return JsonServer::error(OrderRenewLogic::getError());
  26. }
  27. return 'success';
  28. }
  29. }