截流自动化的商城平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

YansongdaAliPayServer.php 3.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. class YansongdaAliPayServer
  22. {
  23. static function _cache_file($key,$content, $ext = 'crt') : string
  24. {
  25. $path = runtime_path() . 'admin/alipay';
  26. if (! file_exists($path)) {
  27. mkdir($path, 0775, true);
  28. }
  29. $file = $path . '/' . $key . '.' . md5($content) . ".{$ext}";
  30. if (! file_exists($file)) {
  31. file_put_contents($file, $content);
  32. }
  33. return $file;
  34. }
  35. static function config()
  36. {
  37. $result = (new Pay())->where([ 'code' => 'alipay' ])->find();
  38. return [
  39. // 支付宝异步通知地址
  40. 'notify_url' => (string) url('pay/aliNotify', [], false, true),
  41. // 支付成功后同步通知地址
  42. // 'return_url' => '',
  43. // 支付宝公钥地址 新版已使用证书方式
  44. // 'ali_public_key' => "",
  45. // 支付宝分配的 APPID
  46. 'app_id' => $result['config']['app_id'] ?? '',
  47. 'sign_type' => 'RSA2',
  48. //商户私钥地址(默认沙箱通用私钥,如需调试线上环境请换成线上的私钥:https://docs.open.alipay.com/291/106103/)
  49. 'private_key' => $result['config']['private_key'] ?? '',
  50. // 应用公钥证书路径
  51. 'app_cert_public_key' => static::_cache_file('app_cert', $result['config']['app_cert'] ?? ''),
  52. // 支付宝根证书路径
  53. 'alipay_root_cert' => static::_cache_file('ali_root_cert', $result['config']['ali_root_cert'] ?? ''),
  54. // 公钥证书
  55. 'ali_public_key' => static::_cache_file('ali_public_cert', $result['config']['ali_public_cert'] ?? ''),
  56. // 日志
  57. 'log' => [
  58. 'file' => runtime_path() . 'log/yansongda/log',
  59. ],
  60. // optional,设置此参数,将进入沙箱模式
  61. // 'mode' => 'dev',
  62. ];
  63. }
  64. }