截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

YansongdaAliPayTransferServer.php 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\server;
  20. use app\common\model\Pay;
  21. use think\facade\Log;
  22. use Yansongda\Pay\Exceptions\GatewayException;
  23. use Yansongda\Pay\Exceptions\InvalidConfigException;
  24. use Yansongda\Pay\Exceptions\InvalidGatewayException;
  25. use Yansongda\Pay\Exceptions\InvalidSignException;
  26. class YansongdaAliPayTransferServer
  27. {
  28. function _cache_file($key,$content, $ext = 'crt') : string
  29. {
  30. $path = runtime_path() . 'admin/alipay';
  31. if (! file_exists($path)) {
  32. mkdir($path, 0775, true);
  33. }
  34. $file = $path . '/' . $key . '.' . md5($content) . ".{$ext}";
  35. if (! file_exists($file)) {
  36. file_put_contents($file, $content);
  37. }
  38. return $file;
  39. }
  40. function config()
  41. {
  42. $result = (new Pay())->where([ 'code' => 'alipay' ])->find();
  43. return [
  44. // 支付宝异步通知地址
  45. // 'notify_url' => '',
  46. // 支付成功后同步通知地址
  47. // 'return_url' => '',
  48. // 支付宝公钥地址 新版已使用证书方式
  49. // 'ali_public_key' => "",
  50. // 支付宝分配的 APPID
  51. 'app_id' => $result['config']['app_id'] ?? '',
  52. 'sign_type' => 'RSA2',
  53. //商户私钥地址(默认沙箱通用私钥,如需调试线上环境请换成线上的私钥:https://docs.open.alipay.com/291/106103/)
  54. 'private_key' => $result['config']['private_key'] ?? '',
  55. // 应用公钥证书路径
  56. 'app_cert_public_key' => $this->_cache_file('app_cert', $result['config']['app_cert'] ?? ''),
  57. // 支付宝根证书路径
  58. 'alipay_root_cert' => $this->_cache_file('ali_root_cert', $result['config']['ali_root_cert'] ?? ''),
  59. // 公钥证书
  60. 'ali_public_key' => $this->_cache_file('ali_public_cert', $result['config']['ali_public_cert'] ?? ''),
  61. // 日志
  62. 'log' => [
  63. 'file' => runtime_path() . 'log/yansongda/log',
  64. ],
  65. // optional,设置此参数,将进入沙箱模式
  66. // 'mode' => 'dev',
  67. ];
  68. }
  69. function shopWithdrawTransfer($ShopWithdrawal)
  70. {
  71. try {
  72. if ($ShopWithdrawal['left_amount'] > 100000000) {
  73. return '支付宝在线转账最高金额:100000000';
  74. }
  75. if ($ShopWithdrawal['left_amount'] < 0.1) {
  76. return '支付宝在线转账最低金额:0.1';
  77. }
  78. $order = [
  79. 'out_biz_no' => $ShopWithdrawal['sn'],
  80. 'product_code' => 'TRANS_ACCOUNT_NO_PWD',
  81. 'trans_amount' => $ShopWithdrawal['left_amount'],
  82. 'biz_scene' => 'DIRECT_TRANSFER',
  83. 'remark' => '提现到账',
  84. 'payee_info' => [
  85. // 提现人支付宝
  86. 'identity' => $ShopWithdrawal['alipay']['account'] ?? '',
  87. 'identity_type' => 'ALIPAY_LOGON_ID',
  88. // 提现人真实姓名
  89. 'name' => $ShopWithdrawal['alipay']['username'] ?? '',
  90. ]
  91. ];
  92. $result = \Yansongda\Pay\Pay::alipay($this->config())->transfer($order);
  93. return (isset($result['code']) && $result['code'] == 10000) ? : ($result['sub_msg'] ?? '支付宝提现失败');
  94. } catch (GatewayException|InvalidSignException|InvalidConfigException|InvalidGatewayException $e) {
  95. return $e->raw['alipay_fund_trans_uni_transfer_response']['sub_msg'] ?? $e->getMessage();
  96. } catch (\Throwable $e) {
  97. return '支付宝提现错误';
  98. }
  99. }
  100. }