Notify.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. namespace app\data\controller\api;
  3. use app\data\service\payment\AlipayPaymentService;
  4. use app\data\service\payment\JoinPaymentService;
  5. use app\data\service\payment\WechatPaymentService;
  6. use think\admin\Controller;
  7. /**
  8. * 异步通知处理
  9. * Class Notify
  10. * @package app\data\controller\api
  11. */
  12. class Notify extends Controller
  13. {
  14. /**
  15. * 微信支付通知
  16. * @param string $scene 支付场景
  17. * @param string $param 支付参数
  18. * @return string
  19. * @throws \WeChat\Exceptions\InvalidResponseException
  20. * @throws \think\admin\Exception
  21. * @throws \think\db\exception\DataNotFoundException
  22. * @throws \think\db\exception\DbException
  23. * @throws \think\db\exception\ModelNotFoundException
  24. */
  25. public function wxpay(string $scene = 'order', string $param = ''): string
  26. {
  27. if (strtolower($scene) === 'order') {
  28. return WechatPaymentService::instance($param)->notify();
  29. } else {
  30. return 'success';
  31. }
  32. }
  33. /**
  34. * 支付宝支付通知
  35. * @param string $scene 支付场景
  36. * @param string $param 支付参数
  37. * @return string
  38. * @throws \WeChat\Exceptions\InvalidResponseException
  39. * @throws \think\admin\Exception
  40. * @throws \think\db\exception\DataNotFoundException
  41. * @throws \think\db\exception\DbException
  42. * @throws \think\db\exception\ModelNotFoundException
  43. */
  44. public function alipay(string $scene = 'order', string $param = ''): string
  45. {
  46. if (strtolower($scene) === 'order') {
  47. return AlipayPaymentService::instance($param)->notify();
  48. } else {
  49. return 'success';
  50. }
  51. }
  52. /**
  53. * 汇聚支付通知
  54. * @param string $scene 支付场景
  55. * @param string $param 支付参数
  56. * @return string
  57. * @throws \WeChat\Exceptions\InvalidResponseException
  58. * @throws \think\admin\Exception
  59. * @throws \think\db\exception\DataNotFoundException
  60. * @throws \think\db\exception\DbException
  61. * @throws \think\db\exception\ModelNotFoundException
  62. */
  63. public function joinpay(string $scene = 'order', string $param = ''): string
  64. {
  65. if (strtolower($scene) === 'order') {
  66. return JoinPaymentService::instance($param)->notify();
  67. } else {
  68. return 'success';
  69. }
  70. }
  71. }