AlipayF2F.php 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?php
  2. /**
  3. * 自己写别抄,抄NMB抄
  4. */
  5. namespace App\Payments;
  6. class AlipayF2F {
  7. public function __construct($config)
  8. {
  9. $this->config = $config;
  10. }
  11. public function form()
  12. {
  13. return [
  14. 'app_id' => [
  15. 'label' => '支付宝APPID',
  16. 'description' => '',
  17. 'type' => 'input',
  18. ],
  19. 'private_key' => [
  20. 'label' => '支付宝私钥',
  21. 'description' => '',
  22. 'type' => 'input',
  23. ],
  24. 'public_key' => [
  25. 'label' => '支付宝公钥',
  26. 'description' => '',
  27. 'type' => 'input',
  28. ]
  29. ];
  30. }
  31. public function pay($order)
  32. {
  33. try {
  34. $gateway = new \Library\AlipayF2F();
  35. $gateway->setAppId($this->config['app_id']);
  36. $gateway->setPrivateKey($this->config['private_key']); // 可以是路径,也可以是密钥内容
  37. $gateway->setAlipayPublicKey($this->config['public_key']); // 可以是路径,也可以是密钥内容
  38. $gateway->setNotifyUrl($order['notify_url']);
  39. $gateway->setBizContent([
  40. 'subject' => config('v2board.app_name', 'V2Board') . ' - 订阅',
  41. 'out_trade_no' => $order['trade_no'],
  42. 'total_amount' => $order['total_amount'] / 100
  43. ]);
  44. $gateway->send();
  45. return [
  46. 'type' => 0, // 0:qrcode 1:url
  47. 'data' => $gateway->getQrCodeUrl()
  48. ];
  49. } catch (\Exception $e) {
  50. abort(500, $e->getMessage());
  51. }
  52. }
  53. public function notify($params)
  54. {
  55. $gateway = new \Library\AlipayF2F();
  56. $gateway->setAppId($this->config['app_id']);
  57. $gateway->setPrivateKey($this->config['private_key']); // 可以是路径,也可以是密钥内容
  58. $gateway->setAlipayPublicKey($this->config['public_key']); // 可以是路径,也可以是密钥内容
  59. try {
  60. if ($gateway->verify($params)) {
  61. /**
  62. * Payment is successful
  63. */
  64. return [
  65. 'trade_no' => $params['out_trade_no'],
  66. 'callback_no' => $params['trade_no']
  67. ];
  68. } else {
  69. /**
  70. * Payment is not successful
  71. */
  72. return false;
  73. }
  74. } catch (\Exception $e) {
  75. /**
  76. * Payment is not successful
  77. */
  78. return false;
  79. }
  80. }
  81. }